面向 Android 12 及更高年龄段的应用需要为 'android:exported' 指定明确的值,但我有这样的值
Apps targeting Android 12 and higher are required to specify an explicit value for 'android:exported' but I have such value
当我尝试编译 APK 文件时,出现下一个错误:
dove\frontend\android\src\main\AndroidManifest.xml Error: Apps targeting Android 12 and higher are required to specify an explicit value for 'android:exported' when the corresponding component has an intent filter defined.
我有这样的价值,但是AGP看不到。我的价值清单:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.dove.android">
<application
android:name=".DoveApplication"
android:allowBackup="true"
android:fullBackupContent="true"
android:icon="@mipmap/ic_launcher"
android:label="Dove"
android:supportsRtl="true"
android:theme="@style/Theme.Dove">
<activity
android:exported="true"
android:name=".AppActivity"
android:label="Dove"
android:theme="@style/Theme.Dove.NoActionBar">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
</application>
</manifest>
AGP版本:4.2.2
除了降级之外的任何解决方法 targetSdk
?
您需要做的就是在底部面板中打开清单和 select“合并清单”,然后查找添加 activity 而没有此 属性 的依赖项。
在我的例子中,它是来自组合单元测试的 androidx.core.test
。
很可能是因为 react-native 版本。我在 react-native 0.63.4 上遇到了同样的问题,但在 react-native 0.66.4[=10= 上没有错误]
当我尝试编译 APK 文件时,出现下一个错误:
dove\frontend\android\src\main\AndroidManifest.xml Error: Apps targeting Android 12 and higher are required to specify an explicit value for 'android:exported' when the corresponding component has an intent filter defined.
我有这样的价值,但是AGP看不到。我的价值清单:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.dove.android">
<application
android:name=".DoveApplication"
android:allowBackup="true"
android:fullBackupContent="true"
android:icon="@mipmap/ic_launcher"
android:label="Dove"
android:supportsRtl="true"
android:theme="@style/Theme.Dove">
<activity
android:exported="true"
android:name=".AppActivity"
android:label="Dove"
android:theme="@style/Theme.Dove.NoActionBar">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
</application>
</manifest>
AGP版本:4.2.2
除了降级之外的任何解决方法 targetSdk
?
您需要做的就是在底部面板中打开清单和 select“合并清单”,然后查找添加 activity 而没有此 属性 的依赖项。
在我的例子中,它是来自组合单元测试的 androidx.core.test
。
很可能是因为 react-native 版本。我在 react-native 0.63.4 上遇到了同样的问题,但在 react-native 0.66.4[=10= 上没有错误]