I am new in android, Please help me .... I build an application in android 2.2platform but when i test it on an emulator of version 2.3.3 and higher it is not working . Is there any problem of emulators or I have to build the same application with the 2.3.3 platform .....???

link|improve this question

0% accept rate
Can you paste the log? – oriolpons Dec 7 '11 at 10:18
@oriolpons : Sir I am running the application from installing the .apk file in emulator so can't paste log – stiffler Dec 7 '11 at 10:30
feedback

2 Answers

Make sure that your AndroidManifest.xml has a line like the following:

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

This says, essentially, "I would like to target 2.2 devices, but the application should run on any devices up to 2.3.4."

You can get more information about uses-sdk at http://developer.android.com/guide/topics/manifest/uses-sdk-element.html

link|improve this answer
feedback

Please check your Manifest file in that is there any code like ? If yes then remove that line and then test it or set that at which level you want to run your application.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.