I have a TabActivity-based
project which I want to publish to Android 4.0+ devices as well. When I load it with SDK 4.0+ library, I receive a warning "android.app.TabActivity" is deprecated
.
We all know that this is due to the fact that fragments are advised for any 3.0+ app, thus making TabActivity
deprecated.
Now, is it smart simply to include Android 4.0+ devices to use this app? What are the hidden bombs/bugs?
I am asking this as moving to fragments would require a complete app redesign and 2 months of work.