Skip to content

Instantly share code, notes, and snippets.

@changusmc
Last active October 11, 2019 15:32
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
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