harsh-agarwal / andar

Automatically exported from code.google.com/p/andar
0 stars 0 forks source link

AndAR and AndAR model viewer not visible in the market for QVGA devices #9

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
Hi,

The applications AndAR and AndAR model viewer are not visible on the market. 

After reading a little on the android documentation I read the market filters 
for QVGA devices all  
applications that explicitely do not declare that are compatible with small and 
low resolutions.

They say that should be necesray to modify the AndroidManifest.xml to declare 
explicitely the 
compatibility with QVGA devices:

<supports-screens android:smallScreens=["true" | "false"] 
                  android:normalScreens=["true" | "false"] 
                  android:largeScreens=["true" | "false"] 
                  android:anyDensity=["true" | "false"] />

I cannot test it on my eclipse because I have problems to mount  the project, 
to make work the 
source code 

Original issue reported on code.google.com by alber...@gmail.com on 26 Apr 2010 at 10:09

GoogleCodeExporter commented 8 years ago
thanks for that information, I will create an apk containing that information.

Original comment by tdomhan on 27 Apr 2010 at 3:45

GoogleCodeExporter commented 8 years ago
I published a version containing this tag to the market. do you find the app in 
the 
market, now?
is it working correctly?

Original comment by tdomhan on 27 Apr 2010 at 4:03

GoogleCodeExporter commented 8 years ago
No, sorry but I still cannot see the application on the market...

If you tried then with: 

  <supports-screens
          android:largeScreens="true"
          android:normalScreens="true"
          android:smallScreens="true"
          android:anyDensity="true" />

seems something more is needed... I will try to investigate it!

Original comment by alber...@gmail.com on 27 Apr 2010 at 10:37

GoogleCodeExporter commented 8 years ago
have you found out anything else?

Original comment by tdomhan on 23 May 2010 at 2:30

GoogleCodeExporter commented 8 years ago
I am trying to download too, but the link is not found to Samsung Galaxy 5 
(QVGA resolution too).

Original comment by llager...@gmail.com on 3 Jan 2011 at 1:33

GoogleCodeExporter commented 8 years ago
At http://developer.android.com/google/play/filters.html : "For applications 
that set either the android: minSdkVersion or android: targetSdkVersion to 3 or 
lower, the <supports-screens> element itself is undefined and no attributes are 
available. In this case, Google Play assumes that the application is designed 
for normal-size screens and shows the application to devices that have normal 
or larger screens." .  minSDKVersion is to 3.  So, it sounds like Google Play 
will filter this application on our small-screen devices.

However, the next paragraph: "When the either the android: minSdkVersion or 
android: targetSdkVersion is set to 4 or higher, the default for all attributes 
is "true". In this way, the application is considered to support all screen 
sizes by default.", and a couple paragraphs ahead: "Example 2: The manifest 
declares <uses-sdk android:minSdkVersion="3" android:targetSdkVersion="4"> and 
does not include a <supports-screens> element. Result: Google Play will show 
the app to users on all devices, unless other filters apply."

Hence, AndAR should not include a <supports-screens> element, and if the screen 
size is still filtered on, it is a bug in google play which can probably be 
worked around by setting minSdkVersion="4".

Original comment by gmk...@gmail.com on 19 Jul 2013 at 3:49