我已经为我的应用程序生成了一个已签名的APK
这是build.gradle
android {
compileSdkVersion 28
defaultConfig {
applicationId "com.example.test_drivers"
minSdkVersion 19
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}
我已经检查了V1和V2。该应用程序在版本8中完美安装,但在版本9中没有完美安装。
任何想法如何解决这个问题?