Gradle error app: processDebugGoogleServices'

1

I'm having an error while trying to generate APK in Android Studio, it's being the following message has been displayed:

Error:Execution failed for task ':app:processDebugGoogleServices'.
> Please fix the version conflict.

I have already made some changes based on the information I found on the web but without success.

Thank you.

    
asked by anonymous 24.03.2016 / 02:23

1 answer

0

enter the build.gradle found here:

andputtheinformationthisway:

applyplugin:'com.android.application'

android{    compileSdkVersion23    buildToolsVersion"23.0.3"

defaultConfig {
    applicationId "br.naobemaocaso.com"
    minSdkVersion 9
    targetSdkVersion 23
    versionCode 12
    versionName "2.0"

    //para atualizar a versao do app  basta mudar o version code
    //version name não precisa alterar   mas e ele que e exibido na play store
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}

}

dependencies {     compile fileTree (include: ['* .jar'], dir: 'libs')     testCompile 'junit: junit: 4.12'     compile 'com.android.support:appcompat-v7:23.2.1'     compile 'com.android.support:design:23.2.1'     compile 'com.google.code.gson: gson: 2.2.4'     compile 'org.jbundle.util.osgi.wrapped: org.jbundle.util.osgi.wrapped.org.apache.http.client: 4.1.2'     compile files ('libs / GraphView-4.0.1.jar') } I hope I have helped

    
18.05.2016 / 19:26