向谷歌播放提交多个apk应用程序



我有几个用于不同屏幕和密度的apk。在清单中,我设置了这些限制:

<compatible-screens>
   <screen android:screenSize="normal" android:screenDensity="hdpi" />
   <screen android:screenSize="large" android:screenDensity="mdpi" />
</compatible-screens>
<supports-screens android:smallScreens="false" android:largeScreens="true" adroid:normalScreens="true" android:xlargeScreens="false"/>

但是在开发人员控制台中,我无法选择每个apk支持的设备,即支持的设备列表:

Supported Devices [Learn More]
This application is only available to devices with these features, as defined in your application manifest.
Screen densities: NORMAL,HDPI LARGE,MDPI
Required device features
android.hardware.touchscreen
This application is available to over 0 devices.

那么如何自定义 apk 分发呢?

好的,如果有人会像我一样感到困惑 - 只需单击apk上的"激活"。

最新更新