Tyler Roach

Results 134 comments of Tyler Roach

Hi @lokeshbhattarai, @fauzimubarokk, @niihofutoshi please try the Amplify Android 2.18.0 update. You should observe the cancellation as a FailedSignOut in the `onComplete` block. We will discuss with product, the addition...

@ScottLu77 That is working as expected. The issue in your case is that Cognito/SAML provider is not providing the redirect back into the application. This appears to be a configuration...

@JeremyLabelIO What is the scenario where you are seeing data loss occur? Is it in bad network scenarios, or is there a scenario in your application that rapidly attempts to...

Thank you for the bug report. A member of our team will take a look.

``` @Synchronized fun unregisterListener(transferRecordId: Int, transferListener: TransferListener) { mainHandler.post { transferStatusListenerMap[transferRecordId]?.remove(transferListener) } } ``` There appears to be a few faulty threading assumptions used here. This method is synchronized, but...

Wanted to add some additional research notes here. Crash is `java.util.ArrayList.remove (ArrayList.java:631)` which shows the crash is coming from the `remove(transferListener)` call once a list is grabbed from the ConcurrentHashMap,...

@xaluxs Thanks for the additional detail. How many times have you seen this crash. Any other devices?

This looks to be a bug in ASNE rather than just the tutorial. This same exception also occurs when replacing fragments in an activity. For example, say I have a...

@ITurchenko Here is a workaround that may help for the time being. This worked for me. ``` Fragment fragment = getSupportFragmentManager().findFragmentByTag(SOCIAL_NETWORK_TAG); if(fragment != null) { getSupportFragmentManager().beginTransaction().remove(fragment).commit(); getSupportFragmentManager().executePendingTransactions(); } ``` On...