android:exported needs to be explicitly specified for . 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.
如果需要外部调用activity的地方添加android:exported=true,否则false。 一般情况下三方的activity会声明android:exported=true。
tips:如何三方库中有需要做兼容的地方,那么在应用的清单文件中覆盖三方库中的声明,并添加android:exported=true 即可