App stops responding every few resumes. This only happens on the release build, not the debug build. It happens on any activity, and there doesn\'t seem to be any pattern to
I had the exact same problem and solved it by replacing the dependency com.google.android.gms:play-services:9.0.0
with the ones I actually used as described in the answer here https://stackoverflow.com/a/37379662/4134617
My build.gradle ended up like this.
dependencies {
compile project(':BaseGameUtils')
compile "com.google.android.gms:play-services-games:9.0.0"
compile "com.google.android.gms:play-services-plus:9.0.0"
compile "com.google.android.gms:play-services-ads:9.0.0"
compile 'com.google.firebase:firebase-core:9.0.0'
}