naleshmadur
naleshmadur

Reputation: 95

when application run on emulator it stays blank and i am using android emulator 2.1 api level 7

Upvotes: 0

Views: 454

Answers (2)

NovusMobile
NovusMobile

Reputation: 1823

WARNING: Application does not specify an API level requirement! - please check your manifest file you didn't write the solution for that like:

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

It will use to target particular Android version (API Level ) as per your application requirement.

Upvotes: 1

Ghost
Ghost

Reputation: 3966

Set the proper minSdkVersion for your app in the

<uses-sdk android:minSdkVersion="integer"/> 

tag of your manifest, where "integer" is the API level of your app.

Read this for more details.

Upvotes: 0

Related Questions