我正在尝试从我的android工作室运行我的自定义launcher3 apk到onePlus手机。它的API级别为23.此应用程序正常工作高达22级但总是得到错误API级别23上的[INSTALL_FAILED_VERSION_DOWNGRADE]失败并显示弹出卸载现有应用程序的弹出窗口并感染此apk尚未安装。当我尝试按下OK按钮时,它显示DELETE FAILED INTERNAL ERROR。我没有得到任何解决方案。请帮我。我试图更改versionCode,VersionName API Level等但没有解决方案。这是我的gradle文件
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.2"
defaultConfig {
applicationId "com.android.launcher3"
minSdkVersion 14
targetSdkVersion 23
versionCode 1
versionName '1.0'
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
productFlavors {
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile project(':wallpaperpick')
compile 'com.github.yukuku:ambilwarna:2.0.1'
compile 'com.android.support:support-v4:24.0.0-alpha1'
}
答案 0 :(得分:0)
尝试安装adb install -r -d ${YOUR_APK_FILE_PATH}
。