只是一个简单的XMl文件
<?xml version="1.0" enCoding="utf-8"?><manifest xmlns:androID="http://schemas.androID.com/apk/res/androID" package="com.example" androID:versionCode="1" androID:versionname="1.0" androID:installLocation="auto" > <application androID:label="@string/app_name"> <activity androID:name=".MyActivity" androID:label="@string/app_name"> <intent-filter> <action androID:name="androID.intent.action.MAIN" /> <category androID:name="androID.intent.category.LAUNCHER" /> </intent-filter> </activity> </application></manifest>
然而,我收到一个错误
“No resource IDentifIEr found for attribute ‘installLocation’ in
package ‘androID'”
为什么会这样?
编辑
这似乎是IntelliJ的一个问题.至少是我的.这是项目结构的屏幕.我点击了AndroID 2.3.3 SDK并更改了其构建目标.我在属性之后做了这个
<uses-sdk androID:minSdkVersion="4" androID:targetSdkVersion="8"/>
没有做到这一点.有任何想法吗?
解决方法:
您必须指定androID:minSdkVersion和androID:targetSdkVersion并使用至少API 8编译您的APK.例如:
.... <uses-sdk androID:minSdkVersion="7" androID:targetSdkVersion="8" /></manifest>
这将使用API编译APK.运行Froyo或更高版本的手机将能够使用该功能. Eclair和旧版本不会(在这种情况下,只有Eclair).
发生错误的原因是您尝试使用API 7或更早版本编译项目,并在API 8上添加了installLocation.
总结以上是内存溢出为你收集整理的android – 为什么我不能在Manifest文件中使用属性installLocation?全部内容,希望文章能够帮你解决android – 为什么我不能在Manifest文件中使用属性installLocation?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)