Googleマップをベースにしたデモプロジェクトを作成しようとしていましたが、これはアンドロイドスタジオが提供するMapsActivityを使用していたためです。 Google Playサービスを除いてすべて正常です。 Androidのスタジオは、プレイサービスを解決するのに失敗し、エラー -Androidスタジオ2.2.2:Google Playサービスの解決に失敗しました
Error:(27, 13) Failed to resolve: com.google.android.gms:play-services:9.4.0
Install Repository and sync project
Show in File
Show in Project Structure dialog
プロジェクトの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.2.2'
classpath 'com.google.gms:google-services:3.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
}
アプリケーションのGradle
apply plugin: 'com.android.application'
android {
compileSdkVersion 24
buildToolsVersion "25.0.0"
defaultConfig {
applicationId "com.example.mymapapplication"
minSdkVersion 15
targetSdkVersion 24
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:24.2.1'
compile 'com.google.android.gms:play-services:9.4.0'
testCompile 'junit:junit:4.12'
}
apply plugin: 'com.google.gms.google-services'
私が更新されているSDKツールを投げていますGoogle Playサービスv-33とGoogle Repository v-36 私はそれを処理するために多くのことを試みましたが、それでも同じ問題に直面していました。
このリンクは、SDKツールDeepanshuの「更新サイト」にありますか?私はちょうどそこにそれを追加し、私のAndroid Studioを殺した!これをどのように修正したかについて、より多くの指示を提供できますか?私は非常に似通った問題に直面しています.http://stackoverflow.com/questions/40294906/failed-to-resolve-com-google-android-gmsplay-services-location9-6-1 – OceanLife