I'm attempting to integrate Localytics into my Android project. Their steps for integration include:
Add a dependency to your project for the jar.
How do I do that?
I'm attempting to integrate Localytics into my Android project. Their steps for integration include:
Add a dependency to your project for the jar.
How do I do that?
PROJECT_NAME/app/libs/example.jar
Add the .jar file to your dependencies in the gradle file.
dependencies {
compile files('libs/example.jar')
}
using gradle :