当前位置: 首页 > 知识库问答 >
问题:

多个dex文件定义Android/Support/Annotation/Animres

訾凯歌
2023-03-14
buildscript {
    repositories {
        maven { url 'https://maven.fabric.io/public' }
    }

    dependencies {
        classpath 'io.fabric.tools:gradle:1.+'
    }
}

apply plugin: 'com.android.application'
apply plugin: 'io.fabric'

repositories {
    maven { url 'https://maven.fabric.io/public' }
}

android {
    compileSdkVersion 21
    buildToolsVersion "22.0.1"

    defaultConfig {
        applicationId "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
        minSdkVersion 10
        targetSdkVersion 22
        versionCode 289
        versionName "2.2.0"
    }

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles 'proguard-android.txt', 'proguard-rules.txt'
        }
        debug {
            debuggable true
        }
    }
}

dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    compile 'com.android.support:appcompat-v7:22.1.1'
    compile 'com.google.android.gms:play-services-location:7.5.0'
    compile 'com.google.android.gms:play-services-maps:7.5.0'
    compile('com.facebook.android:facebook-android-sdk:3.23.1') {
        exclude group: 'com.google.android', module: 'support-v4'
    }
    compile('com.crashlytics.sdk.android:crashlytics:2.3.1@aar') {
        transitive = true;
    }
    compile project(':UtilsLibrary')
    compile project(':NumberPickerLibrary')
    compile project(':drag-sort-listview-lib')
    compile project(':GoogleAPI Library')
    compile project(':MenuDrawerLibrary')
    compile project(':IOLibrary')
    compile project(':AR Library')
    compile project(':GoogleLicense')
    compile project(':android-maps-utils-library')
}

我敢肯定,不知怎么的,我添加了两倍的谷歌库。

多谢了。

共有1个答案

阚通
2023-03-14

检查为该模块编译的其他模块。

查看作为依赖项包含的内容的最佳方法是使用gradlew。

请参阅此处如何生成依赖项3。

 类似资料: