Help with problem finished with non-zero exit value 1 (Android Studio)

0

I have a problem with an APP, I get this error.

Process 'command 'C:\Users\SANCHEZ\AppData\Local\Android\Sdk\build-tools.0.3\aidl.exe'' finished with non-zero exit value 1

Here I attach my Build Gradle. (already try to reinstall everything and nothing)

    apply plugin: 'com.android.application'

android {
    compileSdkVersion 27
    buildToolsVersion '28.0.3'

    defaultConfig {
        applicationId "fun.xxxx.xxxx"
        minSdkVersion 15
        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.firebase:firebase-auth:16.0.4'
    implementation 'com.google.android.gms:play-services-ads:17.1.1'
    implementation 'com.google.android.gms:play-services-auth:16.0.1'
    // More deps here //
}
    
asked by Aeiko Sanchez 26.11.2018 в 07:13
source

0 answers