multiple-apk

Generating Multiple Apk according to the Native ABI

给你一囗甜甜゛ 提交于 2019-12-24 08:03:17
问题 I am building release apk based on the ABI because of apk size to publish on Play store . So I started apk building for ABI = armeabi-v7a then building ABI = x86 and ABI = areambi so my gradle look like this app gradle android { compileSdkVersion 26 buildToolsVersion "26.0.1" defaultConfig { applicationId "com.package" minSdkVersion 18 targetSdkVersion 26 versionCode 1 versionName "1.0" multiDexEnabled true ndk { abiFilters "armeabi-v7a" } } buildTypes { release { minifyEnabled false

Google Play showing Nexus,Samsung and Motorola and some other devices as unsupported

吃可爱长大的小学妹 提交于 2019-12-12 05:28:31
问题 I tried uploading Multiple Apk in google play store, but it shows around 3000 devices in the unsupported list which include All Nexus and Moto Devices, and few Samsung high end devices. Please suggest me some options to include these devices. Thanks in Advance. Moto devices: EDIT: Samsung Devices: Nexus Devices: Phone Manifest: ... <compatible-screens> <screen android:screenDensity="ldpi" android:screenSize="small" /> <screen android:screenDensity="mdpi" android:screenSize="small" /> <screen

Multiple APK support for phone and tablet android

浪尽此生 提交于 2019-12-12 03:09:33
问题 I have 2 APKs with same package name. I want to upload 1 apk to support for android phone only(min sdk version 8) and different apk to support for tablet only(min sdk version 11). for phone I have declared below code in manifest: <supports-screens android:smallScreens="true" android:normalScreens="true" android:largeScreens="true" android:xlargeScreens="false" android:resizeable="true" android:anyDensity="true"/> And for tablet: <supports-screens android:largeScreens="true" android