2

我不知道如何解决 Android 中的 Multidex 问题。我的应用程序集成了很多 SDK,因此应用程序超过了 65k Over Method 限制。我浏览了很多教程和博客。我得到了很多解决方案。其中一个在下面提到,作为我的 gradle 的一部分。请有人提供一个好的和有效的解决方案。

android {
minSdkVersion 16
compileSdkVersion 21
buildToolsVersion "21.1.2"

defaultConfig {
    applicationId "your.package.name"
    ..........    }

buildTypes {
    release {
     .............................
    }
}
// Inside android part of build.gradle
dexOptions {
    preDexLibraries = false
}

} 
 .............
 ............

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

 // Inside dependencies part of build.gradle
compile 'com.android.support:multidex:1.0.1'
..............
 }


 // Outside android part of build.gradle
afterEvaluate {
tasks.matching {
    it.name.startsWith('dex')
}.each { dx ->
    if (dx.additionalParameters == null) {
        dx.additionalParameters = []
    }
    dx.additionalParameters += '--multi-dex'
   }

 ........
 .......
}
4

1 回答 1

3

这是我们在项目中一直使用的。它似乎工作得很好。如果您有一台内存不足的机器,您应该喜欢2g参数,因为这意味着 multidex 最多可以使用 2GB 内存。这对我们来说不是问题。

 defaultConfig{
       // All other stuff you have, just add this line
       multiDexEnabled true
    }   

dexOptions {
        incremental true
        javaMaxHeapSize "2g"
    }

dependencies {
   'com.android.support:multidex:1.0.1'
}

在您的项目中,您应该创建一个 Application 类,它应该扩展MultiDexApplication

    import android.support.multidex.MultiDexApplication;
    public class YourApllication extends MultiDexApplication {

        @Override
        public void onCreate() {
          super.onCreate();
      }
   }
于 2015-04-23T20:18:05.020 回答