我在尝试构建APK时遇到以下错误。我已经阅读了几篇关于如何解决问题的帖子,但由于我没有长期开发,我不确定我在做什么。所以,希望有人可以提供帮助。
Error:Execution failed for task ':app:transformClassesWithDexForDebug'.
> com.android.build.api.transform.TransformException: com.android.ide.common.process.ProcessException:
java.util.concurrent.ExecutionException: com.android.dex.DexIndexOverflowException: method ID not in [0, 0xffff]: 65536
这是我的build.gradle(模块)
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion "25.0.2"
defaultConfig {
applicationId "com.example.dawnlp.mymap"
minSdkVersion 22
targetSdkVersion 25
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:25.1.0'
compile 'com.google.android.gms:play-services:10.0.1'
testCompile 'junit:junit:4.12'
}
这是我的build.gradle项目
/ Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.3'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
}
}
如果有人可以提供帮助,我会很感激,也记得我有点缺乏经验。
答案 0 :(得分:1)
使用它:
symbol
并且也使用它
android{
defaultConfig {
multiDexEnabled true
}
}
答案 1 :(得分:1)
您需要启用multidex,将此行添加到defaultConfig:
multiDexEnabled true
这一行依赖于你的依赖:
compile 'com.android.support:multidex:1.0.1'
此外,在运行单元测试时,您需要创建一个扩展应用程序并安装MultiDex的类:
public class YouApplication extends Application {
@Override
protected void attachBaseContext(Context base) {
super.attachBaseContext(base);
MultiDex.install(this);
}
}
答案 2 :(得分:0)
在模块级gradle中使用此块: dexOptions { javaMaxHeapSize“4g” } 强>
在清单中将应用程序名称更改为 .multidex 。 希望你的代码现在可以正常工作