[Android] Why do I get this after uploading app: This application is available to over 0 devices

I’ve uploaded my android build and when filling in the information about application noticed this at the bottom:

http://i.imgur.com/xkW6Q.png

This application is only available to devices with these features, as defined in your application manifest.
This application is available to over 0 devices.

Should I worry about that or is that what everyone gets?

What should I put in build file, is this enough:

[code]
– Supported values for orientation:
– portrait, portraitUpsideDown, landscapeLeft, landscapeRight

settings = {

orientation = {
default = “portrait”,
supported = { “portrait”, }
},

iphone = {
plist = {
CFBundleIconFile = “Icon.png”,
CFBundleIconFiles = {
“Icon.png”,
“Icon@2x.png”,
“Icon-72.png”,
},
UIStatusBarHidden = false,
UIPrerenderedIcon = true, – set to false for “shine” overlay
–UIApplicationExitsOnSuspend = true, – uncomment to quit app on suspend
}
},

–[[
– Android permissions

androidPermissions = {
– “android.permission.INTERNET”,
},

]]–
}
[/code] [import]uid: 13099 topic_id: 27665 reply_id: 327665[/import]

Also what are standard settings that should be added to build file when it comes to android? [import]uid: 13099 topic_id: 27665 reply_id: 112234[/import]

Just an update.

After publishing the application number updated to ~890 phones.

Now if only coronalabs allowed us to customize “read phone state and identity” and turn it off so we do not have to mess with unpacking apk and packing it again after corona has finished building it.

Also android build guide in the docs should be updated with more information about different settings for android. [import]uid: 13099 topic_id: 27665 reply_id: 112470[/import]