My AndroidManifest.xml looks like this:
<manifest ...>
<application ...>
...
</application>
<uses-sdk ... />
</manifest>
which was fine in earlier versions of Eclipse but since I upgraded I get this warning:
<uses-sdk> tag appears after <application> tag
What’s best practice here?
The warning is explained by lint. It’s nothing serious, but rather a “better safe than sorry” policy.
Quoting lint: