build.gradle 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. apply plugin: 'com.android.library'
  2. apply plugin: 'com.github.dcendents.android-maven'
  3. group = 'com.github.love-yanyi'
  4. android {
  5. compileSdkVersion 26
  6. defaultConfig {
  7. minSdkVersion 14
  8. targetSdkVersion 26
  9. versionCode 1
  10. versionName "1.0"
  11. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  12. }
  13. buildTypes {
  14. release {
  15. minifyEnabled false
  16. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  17. }
  18. }
  19. }
  20. dependencies {
  21. implementation fileTree(dir: 'libs', include: ['*.jar'])
  22. implementation 'com.android.support:appcompat-v7:26.1.0'
  23. testImplementation 'junit:junit:4.12'
  24. androidTestImplementation 'com.android.support.test:runner:1.0.1'
  25. androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
  26. implementation 'com.squareup.okhttp3:okhttp:3.9.0'
  27. implementation 'com.squareup.okio:okio:1.13.0'
  28. implementation 'io.reactivex:rxjava:1.3.3'
  29. implementation 'io.reactivex:rxandroid:1.2.1'
  30. compile 'com.github.love-yanyi:Logger:1.0.1'
  31. }