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
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
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
}