Sequence of errors when building in Android Studio

0
Hello, Friends, I'm starting to study the Java language Android and Studio Android, I'm having problems with a project that I downloaded from the Web, but I already followed some tutorials mentioning the errors, where they asked to include the Google Repository in Gradle, done this and I get the same error.

  

Android resource compilation failed   Output: C: \ User App \ app \ build \ intermediate \ incremental \ mergeDebugResources \ merged.dir \ values \ values.xml: 559: error: duplicate value for resource 'attr / mode' with config ''.   C: \ User App \ app \ build \ intermediate \ incremental \ mergeDebugResources \ merged.dir \ values \ values.xml: 559: error: resource previously defined here.

     

Command: C: \ Users \ thiag.gradle \ caches \ transforms-1 \ files-1.1 \ aapt2-3.2.1-4818971-windows.jar \ 79f09d9bc6495fadae447004b2ff6c6f \ aapt2-3.2.1-4818971-windows \ aapt2. exe compile --legacy \           -O \           C: \ User App \ app \ build \ intermediates \ res \ merged \ debug \           C: \ User App \ app \ build \ intermediates \ incremental \ mergeDebugResources \ merged.dir \ values \ values.xml   Daemon: AAPT2 aapt2-3.2.1-4818971-windows Daemon # 0

My Project Gradle File looks like this:

buildscript {
    repositories {

        jcenter()
        maven {
            url 'https://maven.google.com/'
            name 'Google'
        }
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.2.1'

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {

        jcenter()
        maven {
            url 'https://maven.google.com/'
            name 'Google'
        }
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

My App Project Gradle looks like this:

apply plugin: 'com.android.application'

buildscript {
    repositories {
        mavenCentral()
        maven { url 'https://maven.fabric.io/public' }
    }
    dependencies {
        classpath 'io.fabric.tools:gradle:1.+'
    }
}

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

android {
    compileSdkVersion 23
    buildToolsVersion '28.0.3'

    defaultConfig {
        applicationId "come.texi.driver"
        minSdkVersion 16
        targetSdkVersion 23
        versionCode 2
        versionName "2.0"
        multiDexEnabled true
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
    dexOptions {
        preDexLibraries = false
        javaMaxHeapSize "4g"
    }

}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    //    compile 'com.jakewharton:butterknife:7.0.1'
    //compile 'com.loopj.android:android-async-http:1.4.9'
    compile project(':facebooklibrary')
    compile project(':slideMenuLibrary')
    compile project(':stripe')
    compile('com.twitter.sdk.android:twitter:1.13.0@aar') {
        transitive = true
    }
    //compile 'com.github.nkzawa:socket.io-client:0.3.0'
    compile('io.socket:socket.io-client:0.7.0') {
        // excluding org.json which is provided by Android
        exclude group: 'org.json', module: 'json'
    }
    //compile 'com.paypal.sdk:paypal-android-sdk:2.14.4'
    compile('com.paypal.sdk:paypal-android-sdk:2.14.4') {
        exclude group: 'org.json', module: 'json'
    }

    compile 'com.android.support:appcompat-v7:23.4.0'
    compile 'com.android.support:design:23.4.0'
    compile 'cz.msebera.android:httpclient:4.4.1.1'
    compile 'com.squareup.picasso:picasso:2.5.2'
    compile 'com.koushikdutta.ion:ion:2.+'
    compile 'com.victor:lib:1.0.1'
    compile 'com.facebook.android:facebook-android-sdk:4.7.0'
    compile 'com.google.android.gms:play-services-maps:9.4.0'
    compile 'com.google.android.gms:play-services-analytics:9.4.0'
    compile 'com.google.android.gms:play-services-gcm:9.4.0'
    compile 'com.android.support:multidex:1.0.1'
    compile 'com.android.support.constraint:constraint-layout:2.0.0-alpha1'
    testCompile 'junit:junit:4.12'
}
    
asked by anonymous 22.12.2018 / 17:24

0 answers