我只是构建了一个发行版APK并进行了尝试。它在所有API均为7.0或更高的设备中均能正常工作。但是,当我尝试在棉花糖或API低于棉花糖的设备中对其进行测试时,则未安装apk。它显示错误消息应用程序未安装。我的minSdkVersion为21,但是仍然出现此问题。
这是我的build.gradle:
apply plugin: 'com.android.application'
apply plugin: 'com.apollographql.android'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
android {
compileSdkVersion 28
defaultConfig {
applicationId "com.example.leadershipboard"
minSdkVersion 21
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation 'androidx.appcompat:appcompat:1.0.0-beta01'
implementation 'androidx.core:core-ktx:1.0.0-rc02'
implementation 'com.apollographql.apollo:apollo-runtime:0.4.2'
implementation 'com.squareup.okhttp3:logging-interceptor:3.8.1'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation 'com.google.android.material:material:1.0.0'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test:runner:1.1.0-alpha4'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.0-alpha4'
}
此外,在生成签名的APK时,我同时勾选了V1和V2复选框。既然我在解决方案中看到了,但是那没用。
这是什么问题,我该如何解决?
谢谢。
答案 0 :(得分:0)
此设备上已经安装了此应用程序吗?也许您正在使用与模拟器相同的设备。 在这种情况下,请卸载较早的应用程序,然后重试。
此外,如果您安装了具有相同程序包名称的任何应用程序(例如,您可能更改了应用程序名称或尝试在设备上打开某些特定活动),请在您的应用程序中查找所有那些并卸载它们。
希望这行得通!