I finally figured out that those devices have the x86 architecture and obviously they can’t run crosswalk compiled for ARM.
I know that i can compile one APK with both architectures, but the size of the package is around 60MB and this is unacceptable for me.
I read also in the store can exists multiple apks but i really don’t know how to say: “This package is ONLY for ARM” and/or “This package is ONLY for x86”.
Thank you @stivek, but i read that the apk must have a different code version number and different API Level target. There are for example devices with API Level 22 both x86 and ARM. At this point i’m afraid that i’m missing something…
There are some things to take care of, for example the versionCode is true that can be the same but when you upload the APK google play adds a number at the end of versionCode for avoid conflicts, also you must know that the armeabi-v7 can be download by all devices, so when you have to submit another version of your app is better to first upload the armeabi-v7 and after the x86 version because x86 devices can run both and google play warns you that those devices always download the apk with highest versionCode. So you if you upload x86 for last you are sure that versionCode is the highest and the apk will be available only x86 devices.
PS: I spend a day on this only because our client have a damned asus, otherwise i would ignore this mess…
How do you manage those two apks, if you were to work without Google Play. How do you manage these apks from your company’s servers. Giving links for both processors wouldn’t be user friendly. What do you suggest?
Uhm, i never published an app outside Google Play
Anyway maybe you can control the browser user agent and serve the correct APK. x86 devices are very few (for now) and i think is trivial to filter only them.
and I have this message when uploading x86
"Some devices are eligible to run multiple APKs. In such a scenario, the device will receive the APK with the higher version code."
I am trying to do the same (using Crosswalk 1.7.2). I upload and publish the armv7 apk first on my beta channel. However after I upload the x86 apk file to beta, the confirmation dialog says that the armv7 will be archived, so I cancelled the operation. Is that expected behavior?