Dependencies gradle with error

2

Every time I try to introduce any API in my project and I'm going to put the compile there in dependencies of the gradle it gives error and does not get out of it.

I've tried syncing too.

The gradle only works again if I take the API that I just put. In the case I'm trying to put an API that leaves the framed images in cubicle.

Followthecodebelow:

Build.gradle

applyplugin:'com.android.application'android{compileSdkVersion23buildToolsVersion"23.0.2"

    defaultConfig {
        applicationId "E**DITADO**"
        minSdkVersion 16
        targetSdkVersion 23
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:appcompat-v7:23.3.0'
    compile 'com.android.support:design:23.3.0'
    compile 'com.google.android.gms:play-services-appindexing:8.4.0'
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.android.support:appcompat-v7:23.3.0'
    compile 'com.android.support:cardview-v7:23.3.0'
    compile 'com.android.support:recyclerview-v7:23.3.0'


}

Build.grad (Application)

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
    repositories {
        jcenter()
    }
    repositories {
        maven {
            url "https://jitpack.io"
        }
    }

    dependencies {
        classpath 'com.android.tools.build:gradle:2.0.0'
        }



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


allprojects {
    repositories {
        jcenter()
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}
    
asked by anonymous 28.06.2016 / 12:26

1 answer

4

At your Build.gradle (Aplicação) , take the line maven :

buildscript {
   repositories {
       jcenter()
   }
   repositories {
       maven { // Essa linha
          url "https://jitpack.io" // Essa linha
       } // Essa linha
   }
}

And move right down to:

allprojects {
    repositories {
        jcenter()

        maven { // Coloque aqui
           url "https://jitpack.io"
        }

    }
}
    
28.06.2016 / 14:32