目前我将我的 Eclipse 项目迁移到工作室,但之后当我尝试在 2.3.5 移动设备中测试我的签名 apk 时,它向我显示解析包错误。
我知道有很多关于如何解决这个问题的博客以及许多与此相关的问题,但对我来说没有任何用处。
我已经尝试过的
1)我检查了我所有模块的gradle,模块没有错误,下面是我的应用程序gradle。
2)清除Playstore应用程序的数据并卸载所有更新以及出厂重置我的HTC设备
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.2"
useLibrary 'org.apache.http.legacy'
defaultConfig {
applicationId "com.stackoverflow"
minSdkVersion 9
targetSdkVersion 23
versionCode 7
versionName "7.0"
multiDexEnabled true
project.ext.set("archivesBaseName", "ABC V " + defaultConfig.versionName);
}
dexOptions {
javaMaxHeapSize "4g"
}
aaptOptions {
useNewCruncher false
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
zipAlignEnabled true
}
}
}
dependencies {
compile 'com.android.support:multidex:1.0.1'
compile fileTree(include: ['*.jar'], dir: 'libs')
compile project(':hellochartslibrary')
compile project(':facebook')
compile 'com.android.support:support-v4:23.3.0'
compile 'com.google.code.gson:gson:2.4'
compile 'com.google.android.gms:play-services:8.4.0'
compile 'com.android.support:appcompat-v7:23.3.0'
compile project(':CustomBrowser-release-aar')
}
我不知道确切的问题是 mipmap 问题还是 gradle 问题,任何帮助将不胜感激。
提前致谢。