William Lei
William Lei

Reputation: 68

appcompat_v7.jar is missing

I am a fresh android developer. And when I create a new "Android Application Project", the minimum SDK is API7. The configuration is shown as below: enter image description here

But after configuration, here is a problem that "appcompat_v7.jar" in Android Dependencies is missing. Someone can solve it? enter image description here

Upvotes: 0

Views: 1428

Answers (2)

GrIsHu
GrIsHu

Reputation: 23638

Make sure you have added appcompat_v7 library project in your project's as library. From Properties>Android Tab> Right panel in Add Library

enter image description here

Upvotes: 1

samael
samael

Reputation: 2168

use Gradle (Android Studio and the build-tools is the way to go), then in the build.gradle file specify it as a dependency:

dependencies {
    compile 'com.android.support:appcompat-v7:+'
}

of course you'll need to make sure that you've downloaded all the necessary files in the SDK Manager

Upvotes: 1

Related Questions