Reputation: 68
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:
But after configuration, here is a problem that "appcompat_v7.jar" in Android Dependencies is missing. Someone can solve it?
Upvotes: 0
Views: 1428
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
Upvotes: 1
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