views:

208

answers:

2

what is maximum size of thick/thin client application(to d/w through OTA) in both Android & Samsung Bada platform ?

+3  A: 

yokks, you need to have a look @ this thread http://stackoverflow.com/questions/3536463/android-application-apk-maximum-size for android

100rabh
thankyou surabh. that's the perfect one to test the application size.
yokks
A: 

If you mean the Android Market by "OTA" which is the most common case since it handles update notifications, etc. - you should know that the apk size limit to upload on the android market is 25 MB. But other than that, I don't know of any limitation, it probably also depends on the device you're targeting.

If you implement your own OTA delivery technique, then of course you don't have this limitation. Also you should know that on Android you can always/mostly break down one application into multiple smaller ones, if your app elements are very modular, in case you have issues with one single apk size.

Mathias Lin