Advertisement
Guest User

module/build.gradle

a guest
Jun 20th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. apply plugin: 'com.android.library'
  2. apply plugin: 'kotlin-android'
  3.  
  4. android {
  5. // android related stuff
  6.  
  7.  lintOptions {
  8.         // For Okio
  9.         // https://github.com/square/okio/issues/58
  10.         warning 'InvalidPackage'
  11.     }
  12. }
  13.  
  14. dependencies {
  15.     compile fileTree(include: ['*.jar'], dir: 'libs')
  16.     implementation libraries.dagger
  17.     compileOnly libraries.appcompat
  18.     annotationProcessor libraries.daggerCompiler
  19.  
  20.     // test dependencies
  21.     testAnnotationProcessor libraries.daggerCompiler
  22.     androidTestImplementation libraries.kotlin
  23. }
  24. repositories {
  25.     mavenCentral()
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement