2017-08-08 17 views
0

私はGoogleドライブにテキストファイルを格納するアンドロイドアプリを構築しています。私の見解によれば、コードはOKです。しかし、Google Playサービスのアプリレベル依存性を設定すると、アプリレベルのバージョン依存性にエラーが発生します。この理由から、私はgradleを同期することはできません。私はエラーがバージョン番号であると思う。アンドロイドのGoogle Playサービスの正しいバージョン

そして、これは私が上記の依存関係を入れたときにエラーとして示した依存関係で、ここで は、私は「『:-サービスを再生8.4.0をcom.google.android.gms』をコンパイル」 を入れてプレイサービスの依存関係であります はここ

を " 'com.android.support:appcompat-v7:23.4.0' をコンパイル" ここに私のアプリレベルgraddle

apply plugin: 'com.android.application' 

android { 
    compileSdkVersion 23 
    buildToolsVersion "25.0.2" 
    defaultConfig { 
     applicationId "com.example.xxxxx.calllogtogoogledrive" 
     minSdkVersion 19 
     targetSdkVersion 23 
     versionCode 1 
     versionName "1.0" 
     testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" 
    } 
    buildTypes { 
     release { 
      minifyEnabled false 
      proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 
     } 
    } 
} 

dependencies { 
    compile fileTree(dir: 'libs', include: ['*.jar']) 
    androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', { 
     exclude group: 'com.android.support', module: 'support-annotations' 
    }) 
    compile 'com.android.support:appcompat-v7:23.4.0' 
    compile 'com.android.support.constraint:constraint-layout:1.0.2' 
    testCompile 'junit:junit:4.12' 
    compile 'com.google.android.gms:play-services:8.4.0' 
} 

は、プロジェクトレベルのGradleは

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

buildscript { 
    repositories { 
     jcenter() 
    } 
    dependencies { 
     classpath 'com.android.tools.build:gradle:2.3.2' 

     // 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 
} 
です

答えて

0

このようにbuild.gradleを変更しようとしてください。

allprojects { 
    repositories { 
     maven { url "http://jcenter.bintray.com" } 
    } 

jcenter()を削除します。

+0

コンパイルエラーが発生しました。実行時エラーが発生しました。 –

+0

私を見せてもらえますか? –

関連する問題