Skip to content

Instantly share code, notes, and snippets.

@changusmc
Last active October 11, 2019 15:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save changusmc/a515894eef4b4844e3d3e5bb3eb9dcaf to your computer and use it in GitHub Desktop.
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