将multidex添加到我的应用程序

时间:2017-10-30 09:12:23

标签: android-studio android-gradle classnotfoundexception dex

这是此问题的延续:Unable to merge dex - how to exclude proper jar?

我没有一个典型的android项目,我只是在单独的模块上工作,它与我的清单中的活动,片段,UI等没有关联,我没有声明任何Android规范。这是我的清单:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.moduleName.sampleName"
>
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION">
</uses-permission>

</manifest>

我有例外:

  

引起:com.android.dex.DexIndexOverflowException:方法ID不在[0,0xffff]中:65536

所以,这就是我的build.gradle文件现在的样子:

apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-kapt'

android {
compileSdkVersion 26
buildToolsVersion "26.0.2"


packagingOptions {
    exclude 'protobuf.meta'
}

testOptions {
    unitTests {
        includeAndroidResources = true
    }

}
sourceSets {
    test.java.srcDirs += ['build/generated/source/apt/test/debug']
}

defaultConfig {
    multiDexEnabled true
    minSdkVersion 15
    targetSdkVersion 26
    versionCode 1
    versionName "1.0"

    testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}

buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
 }

}

ext.daggerVersion = '2.11'
ext.roomVersion = '1.0.0-rc1'

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])

implementation 'com.android.support:appcompat-v7:26.1.0'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.1'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
testImplementation "org.robolectric:robolectric:3.4.2"
kaptTest "com.google.dagger:dagger-compiler:$daggerVersion"
kaptAndroidTest "com.google.dagger:dagger-compiler:$daggerVersion"


// RxJava
implementation 'io.reactivex.rxjava2:rxjava:2.1.0'
implementation 'io.reactivex.rxjava2:rxandroid:2.0.1'

// Room
implementation "android.arch.persistence.room:runtime:$roomVersion"
implementation "android.arch.persistence.room:rxjava2:$roomVersion"
kapt "android.arch.persistence.room:compiler:$roomVersion"
implementation "org.jetbrains.kotlin:kotlin-stdlib:1.1.51"
androidTestImplementation "android.arch.persistence.room:testing:$roomVersion"

// Dagger
implementation "com.google.dagger:dagger:$daggerVersion"
implementation "com.google.dagger:dagger-android:$daggerVersion"
implementation "com.google.dagger:dagger-android-support:$daggerVersion"
kapt "com.google.dagger:dagger-compiler:$daggerVersion"
kapt "com.google.dagger:dagger-android-processor:$daggerVersion"

implementation 'pl.charmas.android:android-reactive-location2:2.0@aar'
implementation 'com.google.android.gms:play-services-location:11.4.2'
implementation 'com.google.android.gms:play-services-places:11.4.2'

//Jackson
implementation 'com.fasterxml.jackson.core:jackson-core:2.9.1'
implementation 'com.fasterxml.jackson.core:jackson-annotations:2.9.0'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.9.1'

implementation 'com.android.support:multidex:1.0.2'

}

我在“测试”包中的测试工作正常。

但是当我尝试在我的androidTest类包中运行一些测试时,我得到了这个:

  

开始运行测试   测试运行失败:由于'java.lang.NoClassDefFoundError'导致仪表运行失败   空测试套件。

总结一下:

这个问题的开头是在上面的链接 - 我添加了jackson库后我有大量的方法,所以我添加了dex支持,这让我遇到了这个问题,我真的不知道如何解决 - 试图排除一些依赖性并且只留下非常重要的,试图清理项目,删除构建包。他们都没有工作。如果重要的是我在这个模块中使用Kotlin

1 个答案:

答案 0 :(得分:0)

您可能必须在AndroidManifest中添加MultiDexApplication:

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

如果您覆盖Application类,请将其更改为扩展MultiDexApplication(如果可能),如下所示:

public class MyApplication extends MultiDexApplication { ... }

Check this Google official blog here for MultiDex support