- 所用环境:Android studio 4.2.2,Nexus 5X API 27
- Android Studio启动app时报错:
Manifest merger failed : Apps targeting Android 12 and higher are required to specify an explicit valuefor `android:exported` when the corresponding component has an intent filter defined
- 解决办法:
在AndroidManifest.xml文件中给activity添加android:exported=“flase”,例如:
- 将项目目录改到Android
- 打开AndroidManifest.xml文件
3.添加代码如下:
<activity android:name=".MainActivity" android:exported="flase">
快捷键Shift+F10运行成功