gpt4 book ai didi

android - 发布不适用于 API 6.0 及以下版本的 APK

转载 作者:行者123 更新时间:2023-11-30 05:07:06 25 4
gpt4 key购买 nike

我只是构建了一个发布 APK 并进行了尝试。它在 API 为 7.0 或更高版本的所有设备中都运行良好。但是,当我尝试在 marshmallow 或 API 低于 marshmallow 的设备中对其进行测试时,未安装 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 复选框。因为我在解决方案中看到了这一点,但那没有用。

这里有什么问题,我该如何解决?

提前致谢。

最佳答案

您是否已在此设备上安装此应用程序?也许您使用的是与模拟器相同的设备。在这种情况下,请卸载较早的应用程序并重试。

此外,如果您安装了任何具有相同包名的应用程序(即您可能更改了应用程序名称或尝试在您的设备上打开某些特定 Activity ),请在您的应用程序中查找所有这些应用程序并将其全部卸载。

希望这能奏效!

关于android - 发布不适用于 API 6.0 及以下版本的 APK,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54378294/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com