Add the Auth plugin before calling `Amplify.configure`. Update [the code you added](/lib-v1/project-setup/create-application#n4-initialize-amplify-in-the-application) in **Prerequisites**: ```java // Add this line, to include the Auth plugin. Amplify.addPlugin(new AWSCognitoAuthPlugin()); Amplify.configure(getApplicationContext()); ``` ```kotlin // Add this line, to include the Auth plugin. Amplify.addPlugin(AWSCognitoAuthPlugin()) Amplify.configure(applicationContext) ``` ```kotlin // Add this line, to include the Auth plugin. Amplify.addPlugin(AWSCognitoAuthPlugin()) Amplify.configure(applicationContext) ``` ```java // Add this line, to include the Auth plugin. RxAmplify.addPlugin(new AWSCognitoAuthPlugin()); RxAmplify.configure(getApplicationContext()); ```