I\'m using Crashlytics for my android app, and I have many crashes at ActivityThread.java: android.app.ActivityThread.deliverResults
I put some stack traces here:
<The problem is definitely in the new Google Services (9.0.0 to 9.4.0). It tries to start something that returns null to the onActivityResult
.
Probably the only way to fix this:
PackageManager pm = getPackageManager();
pm.setComponentEnabledSetting(new ComponentName(this, GoogleApiActivity.class), PackageManager.COMPONENT_ENABLED_STATE_DISABLED, PackageManager.DONT_KILL_APP);
Upgrading the SDK to the latest version 9.4 of the Google Play Service should fix this issue.
This is a bug in the Google Play Services SDK, up to 9.4.0. The fix should be in the next release, sorry about that.