Reputation: 13302
I have tried to include adColony.jar
file into my libs folder. I can initiate the SKD okay. But when I try to compile the app, I get an error:
Error:Execution failed for task ':app:dexDebug'. com.android.ide.common.process.ProcessException: org.gradle.process.internal.ExecException: Process 'command '/Library/Java/JavaVirtualMachines/jdk1.8.0_31.jdk/Contents/Home/bin/java'' finished with non-zero exit value 2
If I delete the adColony.jar
, it compiles fine.
Any advice? Thank you
Upvotes: 1
Views: 1253
Reputation: 967
Let me be a bit more precise here. You have to:
Voila! You can now use all classes from the .jar file.
Upvotes: 0
Reputation: 5276
You can add *.jar file using Android studio.
In the project right click
-> new -> module
-> import jar/AAR package
-> import select the jar file to import
-> click ok -> done
See the screenshots here
Upvotes: 3