I am currently trying to integrate the Sign In functionality from aws into my android app. I followed all the instructions provided to me by AWS, downloaded and inserted there auto generated code, but still get an error.
Here is the Location:
...\app\src\main\java\com\amazonaws\mobile\user\signin\SignInManager.java
My Error:
(49, 15) error: cannot find symbol class CognitoUserPoolsSignInProvider
Auto generated code snippet that throws the error:
// Initialize Cognito User Pools SDK.
final CognitoUserPoolsSignInProvider cognitoUserPoolsSignInProvider =
new CognitoUserPoolsSignInProvider(context);
addSignInProvider(cognitoUserPoolsSignInProvider);
Where do I find this class and how do I integrate it in my app? I tried googling for it, but I can't find anything relevant.
Thanks!