Advertisement
Guest User

app.gradle

a guest
Jul 5th, 2018
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Groovy 0.73 KB | None | 0 0
  1. // Add your native dependencies here:
  2.  
  3. // Uncomment to add recyclerview-v7 dependency
  4. dependencies {
  5.   implementation 'de.mannodermaus.rxjava2:rxbonjour:2.0.0-RC1'
  6.   implementation 'de.mannodermaus.rxjava2:rxbonjour-platform-android:2.0.0-RC1'
  7.   implementation 'de.mannodermaus.rxjava2:rxbonjour-driver-jmdns:2.0.0-RC1'
  8. }
  9.  
  10. android {  
  11.   compileSdkVersion 26
  12.   buildToolsVersion "26.0.2"
  13.   defaultConfig {
  14.     applicationId "com.awh.curis"
  15.     minSdkVersion 19
  16.     targetSdkVersion 26
  17.     generatedDensities = []
  18.   }  
  19.   packagingOptions {
  20.       exclude 'META-INF/ASL2.0'
  21.       exclude 'META-INF/LICENSE'
  22.       exclude 'META-INF/NOTICE'
  23.   }
  24.   aaptOptions {  
  25.     additionalParameters "--no-version-vectors"  
  26.   }  
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement