Advertisement
Guest User

app.gradle

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