-
-
Save changusmc/a515894eef4b4844e3d3e5bb3eb9dcaf to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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