I have developed an application which it runs on honeycomb. I wonder that can there be problem on Ice Cream Sandwich? What is the backwards compatibilities of ics?
|
|
|
The easiest thing is go try it yourself, ICS is already available in the Android SDK, install it and check if your app still runs. But usually android is pretty nicely backward compatible (there still might be some small differences in behaviour between the versions). |
|||||||||||||
|
|
You might want to look at the API diff report. http://developer.android.com/sdk/api_diff/14/changes.html If your app was built for 3.0, it should run on ICS. It might need a different layout for smaller screens though Thanks Rajdeep |
|||
|
|
|
Android 4.0 devices should be able to run your android 3.x targeted application. But with the new apis introduced in Android 4.0, code designed for Android 4.0 may well not work on Android 3.x. Its not hard to check your app directly. I suggest you download the Android 4.0 SDK (make sure you've got the ARM image too) and try it on the emulator. |
|||
|
|
|
One area that I found to not be backwards compatible is the new res/layout specification based on screen size ( http://developer.android.com/guide/practices/screens_support.html#DeclaringTabletLayouts ). This is a great pity because it is a far saner approach then the old layout-large, layout-xlarge, etc. |
|||
|
|