错误:程序类型已经存在:com.facebook.ads.Ad

时间:2018-11-14 08:36:04

标签: android facebook-android-sdk

我正在尝试根据此实现facebook sdk, https://developers.facebook.com/docs/audience-network/android

当我尝试编译它时,出现此错误。

  

错误:程序类型已经存在:com.facebook.ads.Ad

我正在使用android studio 3.2.1

这是我的礼物

    apply plugin: 'com.android.application'

android {
    compileSdkVersion 27
    buildToolsVersion '28.0.3'

    defaultConfig {
        applicationId "com.test.test"
        minSdkVersion 16
        targetSdkVersion 27
        multiDexEnabled true


        ndk {
            moduleName "player_shared"
        }
    }

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
        }
    }

    dexOptions {
        javaMaxHeapSize "4g"
    }
}

dependencies {
    implementation 'com.google.android.gms:play-services:+'
    implementation 'com.android.support:multidex:1.0.3'
    implementation fileTree(include: ['*.jar'], dir: 'libs')
    implementation 'com.google.android.gms:play-services-ads:11.6.0'
    implementation 'com.android.support:appcompat-v7:27.1.1'
    implementation 'com.facebook.android:facebook-android-sdk:[4,5)'
    implementation 'com.facebook.android:facebook-core:[4,5)'
    implementation 'com.facebook.android:facebook-marketing:[4,5)'
    implementation 'com.android.support:recyclerview-v7:25.3.1' // Required Dependency by Audience Network SDK
    implementation 'com.facebook.android:audience-network-sdk:5.+'
    // More deps here //
}

0 个答案:

没有答案