Тип программы уже присутствует: androidx.arch.core.internal.SafeIterableMap $ Entry - PullRequest
0 голосов
/ 28 октября 2019

enter image description here Я создал приложение Unity с firebase и Admob, затем экспортировал в android и сгенерировал файл aar в виде библиотеки, когда я импортирую эту реализацию в собственное приложение, она выдает следующие ошибки:

android {
    compileSdkVersion 28
    defaultConfig {
        applicationId "android.unityembed"
        minSdkVersion 16
        targetSdkVersion 28
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    }

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

configurations {
    compile.exclude group: 'androidx.annotation', module: 'annotation'
}

dependencies {
    implementation(project(':Tespr2-debug'`enter code here`)){
        exclude group: 'android.arch.core' }
   //implementation project(":Tespr2-debug")
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'androidx.appcompat:appcompat:1.1.0'
    implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'androidx.test.ext:junit:1.1.1'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
}

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...