android:targetSdkVersion 属性的问题
我有一个在 Android 1.6(api 级别 4)中编译的应用程序,但我需要添加 android:installLocation
属性。我已将这一行放入 AndroidManifest.xml 中:
<uses-sdk android:minSdkVersion="4" android:targetSdkVersion="8"/>
我已将 android:targetSdkVersion
定义为 8,但 android:installLocation
无法正常工作。
I have an application compiled in Android 1.6 (api level 4) but I need to add android:installLocation
attribute. I have put this line in my AndroidManifest.xml:
<uses-sdk android:minSdkVersion="4" android:targetSdkVersion="8"/>
I have defined the android:targetSdkVersion
as 8, but the android:installLocation
doesn't work right.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要针对 Level 8 SDK 进行编译。
在此处的“向后兼容性”部分中查找第 3 点 http://developer.android。 com/guide/appendix/install-location.html
You need to compile against the Level 8 SDK.
Look for point number 3 in the Backwards Compatibility section here http://developer.android.com/guide/appendix/install-location.html