tags:

views:

56

answers:

2

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?

+1  A: 

Use:

<uses-sdk android:minSdkVersion="4" android:targetSdkVersion="8" />
Macarse
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