Tyler Roach

Results 134 comments of Tyler Roach

@namhvattanaakk I apologize for the amount of time that has passed but I wanted to see if the issue was still present for you. Were you able to upgrade to...

I've noticed that you are mixing Amplify v2 and our AWS Mobile SDKs. These libs are not compatible with each other and have a good chance of being the issue...

@tfreeman82 There is only 1 block in the library that triggers UserCancelledException: https://github.com/aws-amplify/amplify-android/blob/f3f8caf5ba3bbd26514ce9678cb6e161f0161c04/aws-auth-cognito/src/main/java/com/amplifyframework/auth/cognito/RealAWSCognitoAuthPlugin.kt#L1058 This happens when the `intent.data` is null, which means we did not receive any intent data back...

Thanks for your response. I'll further investigate if there are improvements that can be made on our end, and where this race condition lies.

Hi @SomnathS09, Please see our `federateToIdentityPool` method: https://docs.amplify.aws/lib/auth/advanced/q/platform/android/#identity-pool-federation. Please note, there are some limitations with this approach. You will not have access to Cognito User Pool's and refreshing tokens is...

@SomnathS09 In your initial comment, you mentioned only having `signInWithWebUI`. I want to make sure that you are aware that we do have a `signInWIthSocialWebUI` that allows passing `AuthProvider.google()`. While...

@SomnathS09 This approach would not work. The redirect code that goes into HostedUIRedirectActivity comes from Cognito, it does not come from Google. We do not yet support Google Native SDK...

@emmanuelHa Sign in with Google still requires `signInWithSocialWebUI` or using `federateToIdentityPool`. > Have the Amplify team given up Kotlin ? From the documentation that's how I interpret it. The Amplify...

Hi @emmanuelHa Let me try to address a few of these things that I can immediately answer, and then I'll forward concerns along to our product team. * For your...

@emmanuelHa You still need a main activity for your app that containing these intent filters: ``` ``` The activity with these intent filters is the activity that is used to...