Chapter_10_Earthquake_Part_1
When the manifest has android:minSdkVersion="11" as suggested in the book,
the application will not run on a target with API 11 (v3.0), as methods Tab listTab.setContentDescription and FragmentTransaction ft.attach(fragment) and .detach(fragment) are from API 14 and higher.
Is there an easy way to downgrade the code here for API 11?
|