Import library to Android Studio [closed]

1

I'm trying to import a library to my android project, the problem is that the library that I downloaded is a java project with a file. java instead of .jar.

It influences something or directly you can only import them. jar

    
asked by Eduardo 04.05.2017 в 14:42
source

1 answer

2

If what you want is to import a library, the libraries usually have their way of installation through Maven, Graddle, Ivy, etc ...

Look in the documentation of your library for the code that you would put in your Graddle in the dependencies something like this:

dependencies {
    compile  soyunadirecciondedependencia:22.17.1 (Version de ejemplo, la version puede variar) etc etc etc
}
    
answered by 04.05.2017 / 15:53
source