I\'m using Android Studio with an external Android SDK. I have installed the support library and the support repository. The support repository is in:
~/Deve
Make sure you have the latest version of Android Studio. The support library is included by default when you create new projects. If you are adding the Support Library to a project that doesn't have it, then you just need to add a single line to your app module's build.gradle file, and then sync gradle.
build.gradle
dependencies {
...
implementation 'com.android.support:appcompat-v7:27.1.1'
}
It should just be that easy, though there may be some things to note:
27.1.1
numbers that I have here to whatever it tells you to. You can also manually check what the latest revision is if you want to.implementation
keyword replaces compile
that was used in Android Studio 2.x. (What's the difference?)constraint-layout
or recyclerview
).