Apps targeting Android 12 and higher are required to specify an explicit value for `android:exported`
时间: 2024-06-09 07:10:17 浏览: 157
Targeting Android
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. This requirement is mentioned in the Android documentation, specifically in the section on the `<activity>` element of the manifest file. If you fail to specify the `android:exported` attribute with an explicit value, your app will not be able to be installed on devices running Android 12 or higher.
阅读全文