A website hosts only android 1.6 platform developed applications.. What changes should I make to my project so that it runs as android 1.6 one? Would any change of minSDK from 8 to 4 suffice?
views:
56answers:
2
+1
A:
Use:
<uses-sdk android:minSdkVersion="4" android:targetSdkVersion="8" />
Macarse
2010-07-12 20:43:57
A:
If you are not using newer features than what 1.6 supports, you will just have to change the minSdkVersion
on your AndroidManifest.xml
file. On the other hand, if you are using specific Android 2.2 features like using match_parent
instead of fill_parent
on your XML layouts, then you will have to rewrite those snippets of code.
Cristian
2010-07-12 20:45:26