voben
07/18/2019, 2:46 PMUnresolved reference: creditcall
Execution failed for task ':app:compileDebugKotlin'
Library module: build.gradle
apply plugin: 'java-library'
dependencies {
implementation files("libs/MyCurrencyJar.jar")
}
App module: build.gradle
...
dependencies {
...
implementation project(':myLibrary')
}
Can I add a jar to a library module this way?Sergey Chelombitko
07/18/2019, 3:04 PMapi
instead of implementation
with that jar if you want consumers of the library to see itvoben
07/18/2019, 3:15 PM