Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to resolve "WARNING: Application does not specify an API level requirement"?

Hello I am writing an android application, but as I do run this application, the following application generates and application doesn't appear on the windows, please help .. !!!! I will appreciate if I get right solution ,,,,,,

like image 746
Veer Avatar asked Jan 25 '11 11:01

Veer


1 Answers

To resolve this warning add

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

to the manifest tag in AndroidManifest.xml. Replace 4 with the lowest number of SDK version you want to support.

like image 195
Axarydax Avatar answered Oct 19 '22 21:10

Axarydax