选择我的android设备时出现此错误。我正在将它用于libgdx的游戏测试。
Android资源链接失败
C:\ Users \ oguzh \ AndroidStudioProjects \ Flying Smurfs \ android \ build \ intermediates \Änstant_run_merged_manıfests \ debug \ processDebugManifest \ instant-run \ AndroidManifest.xml:11:错误:找不到android:appCategory属性。
错误:清单处理失败。
这是我的清单xml:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.oguzhanaygun.flyingsmurfs" >
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:isGame="true"
android:appCategory="game"
android:label="@string/app_name"
android:theme="@style/GdxTheme" >
<activity
android:name="com.oguzhanaygun.flyingsmurfs.AndroidLauncher"
android:label="@string/app_name"
android:screenOrientation="landscape"
android:configChanges="keyboard|keyboardHidden|navigation|orientation|screenSize|screenLayout">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
答案 0 :(得分:1)
将tools:targetApi="o"
添加到application
节点,并定位API级别> = {26
...或在定位API级别<{android:appCategory="game"
时删除26
。