除非您更新Google Play服务,否则com.tools.fd.runtime.BootstrapApplication将无法运行

时间:2016-11-04 18:18:37

标签: java android google-maps google-maps-api-3

我尝试制作一个按钮(在我的例子中是ImageButton),它会在谷歌地图上找到用户的位置。到目前为止我已经完成了这个,当我按下应用程序模拟器中的按钮时显示; “除非您更新Google Play服务,否则com.tools.fd.runtime.BootstrapApplication将无法运行”。这是我的代码:

built.gradle

apply plugin: 'com.android.application'

android {
compileSdkVersion 23
buildToolsVersion "25.0.0"

defaultConfig {
    applicationId "com.example.konarx.a11042016"
    minSdkVersion 14
    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'])
compile 'com.android.support:appcompat-v7:23.4.0'
compile 'com.google.android.gms:play-services:9.8.0'
testCompile 'junit:junit:4.12'
compile 'com.google.android.gms:play-services-maps:9.8.0'
}

MapsActivity.class

package com.example.konarx.a11042016;

import android.os.Bundle;

import com.google.android.gms.maps.CameraUpdateFactory;
import com.google.android.gms.maps.GoogleMap;
import com.google.android.gms.maps.OnMapReadyCallback;
import com.google.android.gms.maps.SupportMapFragment;
import com.google.android.gms.maps.model.LatLng;
import com.google.android.gms.maps.model.MarkerOptions;

public class MapsActivity extends MainScreen implements OnMapReadyCallback {

private GoogleMap mMap;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_maps);
    SupportMapFragment mapFragment = (SupportMapFragment) getSupportFragmentManager()
            .findFragmentById(R.id.map);
    mapFragment.getMapAsync(this);
}

@Override
public void onMapReady(GoogleMap googleMap) {
    mMap = googleMap;

    LatLng sydney = new LatLng(-34, 151);
    mMap.addMarker(new MarkerOptions().position(sydney).title("Marker in Sydney"));
    mMap.moveCamera(CameraUpdateFactory.newLatLng(sydney));
}
}

2 个答案:

答案 0 :(得分:15)

我刚遇到同样的问题。

在build.gradle中,将播放服务的版本降级为9.6.0

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:25.0.0'
    compile 'com.google.android.gms:play-services:9.6.0'
    testCompile 'junit:junit:4.12'
}

答案 1 :(得分:2)

当我遇到这种情况时,我正在使用Nougat(API 25)。使用不同的API包(我最终在新的模拟器上使用Marshmallow API 23)为我修复了它。我在我的项目中使用了Play服务版本10.0.1,并且降级我的播放服务版本不是一个选项,因为Firebase需要10.0.1。