tags:

views:

31

answers:

2
+1  Q: 

Use sdk problem

How to set targetsdkversion for 1.5. I developing projects based on eclipse id when I try to set targetSdkVersion in manifest it showing error.

A: 

When you create a new Project in Eclipse there is an option to set the target version for your application. This will also be changeable in a preferences box somewhere (probably the Project menu). It will only show you installed versions however (on mine I only have the option to target 2.1 as I haven't bothered installing any other versions).

Amos
A: 

I use:

<uses-sdk android:minSdkVersion="3" android:targetSdkVersion="8" />

and compile against 1.6. It will give you a warning thought.

Macarse
if i run this application on android 1.5 emulator it is showing error of drawable elements
Aswan
Which error? Please paste some logs.
Macarse