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

遇到版本更新出现的问题,应该第一时间去官网看更新动态。
以下是官网的内容。
apk在android12设备无法安装(兼容android 12或更高版本)_第1张图片
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。

你可能感兴趣的:(Android,android,java,apk安装,android,12)