Manoj
Manoj

Reputation: 3997

How to add a jar in External Libraries in Android Studio?

I am new to Android Studio.
How can I add a few jar files in the External Libraries below the < JDK > folder?

enter image description here

Upvotes: 255

Views: 424155

Answers (17)

Haseeb Hassan Asif
Haseeb Hassan Asif

Reputation: 915

For build.gradle.kts use the following format. while the rest of the process is same as described in other answers which is to either add libs folder to your module(app) folder and use the following or add complete path to your files in the following

implementation (fileTree("libs") { include("*.jar") })
implementation (files("libs/opus.aar") )

Upvotes: 1

Ga&#235;tan
Ga&#235;tan

Reputation: 12572

Put your JAR in app/libs, and in app/build.gradle add in the dependencies section:

implementation fileTree(dir: 'libs', include: ['*.jar'])

Upvotes: 112

Enamul Haque
Enamul Haque

Reputation: 5063

In Android Studio version 3.0 or more I have used bellow like :

  1. Create libs to the app directory if not exist folder like
  • Set Project view in upper left corner
  • Go to project
  • Go to app
  • click on apps->New->Directory
  • name the folder libs
  • paste the jar to the libs folder
  • directory will look like bellow image

enter image description here

  1. In build.gradle add these lines

    // Add this line if was not added before.
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    
    implementation files('libs/com.ibm.icu_3.4.4.1.jar')
    

Upvotes: 18

yoAlex5
yoAlex5

Reputation: 34461

Manually:

  1. Add libs folder in your project(Where build.gradle is located). E.g. app
  2. Move .jar into libs
  3. Add implementation files('libs/<name>.jar') into build.gradle. It is the same as UI Add as library do

Upvotes: 1

mamadshr
mamadshr

Reputation: 81

  1. Create libs folder under app folder and copy jar file into it.
  2. Add following line to dependcies in app build.gradle file:
implementation fileTree(include: '*.jar', dir: 'libs')

Upvotes: 4

capt.swag
capt.swag

Reputation: 10661

A late answer, although I thought of giving an in-depth answer to this question. This method is suitable for Android Studio 1.0.0 and above.


STEPS


  1. First switch your folder structure from Android to Project.

enter image description here

  1. Now search for the libs folder inside the app folder.

