0

I have added the following lines to the manifest.xml and still i could install the .apk in the 10" devices . I want the .apk file to be installed only in the 7" tablet .

<supports-screens
         android:smallScreens="false"
         android:normalScreens="false"
         android:largeScreens="true"
         android:xlargeScreens="false"
         android:requiresSmallestWidthDp="600"
         android:largestWidthLimitDp="700"/>

    <compatible-screens>
        <!--no small size screens -->
        <!--no normal size screens -->
        <!-- all large size screens -->
        <screen android:screenSize="large" android:screenDensity="ldpi" />
        <screen android:screenSize="large" android:screenDensity="mdpi" />
        <screen android:screenSize="large" android:screenDensity="hdpi" />
        <screen android:screenSize="large" android:screenDensity="xhdpi" />
    <!-- no xlarge size screens -->

</compatible-screens>

I don't know where i am going wrong . Thanks in advance .

4

1 回答 1

1

<supports-screen>并且<compatible-screens>只会影响 Google Play 商店的下载(即不兼容的设备不会显示为安装目标)。但是,旁加载 APK 绕过了任何 Google Play 兼容性过滤(因为不涉及 Google Play)。

于 2013-08-26T04:46:27.997 回答