在我的应用程序中,我在我的eclipse中使用谷歌样本并使用代码基本map.java但当我运行我的应用程序崩溃和下来! 当我一步一步地使用google show map教程这个链接:
https://developers.google.com/maps/documentation/android/start?hl=pt-ZA
没问题。 我的最小Sdk:10并以Sdk 19为目标并编译:19
我的LogCat: 06-07 01:23:11.180:W / GooglePlayServicesUtil(1813):Google Play服务丢失。 但我安装了谷歌播放服务!
答案 0 :(得分:0)
可以有两种情况
<meta-data
android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
标记的孩子中的<application>
。 编辑:
AndroidManifest.xml
<application <!-- Application Tag -->
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<meta-data <!--child of application tag -->
android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
<meta-data
android:name="com.google.android.maps.v2.API_KEY"
android:value="AIzaSyAvGvbXJD4N5PC_YT2EvdcPgP9mx9YCMs4" />
<!-- activity declarations -->
<activity
android:name="com.sample.MainActivity"
android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar" >
</activity>
答案 1 :(得分:0)
如果您使用的是实际设备,则还需要在设备上安装Google Play服务应用。您可以从Google Play下载:https://play.google.com/store/apps/details?id=com.google.android.gms