ksgangadharan

Results 13 comments of ksgangadharan

@gpanshu I login, and then I try to create the AWSAppSyncClient object ``` val cognitoUserPool = CognitoUserPool(context, AWSConfiguration(context)) val provider = BasicCognitoUserPoolsAuthProvider(cognitoUserPool) val client = AWSAppSyncClient.builder() .context(context) .awsConfiguration(awsConfig) .cognitoUserPoolsAuthProvider(provider) .okHttpClient(okHttpClientBuilder.build())...

@gpanshu there is no issue with fetchAuthSession. Problem is that fetchAuthSession is a coroutine and trying to integrate it with CognitoUserPoolsAuthProvider (which is a non coroutine code) is not straightforward...

There are 2 AWS sdk libraries that I am using, 1) Pinpoint library for registering for FCM notification, I don't see an alternative to that in the V2 amplify lib,...