c***@163.com
c***@163.com
  • 发布:2024-08-08 11:17
  • 更新:2024-08-08 11:21
  • 阅读:75

云打包android时候如何配置supports-screens

分类:uni-app

谷歌市场上架需要在AndroidManifest.xml中配置
<supports-screens
android:resizeable ="true"
android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="true"
android:xlargeScreens="true"
android:anyDensity="true"
/>

如何在Hbuider云打包也配置这个属性

2024-08-08 11:17 负责人:无 分享
已邀请:
DCloud_UNI_yuhe
  • 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

要回复问题请先登录注册