shyam
shyam

Reputation: 9368

Android Studio API level error

I'm trying out the new Android Studio and it is not recognizing the current API level

Android studio API level error

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

Answers (1)

g00dy
g00dy

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

Related Questions