gpt4 book ai didi

Android+Maven "No resource identifier found for attribute ' installLocation' in package 'android'”

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:29:55 26 4
gpt4 key购买 nike

为了向我的 android 应用添加对 installLocation 的支持,我在我的 IDE (IntelliJ) 中将我的 android 级别从 7 提高到 8。 Android 应用程序从 IntelliJ 构建良好。

虽然我们使用 Maven,但从 Maven 编译失败。

[ERROR] C:\dev\svnlocal\5x\android\AndroidManifest.xml:3: error: No resource identifier found for attribute 'installLocation' in package 'android'
[ERROR] Error when generating sources.

我也添加了

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

我一直在努力

No resource identifier found for attribute 'installLocation' in package 'android'

我改变了我的依赖

<dependency>
<groupId>android</groupId>
<artifactId>android</artifactId>
<version>2.1_r1</version>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>com.google.android</groupId>
<artifactId>android</artifactId>
<version>2.2.1</version>
<scope>provided</scope>
</dependency>

但我仍然收到此错误消息。

缺少什么?

最佳答案

mvn package -X我可以看到它是用 android-sdk-windows/platforms/android-7 编译的而不是 android-8 .

终于查到了

<plugins>
<plugin>
<groupId>com.jayway.maven.plugins.android.generation2</groupId>
<artifactId>maven-android-plugin</artifactId>
...
<sdk>
<platform>7</platform>
</sdk>

在哪里platform应该是 <platform>8</platform>

关于Android+Maven "No resource identifier found for attribute ' installLocation' in package 'android'”,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5406490/

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