All my beta testers with Android 6 get this error when installing my app from Beta:
App not installed. The package appears to be corrupt
No problems for users with Android 7+. The APK can be dirrectly installed on all devices, including those with error in Beta. The problem appeared a few days ago, configuration of project did not change.
All my users uses latest 1.7.0 Beta app. Project dependencies:
dependencies {
classpath 'io.fabric.tools:gradle:1.+'
}
compile('com.crashlytics.sdk.android:crashlytics:2.6.8@aar') {
transitive = true
}
compile('com.crashlytics.sdk.android:crashlytics-ndk:1.1.6@aar') {
transitive = true
}
Any help?
UPD. I removed android:extractNativeLibs="false" from AndroidManifest.xml and now it works.