Set standard scaling for all non-native resolutions

It would be a nice feature to define a native resolution the app is made for – say 1024x768 – and then define a standard dynamic content scaling fallback for all other non-defined resolutions, say “letterbox”.
Right now I have an iPad app I want to port to Android and this would prevent me from having to define all the different current resolutions, say for Xoom and Galaxy Tab I already got:

application = {

 content = { 
 width = 768,
 height = 1024, 
 scale = "none"
 },

 content =
 {
 width = 800,
 height = 1280,
 scale = "letterbox"
 },

 content =
 {
 width = 600,
 height = 1024,
 scale = "letterbox"
 }

}

Since I don’t know future device resolution in the Android market, it would also probably mean I would need to resubmit my app whenever a new device resolution comes out and I still want to have dynamic scaling.
If this is already possible or I’m somehow misunderstanding how this works, my excuses!

Thanks! [import]uid: 10284 topic_id: 11154 reply_id: 311154[/import]

I guess I understood the config file wrong and scale means “scale for other resolutions as the one defined”. [import]uid: 10284 topic_id: 11154 reply_id: 41157[/import]