Google映射android app build错误:app:transformClassesWithDexForDebug

时间:2017-04-12 10:50:51

标签: android google-maps build.gradle

我目前正在开发谷歌地图的自定义主题版本,过去上帝知道多长时间尝试解决此构建错误。我对此进行了广泛的研究,并没有发现任何似乎有助于解决我的问题。

我已将我的app / build.gradle文件包含在

下面
apply plugin: 'com.android.application'

android {
    compileSdkVersion 25
    buildToolsVersion "25.0.2"
    defaultConfig {
        applicationId "com.wtwelectronics.googlemapsrev2"
        minSdkVersion 15
        targetSdkVersion 25
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
//         Enabling multidex support.
        multiDexEnabled true
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
    dexOptions {
        incremental true
    }
}

dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    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.3.1'
    compile 'com.google.android.gms:play-services:10.2.1'
    compile 'com.android.support:multidex:1.0.1'
    compile 'com.android.support:design:25.3.1'
    testCompile 'junit:junit:4.12'
}

gradle控制台输出的第一个错误行如下:

Execution failed for task ':app:transformClassesWithDexForDebug'.
> com.android.build.api.transform.TransformException: com.android.ide.common.process.ProcessException: java.util.concurrent.ExecutionException: com.android.ide.common.process.ProcessException: Return code 1 for dex process

我正在使用android studio 2.3.1,以及最新的SDK包等。

提前致谢。

1 个答案:

答案 0 :(得分:0)

尝试在您的gradle中添加此内容

compile 'com.google.android.gms:play-services-maps:10.2.0'

并查看this示例了解更多内容。