Questions tagged [android-multiple-apk]

14 questions
3
votes
1 answer

How to restrict apks to phones and tablets using multiple apk support on google play store?

We have two apks and we want to restrict one apk only to mobile phones and the other one only to tablets on google play store. We have used "support-screen" attribute for this in AndroidManifest.xml file and uploaded the apk using advance mode on…
1
vote
1 answer

Android how to support all native platforms in Google Play store always showing 138

I am trying to release an APK for internal testing. I don't know why it is only showing supported devices as 138 only. How to fix it to support all the devices. This is my app-level build.gradle android { compileSdkVersion 29 …
Shailendra Madda
  • 20,649
  • 15
  • 100
  • 138
1
vote
2 answers

Android Wear, TV, auto multiple APKs release

I have an android app on Google Play, it requires a low API level. I wish to provide versions for TV, auto and wear 2.0. This requires a higher API level. The first question is should I release a different APK for each or two APKs is enough? (One…
1
vote
2 answers

How to manage code for different design to support all devices

I have an app and that's already been made for large devices i.e 10 inch tablets and kiosk. I made the same design for the mobile phones but that was not looking good ,so I thought to move the mobile device to material design and the rest of the…
Umair
  • 6,366
  • 15
  • 42
  • 50
1
vote
1 answer

Different APKs for phone and tablet

I have a large number of drawables in my app. If I use the same apk for both phones and tablets the apk size would be too large. Hence I am trying to create two different apks - one for phones and one for tablets. I am doing this on android studio…
DevAndroid
  • 1,150
  • 1
  • 10
  • 23
1
vote
0 answers

Wrong apk gets downloaded in Multiple apk scenario in android

I have shipped an android application on Playstore with multiple apks.In one apk's manifest I have defined this-
akg
  • 670
  • 10
  • 30
1
vote
1 answer

Exporting signed apk for different architectures

I have a native library that my project uses(for four architectures). (Note, that I did not compile them , I just got them from a third-party). Exporting a signed apk right now is a pain. I do the following: Delete 3 of the 4 architectures from the…
harveyslash
  • 5,906
  • 12
  • 58
  • 111
0
votes
0 answers

This APK will not be served to any users because it is completely shadowed by one or more APKs with higher version codes

[][1] { android { compileSdkVersion 31 buildToolsVersion "30.0.3" defaultConfig { applicationId "com.example.test" minSdkVersion 19 targetSdkVersion 30 versionCode 64 if (taggedRelease == null) { versionName "1.4.1-SNAPSHOT" } else { versionName =…
0
votes
1 answer

How to know app bundle (.aab) config after at run time?

bundle { density { enableSplit true } language { enableSplit true } abi { enableSplit true } } We are going to upload .aab app bundle on Google Play Store. And after…
0
votes
1 answer

Android: Multiple APKs for different versions of OpenGL ES

I'm making a game in Unity for mobile.. The artist really really wants to use Linear colour-space instead of gamma colour-space.. Linear colorspace requires openGL ES 3. The problem is that 21% of Android devices only support openGL ES 2. So I could…
0
votes
1 answer

Restrict android APKs to only Phone using support screen

I'm working on an application where I want to have two different APK's for Phone and Tablet. How do I restrict apk in mainifest file using support screen. I'm very confused with new attributes like android:requiresSmallestWidthDp and…
0
votes
0 answers

Uploading multiple apk in google play

I was uploading two apks - one for devices with api >=9 and <18 and the other one >=18. When I download app from android 5.0 there is no problem, but when I try download app from android 4.4.1 Google Play show message: "Your device is not consisted…
0
votes
1 answer

tag in Multiple apk scenario in android

In my android application(android:minSdkVersion="13",android:targetSdkVersion="19") I am creating multiple apks on the basis screen size compatability. In the manifest of apk which supports large devices I have given -
akg
  • 670
  • 10
  • 30
0
votes
1 answer

How to name different versionName and versionCode for multiple apks of the same application?

I have one published application on Google play with VersionName=1.0 and VersionCode=1.Now I want to upload a different apk for the same application which will support only tablets. Rules on developer android site say that different apks must have…
akg
  • 670
  • 10
  • 30