Невозможно включить библиотеку зависимостей при экспорте файла aar - PullRequest
0 голосов
/ 14 апреля 2020

Я создал модуль и сейчас пытаюсь экспортировать файл .aar, но не могу включить зависимости gradle, которые я использовал в модуле, в файл .aar. Я попытался решить эту запись безуспешно. Вот как выглядит файл .build уровня моего приложения:

apply plugin: 'com.android.library'

android {
    compileSdkVersion 28
    buildToolsVersion "29.0.2"

    defaultConfig {
        minSdkVersion 19
        targetSdkVersion 28
        versionCode 1
        versionName "1.0"

        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
        consumerProguardFiles 'consumer-rules.pro'
    }

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


dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'androidx.appcompat:appcompat:1.1.0'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'androidx.test.ext:junit:1.1.1'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'

    implementation ('com.daimajia.androidanimations:library:2.3@aar')
    {transitive=true}
    implementation ('com.google.android.exoplayer:exoplayer-core:2.10.0')
    {transitive=true}
    implementation ('tyrantgit:explosionfield:1.0.1')
    {transitive=true}
}

Чего мне не хватает?

...