【Android】出现 Activity supporting ACTION_VIEW is not set as BROWSABLE 问题

【爱迪】AndroidManifest.xml 这里出现 Activity supporting ACTION_VIEW is not set as BROWSABLE 问题!

 这个错误的意思是:支持ACTION_VIEW的活动未设置为BROWSABLE

解决方法:

添加如下一段代码:

<category android:name="android.intent.category.BROWSABLE"/>

 

参考: https://blog.csdn.net/wqh0830/article/details/88528784

猜你喜欢

转载自www.cnblogs.com/lovedi/p/12364491.html