谷歌市场上架需要在AndroidManifest.xml中配置
<supports-screens
android:resizeable ="true"
android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="true"
android:xlargeScreens="true"
android:anyDensity="true"
/>
如何在Hbuider云打包也配置这个属性
c***@163.com (作者)
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools"
package="io.dcloud.nativeresouce">
<!--permissions-->
<supports-screens android:resizeable="true" android:smallScreens="true" android:normalScreens="true"
android:largeScreens="true" android:xlargeScreens="true" android:anyDensity="true" />
<application>
<!--meta-data-->
<meta-data android:name="My_Custom_Key" android:value="My_Custom_Value" />
</application>
</manifest>
2024-08-08 15:01
c***@163.com (作者)
这样之后再提交云端打包是否就可以了?
2024-08-08 15:02