play-services-base和support-v4 double方法计数

时间:2016-09-01 08:07:19

标签: android gradle google-play-services android-support-library dex

根据methods.com play-service-base总共有15k方法。但是,我已经在support-v4中添加了Android build.gradle(~9k方法)。反正是为了确保我的应用程序中的总方法计数是15k而不是24k = 15k + 9k?

我的build.grade:

...
dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    testCompile 'junit:junit:4.12'
    compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.0'
    androidTestCompile('com.android.support.test:runner:0.5') {}
    androidTestCompile 'com.android.support.test:rules:0.5'
    androidTestCompile 'com.android.support.test.espresso:espresso-core:2.2.2'
    androidTestCompile('com.android.support.test.espresso:espresso-contrib:2.2.2') {
        exclude group: 'com.android.support', module: 'design'
        exclude group: 'com.android.support', module: 'appcompat'
        exclude group: 'com.android.support', module: 'support-v4'
        exclude module: 'recyclerview-v7'
        exclude module: 'support-annotations'
    }
    androidTestCompile 'com.android.support:support-annotations:23.4.0'
    compile('com.crashlytics.sdk.android:crashlytics:2.6.1@aar') {
        transitive = true;
    }
    compile('com.android.support:appcompat-v7:23.4.0') {
        force true
    }
    compile('com.android.support:support-v4:23.4.0') {
        force = true;
    }
    compile('com.android.support:recyclerview-v7:23.4.0') {
        force = true;
    }
    compile('com.android.support:cardview-v7:23.4.0') {
        force = true;
    }
    compile('com.android.support:design:23.4.0') {
        force = true;
    }
    apt 'com.jakewharton:butterknife-compiler:8.2.1'
    compile 'com.android.support:percent:23.4.0'
    compile 'com.loopj.android:android-async-http:1.4.9'
    compile 'com.squareup.picasso:picasso:2.5.2'
    compile 'com.squareup.retrofit2:retrofit:2.1.0'
    compile 'com.google.android.gms:play-services-base:9.2.0'
    compile 'com.google.android.gms:play-services-location:9.2.0'
...
}
...

Android插件的结果:
enter image description here

2 个答案:

答案 0 :(得分:1)

方法计数并非严格意义上的加法。 64k方法限制是对dex文件中method_id_item列表中条目数的限制。这是在dex文件中的任何位置引用的唯一方法ID(类名+方法名+参数+返回类型)的列表。因此,从两个库中引用的任何方法都将在最终的dex文件中进行重复数据删除,并且两者所贡献的总方法计数将略低于各个库中的15k + 9k。

答案 1 :(得分:1)

目前Android Studio的稳定版本中没有任何功能 测试版中有一个beta分析。

但是,您可以使用一些工具来计算方法:

您也可以使用此gradle插件来计算方法:

   apply plugin: 'com.android.application'
    apply plugin: 'com.getkeepsafe.dexcount'

    buildscript {
        repositories {
            mavenCentral() // or jcenter()
        }

        dependencies {
            classpath 'com.getkeepsafe.dexcount:dexcount-gradle-plugin:0.5.5'
        }
    }

但是,您可以使用拆分support-v4 libraries和新的24.2.0来使您的APK文件尽可能小