これはトップレベルのGradleファイルでサービスGoogleは、私がグーグルとロケーションAPIを利用したいサービス
を再生する再生取り付け:
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.3'
// 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
}
と、これは私のアプリレベルのGradleファイルです:
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion "25.0.1"
defaultConfig {
applicationId "..."
minSdkVersion 14
targetSdkVersion 25
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
productFlavors {
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
// 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:25.0.1'
compile 'com.android.support:design:25.0.1'
compile 'com.android.support:recyclerview-v7:25.0.1'
compile 'com.google.android.gms:play-services:11.4.2'
}
私はプロジェクトをビルドしたい場合は、このエラーが表示:
Error:(30, 13) Failed to resolve: com.google.android.gms:play-services:11.4.2
Install Repository and sync project
Show in File
Show in Project Structure dialog
私はGoogleが「リポジトリとの同期プロジェクトをインストール」をクリックしてサービスを再生するインストールしましたが、エラーがまだこの文書によると
を示す:私はこの線でグーグル・プレイ・サービスの依存関係を交換した https://developers.google.com/android/guides/setup :
compile 'com.google.android.gms:play-services-location:11.4.2'
compile 'com.google.android.gms:play-services-maps:11.4.2'
私はプロジェクトをビルドするときに "失敗しました..."というエラーが表示されましたが、「リポジトリのインストールとプロジェクトの同期」をクリックしても何も起こりませんでした。
何が問題ですか?バージョン番号に問題がありますか?または、他の何か ?! HERE書かれているから、
Maven RepoをProject level Gradleに追加しましたか? –
https://stackoverflow.com/questions/46417939/failed-to-resolve-com-google-android-gms-play-services-auth11-4-0 – tyczj
@NovoLucas、私はポストにトップレベルのgradleファイルを追加しました –