Android Market - This application is available to over 0 devices? Android Market - This application is available to over 0 devices? android android

Android Market - This application is available to over 0 devices?


Probably your uploaded APK file is not active. You can check this in the APK tab and switch to "Advanced mode". Here you should have 2 categories, "Active" and "Inactive".

Your file is probably in the Inactive category and you can change it by clicking the Activate link that should be behind it.

Hope my translations are correct as my Market account is in Dutch :)


I had a similar problem, I explained before but a moderator deleted it.

My app after an update had was available for 0 devices.

Anyway I found the solution for my case, so you can check if it works for you as well.

my mistake was that I included .jar files in order to add some external libraries and not the respective external class folders. When I removed the .jar files and I just added the class folder then devices became over 700 again.

for example I had the facebook API (an old one, not the current) and I had created a jar file out of it in order to include it like this in my app. So when I removed the jar files and added the Facebook API projecy (Project Properties -> Java Build Path -> Projects -> Add..., the app was OK for the android market.

Hope I helped you!


For the records, I've found that one significant change that solved my case. Full explanation is at this post on Android Market Product Group.

Quick answer is remove the following uses-feature nodes from your manifest if present:

<uses-feature    android:name="android.hardware.touchscreen"    android:required="false" /><uses-feature    android:name="android.hardware.faketouch" />