Android错误之Application does not specify an API level requirement!

 Application does not specify an API level requirement!

说明你没有设置这个软件的最低兼容版本,在

AndroidManifest.xml中

加入:

<uses-sdk android:minSdkVersion="*"/> 在“*”号位置填上版本号(版本不是1.5/1.6/2.1之类的而是这个数字后面的level)1.6是4.

你可能感兴趣的:(android,api,application)