Novice coder
Novice coder

Reputation: 163

How do I install android libraries with Android Studio?

I'm new to Android app development, and I want to install this library with my app.

I'm using Android Studio, but I can't find the right option to let me install the library.

What do I do?

Upvotes: 0

Views: 87

Answers (2)

Slonorib
Slonorib

Reputation: 89

You need to read about Gradle. Hope it'll help you

Gradle tutorial

Upvotes: 1

J.Vassallo
J.Vassallo

Reputation: 2292

You just insert the following :

compile 'com.klinkerapps:android-smsmms:+'

In your app.gradle / dependencies

Upvotes: 1

Related Questions