Hi!
I need to add the compatible-screens tag in my Android manifest. As far as I know, only the supportsScreens tag is available in the Corona build settings. As I need to specify the screen density in order to build multiple apks for multiple densities, I was wondering if I could add the compatible-screens tag using the manifestChildElements tag. Something like:
android = { manifestChildElements = { -- Array of strings [[\<compatible-screens \<screen android:screenSize="small" android:screenDensity="ldpi" /\> \<screen android:screenSize="small" android:screenDensity="mdpi" /\> /\>]], }, },
Would that be valid?
Br,
Cleverson