enter image description here

  1. Once you have pasted the .jar file inside libs folder. Right click on the jar file and at end click on Add as library. This will take care of adding compile files('libs/library_name.jar') in build.gradle [You don't have to manually enter this in your build file].

enter image description here

Now you can start using the library in your project.

Upvotes: 453

Mohammad Farahi
Mohammad Farahi

Reputation: 1066

Create "libs" folder in app directory copy your jar file in libs folder right click on your jar file in Android Studio and Add As library... Then open build.gradle and add this:

dependencies {
    implementation files('libs/your jar file.jar')
}

Upvotes: 58

Shahid Hussain
Shahid Hussain

Reputation: 1799

Please provide the jar file location in build.gradle

implementation fileTree(dir: '<DirName>', include: ['*.jar'])

Example:

implementation fileTree(dir: 'C:\Downloads', include: ['*.jar'])

To add single jar file

implementation files('libs/foo.jar')

Note: compile is deprecated in latest gradle, hence use implementation instead.

Upvotes: 2

tajiri
tajiri

Reputation: 21

If you dont see option "Add as Library", make sure you extract (unzip) your file so that you have mail.jar and not mail.zip.

Then right click your file, and you can see the option "Add as library".

Upvotes: 2

Viral Patel
Viral Patel

Reputation: 1316

Step 1: Download any JAR file for your Project.enter image description here

Step 2: Copy .jar file and past in libs folder.

enter image description here enter image description here

Step 3: Click on File > Project Structure >Select app > Dependencies

enter image description here

Step 4:

enter image description here

Step 5:

enter image description here

Step 6: After click Ok button then we can see the Dependencies add like this way:

enter image description here

Upvotes: 28

Joanne
Joanne

Reputation: 1236

The "official way" to add a jar into your android project as an external library, is to add the jar in dependencies { } section in build.gradle.

If you've done all of the above, and none of the above works, then there are two other possibilities:

  1. If Android Studio or some other IDE doesn't give red underlined errors in editor but runs in error in the Java Compiler, CHECK YOUR JAR. Your jar may not have a proper Manifest included therefore the compiler doesn't know what the jar can provide/don't know it's package name
  2. Maybe it's folder structure is messed up. The folder structure doesn't match with its package name. package a.b.c; should be matching to folder a > folder b > folder c.
  3. The package name has some conflict. (Trust me, this happened to me and it took hours to figure it out.)

However, if you are going with cordova, here are some tips of adding external jars.

"build-extras.gradle" is the better way to manage your gradle file.

Here are the steps to manage extra settings in cordova-based android project:

  1. Adding your jar into build-extras.gradle:
    //Other settings go here, e.g.: buildscript { ... }
    ext.postBuildExtras = {
    // you may have some other settings, e.g.: android { ... }
            dependencies {
                    compile files('libs/abc.jar')
            }
    }
    

(More detailed steps here: Extending the cordova gradle file to include google services )

  1. In terminal, do:

cordova build android

Upvotes: 1

Thinsky
Thinsky

Reputation: 4246

Add your jar file to the folder app/libs. Then right click the jar file and click "add as library".

If there is no libs folder you can create it. Click on the combo box that says "Android", and change it to "Project"

enter image description here

From here, you can right click on "apps" in the directory tree and go to "New" => "Directory"

Upvotes: 148

adsdf
adsdf

Reputation: 166

If anyone is looking for another solution without actually copying the jar file(s) into the project directory, e.g. when using a jar in multiple projects:

Open build.gradle and add

def myJarFolder = 'C:/Path/To/My/Jars'

[...]

dependencies {
    [...]
    compile fileTree(dir: myJarFolder + '/jar/Sub/Folder/1', include: ['*.jar'])
    compile fileTree(dir: myJarFolder + '/jar/Sub/Folder/2', include: ['*.jar'])
    [...]
}

Note that of course you don't have to use the myJarFolder variable, I find it useful though. The path can also be relative, e.g. ../../Path/To/My/Jars.
Tested with AndroidStudio 3.0

Update: For Gradle Plugin > 3.0 use implementation instead of compile:

dependencies {
        [...]
        implementation fileTree(dir: myJarFolder + '/jar/Sub/Folder/1', include: ['*.jar'])
        implementation fileTree(dir: myJarFolder + '/jar/Sub/Folder/2', include: ['*.jar'])
        [...]
    }

Upvotes: 4

Rahul Sharma
Rahul Sharma

Reputation: 6179

A simple way to add Jar file Android Studio Steps:

  1. Copy and paste your jar file to libs folder of your project.
  2. Click File from File menu -> Project Structure (CTRL + SHIFT + ALT + S on Windows/Linux, ⌘ + ; on Mac OS X).
  3. Select Modules at the left panel -> Dependencies tab.
  4. Add... → Project Library → Attach Jar.

Upvotes: 4

Zulqarnain Mustafa
Zulqarnain Mustafa

Reputation: 1653

This is how you can add .jar file in Android Studio 2.1.3.

  1. Copy the .jar file jar file copy screenshot

  2. paste the file in Libs folder and then right click on .jar file and press Add as library enter image description here

  3. open build.gradle enter image description here

  4. add lines under dependencies as shown in screenshot enter image description hereenter image description here

  5. Now press play button and you are done adding .jar file enter image description here

Upvotes: 14

Alberto Hdez
Alberto Hdez

Reputation: 171

Example with Parse jar...

Add jars to libs folder from Project view … create lib folder if not exists

enter image description here

Copy all jars there...

Add libs to gradle.... in build.gradle file :

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.android.support:appcompat-v7:23.0.0'
    compile 'com.android.support:design:23.0.0'
    compile 'com.android.support:percent:23.0.0'
    compile 'com.parse.bolts:bolts-android:1.+'
    compile fileTree(dir: 'libs', include: 'Parse-*.jar’)
}

For add all jars of lib folder... change Parse-*.jar to *.jar

Upvotes: 15

thanassis
thanassis

Reputation: 691

The GUI based approach would be to add an additional module in your project.

  1. From the File menu select Project Structure and click on the green plus icon on the top left.
  2. The new Module dialog pops
  3. From the phone and tablet application group select the "Import JAR or AAR package" option and click next.
  4. Follow the steps to create a new module that contains your JAR file.
  5. Click on the entry that corresponds to your main project and select the dependencies tab.
  6. Add a dependency to the module that you created in step 4.

One final piece of advice. Make sure that the JAR file you include is build with at most JDK 1.7. Many problems relating to error message "com.android.dx.cf.iface.ParseException: bad class file magic (cafebabe) or version (0034.0000)" root straight to this :0.

Upvotes: 4

Related Questions