Reputation: 9368
I'm trying out the new Android Studio and it is not recognizing the current API level
My AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.wiproeag.smartbuy"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="11"
android:targetSdkVersion="17" />
...
</manifest>
Any ideas?
Upvotes: 3
Views: 1220
Reputation: 6778
A possible workaround for this is to include the Android compatibility libraries. Try this one first and get back with the results. I'va also encountered such a problem and it worked for me.
Upvotes: 1