赞
踩
遇到版本更新出现的问题,应该第一时间去官网看更新动态。
以下是官网的内容。
If the app component includes the LAUNCHER category, set android:exported to true
上面的翻译大概是:
如果你的app组件,存在intent-filter标签,并且有属性,则设置
exported为true
<activity
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
In most other cases, set android:exported to false
上面翻译大概是:
如果不包含属性,则设置exported为false
所以不管你有没有 属性,你都必须设置exported,但如果包含这个属性就必须设置为true,其他则设置为false。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。