安卓学习专栏——安卓报错As of Android 12, android:exported must be set; use true to make the activity availab

步骤

系列文章

提示:转到安卓学习专栏,观看更多内容!
点我直达–>安卓学习专栏


前言

报错:As of Android 12, android:exported must be set; use true to make the activity available to other apps, and false otherwise. For launcher activities, this should be set to true.


1.报错效果

安卓学习专栏——安卓报错As of Android 12, android:exported must be set; use true to make the activity availab


2.api解析

安卓sdk版本31新增了新特性。
android:exported 是Android中的四大组件 Activity,Service,Provider,Receiver 四大组件中都会有的一个属性。
比如说android:exported在AndroidManifest.xml下的<application标签中默认值为true,且这个参数不可以缺省(必须要写!很多老版本的源码复制到新版android studio上运行必须要加)

android:exported=“true“

在Activity中该属性用来标示:当前Activity是否可以被另一个Application的组件启动:true允许被启动;false不允许被启动。
作用是:是否支持其它应用调用当前组件。


3.解决方法

根据你的需要——
加上

android:exported=“true“

或是加上

android:exported=“false“

安卓学习专栏——安卓报错As of Android 12, android:exported must be set; use true to make the activity availab


附录.参考资料

《第一行代码》


下载资源


总结

大家喜欢的话,给个

上一篇:JavaScript之严格模式详述


下一篇:PCL文件转换PCD转PLY