gpt4 book ai didi

android - 为什么我不能在 Manifest 文件中使用属性 installLocation?

转载 作者:太空宇宙 更新时间:2023-11-03 12:12:01 26 4
gpt4 key购买 nike

只是一个简单的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"/>

没有成功。有任何想法吗?

enter image description here

最佳答案

您必须指定 android:minSdkVersionandroid:targetSdkVersion 并至少使用 API 8 编译您的 APK。例如:

....
<uses-sdk android:minSdkVersion="7" android:targetSdkVersion="8" />
</manifest>

这将使用 API 8 编译 APK。运行 Froyo 或更高版本的手机将能够使用该功能。 Eclair 和旧版本不会(在这种情况下,只有 Eclair)。

发生错误是因为您尝试使用 API 7 或更早版本编译项目,并且 installLocation 已添加到 API 8。

enter image description here

关于android - 为什么我不能在 Manifest 文件中使用属性 installLocation?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7148296/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com