当前位置:   article > 正文

apk在android12设备无法安装(兼容android 12或更高版本)_修改apk兼容安卓版本

修改apk兼容安卓版本

遇到版本更新出现的问题,应该第一时间去官网看更新动态。
以下是官网的内容。
在这里插入图片描述
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>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

In most other cases, set android:exported to false
上面翻译大概是:
如果不包含属性,则设置exported为false
所以不管你有没有 属性,你都必须设置exported,但如果包含这个属性就必须设置为true,其他则设置为false。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/盐析白兔/article/detail/253031
推荐阅读
相关标签
  

闽ICP备14008679号