AndroidManifest.xml 中的错误
当我尝试使用此库(com.google.android.maps)时,清单中出现问题
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.hellogooglemaps"
android:versionCode="1"
android:versionName="1.0">
<application android:icon="@drawable/icon" android:label="@string/app_name">
<uses-library android:name="com.google.android.maps" />
<activity android:name=".HelloGoogleMaps" android:label="@string/app_name" android:theme="@android:style/Theme.NoTitleBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
<uses-permission android:name="android.permission.INTERNET" />
</manifest>
I have a problem in the manifest when i try to use this library (com.google.android.maps)
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.hellogooglemaps"
android:versionCode="1"
android:versionName="1.0">
<application android:icon="@drawable/icon" android:label="@string/app_name">
<uses-library android:name="com.google.android.maps" />
<activity android:name=".HelloGoogleMaps" android:label="@string/app_name" android:theme="@android:style/Theme.NoTitleBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
<uses-permission android:name="android.permission.INTERNET" />
</manifest>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
最后,我发现了问题所在。我使用 Google API 作为项目构建目标而不是 Android 2.2。
Finally, i found the problem. i used Google APIs as Project Build Target instead of Android 2.2.
您需要获取 Google API 密钥。检查此链接:http://code.google.com/ android/add-ons/google-apis/mapkey.html
You need to get a Google API Key. Check this link: http://code.google.com/android/add-ons/google-apis/mapkey.html