Google地图无法作为虚拟设备在我的手机上运行

时间:2013-05-14 05:04:38

标签: android google-maps

我刚刚花了几个小时来设置Google Maps API v2。现在我觉得我已经完成了,我会去测试一下,看看,我的应用程序不再在手机上运行了。我做了什么?我是冒犯谷歌地图的吗?我可以在我的虚拟设备列表中看到我的手机,VDK说该设备有效。但是当我运行应用程序时,手机上没有任何反应。我发现LogCat中没有特别的错误,所以我不知道我做了什么。这是我的manifest.xml文件,以防有些问题出现在这里:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.my_app"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
    android:minSdkVersion="11"
    android:targetSdkVersion="17" />

<!-- The following are all required to used Google Maps -->
<permission
    android:name="com.example.my_app.permission.MAPS_RECEIVE"
    android:protectionLevel="signature"/>

<uses-feature
    android:glEsVersion="0x00020000"
    android:required="true"/>

<uses-permission android:name="com.example.my_app.permission.MAPS_RECEIVE"/>

<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES"/>
<!-- The following two permissions are not required to use
     Google Maps Android API v2, but are recommended. -->
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
<!-- End Google maps requirements section -->

<application
    android:allowBackup="true"
    android:theme="@android:style/Theme.NoTitleBar" >


    <activity
        android:name="com.example.my_app.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>
    <activity android:name=".MyEventsListActivity"></activity>
    <activity android:name=".EventDetail"></activity>

    <activity android:name="com.google.android.gms" />

    <!-- Remove this line once the maps are working -->
    <activity android:name=".MapTest"></activity>

    <!-- Google maps API key -->
    <meta-data
        android:name="com.google.android.maps.v2.API_KEY"
        android:value="xxxxxxxxxx"/>   
</application>

</manifest>

任何人都知道可能发生了什么?谢谢!

编辑:根据一些回复,我应该澄清一些事情。首先,我只使用一台机器。我生成的SHA-1指纹是在我开发的完全相同的机器上生成的,因此没有问题。其次,在我尝试将地图集成到我的应用程序之前,我正在测试的手机工作正常。这就是为什么我怀疑我尝试使用地图的方式与我的手机相冲突。

我想知道的是SHA-1指纹是否对我的手机无效?如果指纹仅对一台机器有效(我相信它是),我的手机是否被视为第二台机器 ???手机通过USB线连接到计算机,我作为虚拟设备目标运行。这有什么问题吗?

感谢所有人的回复。

决议:我认为我想出了这个。我的手机只运行Android 2.3.4(API 10)。由于v2映射在最低限度的API 11上运行,因此我的手机无法被识别。我必须将minSdkVersion更改为10,并添加

到我的应用程序节点。它似乎工作,虽然我仍然没有得到一个地图显示。我有通常的谷歌背景和网格。但至少没有错误,我的应用程序在我的手机上没有再次运行。欢迎任何建议。再次感谢!

2 个答案:

答案 0 :(得分:1)

您创建的API密钥仅适用于该特定计算机。 如果您从其他计算机编译并安装.apk,则地图将不会显示..

答案 1 :(得分:0)

因为您将minSDK更改为10,所以它不起作用的原因可能是因为您使用了错误的对象作为地图,请确保您使用SupportMapFragmentFragmentActivity(对于片段支持)在API级别11之前的操作系统中。)

当然,您需要添加android-support-v4库。

如前所述,请按照我编写的这篇简短的9步博客文章,将Google地图集成到您的应用程序中,如果您想支持低于11的操作系统:

Google Maps API V2