Questions tagged [multiple-apk]

33 questions
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
0 answers

Multiple APK is not working for x86 architecture

I have built multiple APK for publishing on Google Play. I built with in Unity (ARMv7 and x86). It built success and has appear on Google Play. I have tested it with ARMv7 device, it's good. But for x86 device (I use Zenphone 2), why can this device…
Huy Nguyen
  • 1,032
  • 14
  • 38
0
votes
1 answer

Replace Multiple apk with single apk Google Play Console

I have published my app using multiple apk's concept (armeabi, armeabi-v7, x86) Now i'm trying to publish update version of app but using ONE apk instead multiple. Do users with armeabi, armeabi-v7, x86 apk's get their updates?
Ivanov Maksim
  • 3,460
  • 1
  • 11
  • 10
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
2 answers

Google Play error "Version XXXX is not served to any device configuration"

I'm having the following error: Version 102001019 is not served to any device configuration: all devices all devices that might receive version 102001019 would receive version 103001019. The problem appeared after I decided to separate APKs…
0
votes
1 answer

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

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…
Trideep
  • 396
  • 1
  • 2
  • 15
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
0
votes
3 answers

Android multiple apk, download the wrong version

I have developed a cross-platform app with cocos2d-x v3, the iOS version it worked very good, and when i ported it to android , i had size problem( apk >50 MB), so i decided to use Multiples apks , so i made 2 seperate apk's, with different version…
user3895008
  • 31
  • 1
  • 7
0
votes
1 answer

Why multiple apks created wth Adobe air 14 in flash professional having issues?

I am having multiple apks created wth Adobe air 14 in flash professional having issues when submitting to play store. My research from http://developer.android.com/training/multiple-apks/screensize.html here says, version code needs to be modified…
0
votes
0 answers

How do they publish 50mb+ apk

I have seen google apk expansion files guide (about 2GB main and 2GB patch). However many apps are not using this stuff. There is no downloading started after application 1st run, and at the same moment this applications are larger than 50mb. For…
careful7j
  • 799
  • 9
  • 20
0
votes
1 answer

Solving 50Mb per app issue by having both multiple apks and an expansion file

I'm going to publish my app into google developer's console, but discovered that there is an app limit of 50MB, and to solve the issue I have 2 options: 1) expansion files and 2) multiple apks So I tried to use the second option and distributed the…
Nazerke
  • 2,098
  • 7
  • 37
  • 57
0
votes
1 answer

Which is a better strategy for monetizing in game assets, In-App purchases or multiple APK delivery?

I know Google Play has an excellent system for In-App purchasing. However, my thoughts are that the general public pigeon holes games with In-App purchasing strategies into a "taboo" list. Also, I'm a one person app developer (like most of us)…
0
votes
1 answer

Multiple APK support for phone and tablet android

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:
Mihir Shah
  • 1,799
  • 3
  • 29
  • 49
0
votes
2 answers

Overriding just the onCreate() method of a class in Android library

I have 3 projects: Android library Lite version of app Pro version of app I want to override just the onCreate() method of a class in the Android library. Is there a way to do this? I have been able to successfully override a whole class but I…
Matt
  • 3,882
  • 14
  • 46
  • 89
0
votes
1 answer

How to make lite/pro versions of app function slightly different from the referenced library

Right now I have 3 projects: Library with all my code Pro empty shell Lite empty shell I need to be able to do four things: Change an int in library based on if user has pro or lite version Change a long in library based on if user has pro or…
Matt
  • 3,882
  • 14
  • 46
  • 89