You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

29 lines
555 B

  1. apply plugin: 'com.android.library'
  2. android {
  3. compileSdkVersion versions.compileSdk
  4. defaultConfig {
  5. minSdkVersion versions.minSdk
  6. targetSdkVersion versions.targetSdk
  7. versionCode 1
  8. versionName "1.0"
  9. }
  10. buildTypes {
  11. release {
  12. minifyEnabled false
  13. consumerProguardFiles 'proguard-rules.pro'
  14. }
  15. }
  16. }
  17. dependencies {
  18. compileOnly deps.rx.java
  19. compileOnly deps.rx.java2
  20. }
  21. apply from: 'properties.gradle'
  22. apply from: 'install.gradle'
  23. apply from: 'bintray.gradle'