Supported Screen manifest android

Google play not ‘view’ tag supported screen in android manifest made at the Corona SDK build 840. Google ‘says’ that the application is designed for screens of small-xlarge, although in the build.settings is written to support only small and normal size.

build.settings file:

settings =  
{  
 android =  
 {  
 supportsScreens =  
 {  
 resizeable = false,  
 smallScreens = true,  
 normalScreens = true,  
 largeScreens = false,  
 xlargeScreens = false,  
 }  
 },  
  
 iphone =  
 {  
 plist =  
 {  
 UIAppFonts =   
 {  
 "Mail Ray Stuff.ttf"  
 },  
 CFBundleIconFile = "Icon.png",  
 CFBundleIconFiles = {  
 "Icon.png",   
 "Icon@2x.png",   
 "Icon-72.png",   
 },   
 },  
 },   
}  

decoded AndroidManifest.xml

<supports-screens> android:smallScreens="true"<br> android:normalScreens="true"<br> android:largeScreens="false"<br> android:resizeable="false"<br> android:xlargeScreens="false"<br> &gt;<br></supports-screens>  

but when loaded into Google play wrote, which supports all sizes
http://clip2net.com/s/281fT

what am I doing wrong? [import]uid: 136777 topic_id: 28756 reply_id: 328756[/import]

Remove the “resizable” setting. I think that is what’s screwing it up. Besides, that setting has been deprecated by Google and they recommend that you do not use it.

http://developer.android.com/guide/topics/manifest/supports-screens-element.html#resizeable
[import]uid: 32256 topic_id: 28756 reply_id: 115948[/import]

From this nothing has changed … need another solution [import]uid: 136777 topic_id: 28756 reply_id: 116006[/import]

I think you need to contact Google’s tech-support group then, because I don’t think the mistake is on our side. We’re following what is documented on the official Android developer website, linked below. And you have already verified that the AndroidManifest.xml file contains the needed settings.

http://developer.android.com/guide/topics/manifest/supports-screens-element.html
[import]uid: 32256 topic_id: 28756 reply_id: 116090[/import]

Will Corona allows to use compatible-screens

Will Corona allows to use compatible-screens