DexIndexOverflowException Only When Running Tests

后端 未结 4 1448
面向向阳花
面向向阳花 2020-11-22 04:29

I can successfully build and run my Android app in my debug and release variants with no problem. Yet, when I try to run my new unit tests (I never had them before), I get t

相关标签:
4条回答
  • 2020-11-22 04:58
    com.android.dex.DexIndexOverflowException: method ID not in [0, 0xffff]: 65536 
    

    Android application (APK) files contain executable bytecode files in the form of Dalvik Executable (DEX) files, which contain the compiled code used to run your app. The Dalvik Executable specification limits the total number of methods that can be referenced within a single DEX file to 65,536, including Android framework methods, library methods, and methods in your own code. Getting past this limit requires that you configure your app build process to generate more than one DEX file, known as a multidex configuration.

    The Android plugin for Gradle available in Android SDK Build Tools 21.1 and higher supports multidex as part of your build configuration. Make sure you update the Android SDK Build Tools tools and the Android Support Repository to the latest version using the SDK Manager before attempting to configure your app for multidex.

    Setting up your app development project to use a multidex configuration requires that you make a few modifications to your app development project. In particular you need to perform the following steps:

    1. Change your Gradle build configuration to enable multidex
    2. Modify your manifest to reference the MultiDexApplication class

    Modify your app Gradle build file configuration to include the support library and enable multidex output .

        android {
        compileSdkVersion 25
        buildToolsVersion "25.0.2"
    
        defaultConfig {
            ...
            minSdkVersion 14
            targetSdkVersion 25
            ...
    
            // Enabling multidex support.
            multiDexEnabled true
        }
        ...
    }
    
    dependencies {
      compile 'com.android.support:multidex:1.0.3' 
    }
    

    In your manifest add the MultiDexApplication class from the multidex support library to the application element.

    <?xml version="1.0" encoding="utf-8"?>
    <manifest xmlns:android="http://schemas.android.com/apk/res/android"
        package="com.example.android.multidex.myapplication">
        <application
         android:name="android.support.multidex.MultiDexApplication">
    
        </application>
    </manifest>
    

    Read Official Document about MultiDex

    If your Application class is extending some other class and you don’t want to or can’t change it, override attachBaseContext() as shown below:

    public class MyApplication extends MultiDexApplication { 
       @Override 
       protected void attachBaseContext(Context base) { 
          super.attachBaseContext(base); 
          MultiDex.install(this); 
       } 
    }
    

    Then

    <?xml version="1.0" encoding="utf-8"?>
    <manifest xmlns:android="http://schemas.android.com/apk/res/android"
        package="com.example.android.multidex.myapplication">
        <application
         android:name=".MyApplication">
        </application>
    </manifest>
    

    Conclusion

    While the library fixes the DEX 64K problem in most cases, it should be treated as a last resort. Before attempting to use it, you should audit your project for unwanted dependencies and remove as much unused code as possible using ProGuard.

    0 讨论(0)
  • 2020-11-22 05:01

    the error occurs maybe because of too many functions in your projects and library. You can:
    - Enable multiple dex as @Intellij Amiya's answer
    - Check libraries: specifying only the specific Google Play services APIs your app uses, instead of all of them.

    compile 'com.google.android.gms:play-services-ads:7.5.0'
    

    Find and exclude duplicated dependencies: open your terminal and run:

    gradle -q dependencies

    It will show a list as below example:

    +--- com.android.support:appcompat-v7:23.0.1
    |    \--- com.android.support:support-v4:23.0.1
    |         \--- com.android.support:support-annotations:23.0.1
    +--- :dputility_library-1.1.2:
    +--- com.google.android.gms:play-services-ads:7.5.0
    |    +--- com.google.android.gms:play-services-base:7.5.0
    |    |    \--- com.android.support:support-v4:22.0.0 -> 23.0.1 (*)
    |    \--- com.google.android.gms:play-services-analytics:7.5.0
    |         \--- com.google.android.gms:play-services-base:7.5.0 (*)
    +--- com.jakewharton:butterknife:7.0.1
    +--- com.afollestad:material-dialogs:0.7.6.0
    |    +--- com.android.support:support-v4:22.2.0 -> 23.0.1 (*)
    |    +--- com.android.support:appcompat-v7:22.2.0 -> 23.0.1 (*)
    |    +--- com.android.support:recyclerview-v7:22.2.0
    |    |    +--- com.android.support:support-annotations:22.2.0 -> 23.0.1
    |    |    \--- com.android.support:support-v4:22.2.0 -> 23.0.1 (*)
    |    \--- com.android.support:support-annotations:22.2.0 -> 23.0.1
    

    You can see some dependencies with (*), you can exclude it from your gradle dependences:

    compile('com.google.android.gms:play-services-ads:7.5.0')
    {
        exclude module: 'support-v4'
        exclude module: 'play-services-base'
    }
    

    Actually, for me, the excluding method works (multiple dex does not). Hope it helps.

    0 讨论(0)
  • 2020-11-22 05:07

    Upgrading to gradle plugin 3.1.1 fixed the issue for me, as suggested in this answer

    0 讨论(0)
  • 2020-11-22 05:07

    If you only need multidex support for tests, you can enable it only for tests with a line like the following in your build.gradle:

    dependencies {
        ...
        androidTestCompile 'com.android.support:multidex:1.0.1'
    }
    
    0 讨论(0)
提交回复
热议问题