我的应用程序的方法计数高于64k限制,因此我使用Proguard来减少它。
对于发布版本,一切正常 另一方面,调试版本仅适用于Lollipop +设备。在Lollipop之前的设备上启动时,我总是有一个臭名昭着的错误:
com.android.dex.DexIndexOverflowException: method ID not in [0, 0xffff]: 65536
这就是我在app level gradle文件中的内容:
buildTypes {
debug {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
release {
shrinkResources true
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
我已经尝试在调试版本中删除minifyEnabled true
,然后在Lollipop +上构建失败,因此proguard正在运行!但不是在棒棒糖前。
我所知道的minifyEnabled
不应该依赖于平台,所以也许构建过程会在Lollipop之前的设备上跳过它(因为我不知道是什么原因)。
任何人都知道这个问题的解决方案吗?
PS。我知道多指数的可能性,但我将它作为我的最后手段。
编辑:
这是app level gradle文件的完整代码:
apply plugin: 'com.android.application'
apply plugin: 'android-apt'
apply plugin: 'me.tatarka.retrolambda'
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'me.tatarka:gradle-retrolambda:3.2.5'
classpath 'com.getkeepsafe.dexcount:dexcount-gradle-plugin:0.5.5'
}
}
android {
compileSdkVersion 24
buildToolsVersion "23.0.3"
defaultConfig {
applicationId "com.pierfrancescosoffritti.shuffly"
minSdkVersion 16
targetSdkVersion 24
versionCode 30
versionName "0.13"
}
buildTypes {
debug {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
release {
shrinkResources true
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
def dbflow_version = "3.1.1"
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
testCompile 'junit:junit:4.12'
apt 'com.jakewharton:butterknife-compiler:8.2.1'
apt "com.github.Raizlabs.DBFlow:dbflow-processor:${dbflow_version}"
compile "com.github.Raizlabs.DBFlow:dbflow-core:${dbflow_version}"
compile "com.github.Raizlabs.DBFlow:dbflow:${dbflow_version}"
compile 'com.android.support:support-v4:24.1.1'
compile 'com.android.support:design:24.1.1'
compile 'com.android.support:recyclerview-v7:24.1.1'
compile 'com.android.support:cardview-v7:24.1.1'
compile 'com.android.support:palette-v7:24.1.1'
compile 'com.jakewharton:butterknife:8.2.1'
compile 'com.github.PierfrancescoSoffritti:AndroidUtils:0.5'
compile 'com.github.PierfrancescoSoffritti:SlidingDrawer:0.10'
compile 'com.github.PierfrancescoSoffritti:WebBasedOAuth:0.7'
compile 'com.github.PierfrancescoSoffritti:ShrinkingImageLayout:0.4'
compile 'com.github.PierfrancescoSoffritti:ExpandableLayout:0.1'
compile 'com.google.apis:google-api-services-youtube:v3-rev177-1.22.0'
compile 'com.google.api-client:google-api-client-android:1.20.0'
compile 'io.reactivex:rxandroid:1.2.1'
compile 'io.reactivex:rxjava:1.1.8'
compile 'com.squareup.picasso:picasso:2.5.2'
compile 'com.github.Commit451:ElasticDragDismissLayout:1.0.4'
compile 'com.google.firebase:firebase-core:9.2.1'
compile 'com.google.firebase:firebase-crash:9.2.1'
compile 'com.google.firebase:firebase-ads:9.2.1'
compile 'com.artemzin.rxjava:proguard-rules:1.1.8.0'
}
apply plugin: 'com.google.gms.google-services'
apply plugin: 'com.getkeepsafe.dexcount'
项目级gradle文件:
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.1.2'
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
classpath 'com.google.gms:google-services:3.0.0'
classpath 'com.getkeepsafe.dexcount:dexcount-gradle-plugin:0.5.5'
}
}
allprojects {
repositories {
jcenter()
maven { url "https://jitpack.io" }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
proguard规则:
# retrolambda
-dontwarn java.lang.invoke.*
# picasso
-dontwarn com.squareup.okhttp.**
# adMob
-keep public class com.google.android.gms.ads.** {
public *;
}
-keep public class com.google.ads.** {
public *;
}
# GoogleApiClient
# Needed to keep generic types and @Key annotations accessed via reflection
-keepattributes Signature,RuntimeVisibleAnnotations,AnnotationDefault
-keepclassmembers class * {
@com.google.api.client.util.Key <fields>;
}
# Needed by google-http-client-android when linking against an older platform version
-dontwarn com.google.api.client.extensions.android.**
# Needed by google-api-client-android when linking against an older platform version
-dontwarn com.google.api.client.googleapis.extensions.android.**
# Needed by google-play-services when linking against an older platform version
-dontwarn com.google.android.gms.**
# com.google.client.util.IOUtils references java.nio.file.Files when on Java 7+
-dontnote java.nio.file.Files, java.nio.file.Path
# Suppress notes on LicensingServices
-dontnote **.ILicensingService
# Suppress warnings on sun.misc.Unsafe
-dontnote sun.misc.Unsafe
-dontwarn sun.misc.Unsafe
# DBFlow
-keep class * extends com.raizlabs.android.dbflow.config.DatabaseHolder { *; }
答案 0 :(得分:1)
如果你想尝试减少方法计数,或者至少你想要了解从发布到调试的差异,我建议你试着查看AS 2.2预览5中可用的dex数,他们有一个youtube视频(也许来自谷歌IO),这使你很容易计算你的方法。
这仅适用于计数方法,如果你仍然使用相同的buildToolsVersion "23.0.3"
,你应该在两个版本的AS中获得完全相同的apk文件(除了AS 2.2附带自己的JDK版本,这不应该妨碍你。)
免责声明:除了玩它之外,我从未使用过该工具,所以在你真正找到罪魁祸首后,我不知道该推荐什么。
编辑:这里是&#34; Apk Analyzer&#34;的视频https://youtu.be/csaXml4xtN8?t=331,它位于&#34; Build&#34;菜单。不要在2.2预览版3或更高版本之前尝试评论,他们会预览一些直到稍后才发布的内容。
编辑2:你为什么只在发布时使用shrinkResources
?这是用于消除不需要的方法的线:"minifyEnabled" vs "shrinkResources" - what's the difference? and how to get the saved space?
答案 1 :(得分:1)
在app level gradle文件中使用此代码替换您的构建类型代码。 当您在最终版本之前调试或运行设备上的代码时,请选择内置的变量调试,当您要构建已签名的apk for release时,请选择内置的变体版本
buildTypes {
debug {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
release {
shrinkResources true
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
答案 2 :(得分:-1)
启用multidex启用true并允许作为multidex应用程序支持您的应用程序。要遵循的几个步骤是:
defaultConfig {
minSdkVersion 15
targetSdkVersion 23
versionCode 3
versionName "1.0.1"
**multiDexEnabled true**
}
将此依赖项添加到依赖项列表
compile&#39; com.android.support:multidex:1.0.0&#39;
使用MultiDexApplication扩展您的应用程序级别
在您的应用程序类中编写此方法
protected void attachBaseContext(Context base)
{
super.attachBaseContext(base);
MultiDex.install(this);
}
将minifyEnabled保持为false,无论是调试还是发布版本
更新
dexOptions {
jumboMode = true
javaMaxHeapSize "4g" //specify the heap size for the dex process
preDexLibraries = false
}