我读过以前的帖子,但我仍然无法解决问题。我使用的是API 23,该应用程序包含Google Map。模拟器的目标是Google API(API级别23)。在我的gradle文件中显示:
dependencies {
compile 'com.google.android.gms:play-services:8.3.0'
}
在我的模拟器中,我在设置中看到Google Play服务版本为“8.1.85”。我无法将我的gradle文件中的播放服务版本更改为“8.1.85”,我仍然无法弄清楚如何在我的模拟器中将Google Play服务版本设置为8.3.0。
我是Android的新手,所以如果我错过了一些信息,请告诉我。在添加代码与服务器建立连接并向服务器发送一些JSON之前,模拟器工作正常。我不确定这是否会影响Google Play服务。
这是build.gradle: apply plugin:'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.2"
defaultConfig {
applicationId "com.sophie.myapp1"
minSdkVersion 23
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.1.0'
compile 'com.google.android.gms:play-services:8.3.0'
compile 'com.android.support:design:23.1.0'
}
答案 0 :(得分:5)
我也遇到了同样的问题。 我使用了Google API第21版的模拟器,它运行正常。
答案 1 :(得分:0)
因为谷歌让这成为影响许多开发者的单一问题。我会把它解决掉 - 解决这个问题我可以验证解决方案:
你的gradle文件中的:
编译'com.google.android.gms:play-services:+'//这将拉出最新版本。
然后在你的模拟器中选择一个运行API版本21的Android虚拟设备AVD。我只选择Nexus 5 API 21 x86 - 不记得id它是默认值。
说完可能很重要的是我在gradle文件中也有这个设置:
android {
compileSdkVersion 21
buildToolsVersion "21.1.2"
defaultConfig {
applicationId "com.example.der_geiler.XXX"
minSdkVersion 21
targetSdkVersion 21
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}