android app 开机自启动
很简单,在 AndroidManifest
中添加
<category android:name="android.intent.category.HOME" />
<category android:name="android.intent.category.DEFAULT" />
然后开机后,选择这个 app 替换换来的 lunch,然后重启即可。
参考:
https://blog.csdn.net/qq_38001118/article/details/80675646
https://zhuanlan.zhihu.com/p/40527964