为了增加对我的 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>
但我仍然收到此错误消息。
少了什么东西?