-
-
Save changusmc/a515894eef4b4844e3d3e5bb3eb9dcaf to your computer and use it in GitHub Desktop.
apply plugin: 'com.android.library' | |
apply plugin: 'kotlin-kapt' | |
android { | |
sourceSets { | |
main { | |
manifest.srcFile 'AndroidManifest.xml' | |
java.srcDirs = ['java/src'] | |
test.srcDirs = ['jvm_test/src'] | |
androidTest.srcDirs = ['android_test/src'] | |
} | |
} | |
} | |
dependencies { | |
implementation project(':dbx:base:async') | |
implementation project(':dbx:base:oxygen') | |
implementation commonlibs.dagger2 | |
kapt annotationprocessors.dagger2_compiler | |
api commonlibs.kotlinstdlib | |
testImplementation testlibs.junit | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment