我不知道如何在Android中解决Multidex问题。我的应用程序有很多SDK集成,因此App超过了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'
}
........
.......
}
答案 0 :(得分: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();
}
}