使用eclipse在枚举器中运行我的谷歌地图我的Android版本是4.2我得到一条消息,你必须用一个按钮更新我的谷歌服务文本更新
LOGCAT
05-19 10:27:43.540: W/GooglePlayServicesUtil(1744): Google Play services out of date. Requires 4323000 but found 3136130
05-19 10:27:43.625: W/GooglePlayServicesUtil(1744): Google Play services out of date. Requires 4323000 but found 3136130
05-19 10:29:29.780: W/GooglePlayServicesUtil(1744): Google Play services out of date. Requires 4323000 but found 3136130
05-19 10:29:29.830: W/GooglePlayServicesUtil(1744): Google Play services out of date. Requires 4323000 but found 3136130
05-19 10:29:32.250: D/AndroidRuntime(1744): Shutting down VM
05-19 10:29:32.250: W/dalvikvm(1744): threadid=1: thread exiting with uncaught exception (group=0x40a71930)
05-19 10:29:32.301: E/AndroidRuntime(1744): FATAL EXCEPTION: main
05-19 10:29:32.301: E/AndroidRuntime(1744): android.content.ActivityNotFoundException:
No Activity found to handle Intent { act=android.intent.action.VIEW dat=market://details?
id=com.google.android.gms flg=0x80000 pkg=com.android.vending }
05-19 10:29:32.301: E/AndroidRuntime(1744): at
android.app.Instrumentation.checkStartActivityResult(Instrumentation.java:1622)
05-19 10:29:32.301: E/AndroidRuntime(1744): at
android.app.Instrumentation.execStartActivity(Instrumentation.java:1417)
05-19 10:29:32.301: E/AndroidRuntime(1744): at
android.app.Activity.startActivityForResult(Activity.java:3370)
05-19 10:29:32.301: E/AndroidRuntime(1744): at
android.app.Activity.startActivityForResult(Activity.java:3331)
05-19 10:29:32.301: E/AndroidRuntime(1744): at
android.app.Activity.startActivity(Activity.java:3566)
05-19 10:29:32.301: E/AndroidRuntime(1744): at
android.app.Activity.startActivity(Activity.java:3534)
05-19 10:29:32.301: E/AndroidRuntime(1744): at
com.google.android.gms.dynamic.a$5.onClick(Unknown Source)
05-19 10:29:32.301: E/AndroidRuntime(1744): at
android.view.View.performClick(View.java:4204)
05-19 10:29:32.301: E/AndroidRuntime(1744): at
android.view.View$PerformClick.run(View.java:17355)
05-19 10:29:32.301: E/AndroidRuntime(1744): at
android.os.Handler.handleCallback(Handler.java:725)
05-19 10:29:32.301: E/AndroidRuntime(1744): at
android.os.Handler.dispatchMessage(Handler.java:92)
05-19 10:29:32.301: E/AndroidRuntime(1744): at android.os.Looper.loop(Looper.java:137)
05-19 10:29:32.301: E/AndroidRuntime(1744): at
android.app.ActivityThread.main(ActivityThread.java:5041)
05-19 10:29:32.301: E/AndroidRuntime(1744): at
java.lang.reflect.Method.invokeNative(Native Method)
05-19 10:29:32.301: E/AndroidRuntime(1744): at
java.lang.reflect.Method.invoke(Method.java:511)
05-19 10:29:32.301: E/AndroidRuntime(1744): at
com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:793)
05-19 10:29:32.301: E/AndroidRuntime(1744): at
com.android.internal.os.ZygoteInit.main(ZygoteInit.java:560)
05-19 10:29:32.301: E/AndroidRuntime(1744): at dalvik.system.NativeStart.main(Native Method)
05-19 10:29:35.960: I/Process(1744): Sending signal. PID: 1744 SIG: 9
布局
<?xml version="1.0" encoding="utf-8"?>
<fragment xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/map"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:name="com.google.android.gms.maps.MapFragment"/>
Android主要文件
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.jagmap"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="17" />
<permission android:name="com.example.jagmap.MAPS_RECEVICE" android:protectionLevel="signature"></permission>
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.example.jagmap.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<meta-data
android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
</application>
MainActivity.java
package com.example.jagmap;
import android.os.Bundle;
import android.app.Activity;
import android.support.v4.app.FragmentActivity;
import android.view.Menu;
public class MainActivity extends Activity
{
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
/*@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}*/
}
答案 0 :(得分:1)
设备需要更新Google Play服务。实际上,您应检查此错误,并提示用户。这是Google地图工作所必需的。
http://developer.android.com/google/play-services/setup.html
要验证Google Play服务版本,请致电 isGooglePlayServicesAvailable()。如果结果代码是SUCCESS,那么 Google Play服务APK是最新的,您可以继续 建立联系。但是,如果结果代码是SERVICE_MISSING, SERVICE_VERSION_UPDATE_REQUIRED,或者SERVICE_DISABLED,然后是用户 需要安装更新。所以,打电话 GooglePlayServicesUtil.getErrorDialog()并将结果错误传递给它 码。这将返回您应该显示的对话框,它提供了一个 关于错误的适当消息并提供采取的操作 用户到Google Play商店安装更新。
答案 1 :(得分:0)
仿真器更新频率较低。如果在Google上升级了播放服务版本并且您拥有最新的Google Play服务,那么模拟器使用的图像是内置的,并且此时此消息将显示。通过查看SDK Manager,确保您使用的是最新的Google API图像和Google Play服务。如果没有,则更新并通过创建具有最新图像的新模拟器再次尝试。如果您确实拥有最新的谷歌API图像并播放服务并仍然收到此消息,除了在真实设备上测试地图外,您无法做太多。
答案 2 :(得分:0)
您的错误显示在您的模拟器中您的播放服务不是最新的,您应该通过在应用中卸载并重新安装Play商店应用来更新它。
“Google Play services out of date. Requires 3159100 but ..
”
以下是更新的gms和vending文件。
创建一个新的模拟器,包含任何cpu / abi,非google-api目标(版本10-17工作)和gpu模拟打开或关闭,然后安装文件:
adb install com.android.vending-20130716.apk
adb install com.google.android.gms-20130716.apk
如果要升级现有的模拟器,则可能需要通过以下方式卸载以前的版本:
adb uninstall com.android.vending
adb uninstall com.google.android.gms
同时检查类似问题的Thread。
希望这对你有所帮助。