build.gradle 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. apply plugin: 'com.android.library'
  2. android {
  3. compileSdkVersion 28
  4. defaultConfig {
  5. minSdkVersion 15
  6. targetSdkVersion 28
  7. versionCode 1
  8. versionName "1.0"
  9. }
  10. buildTypes {
  11. release {
  12. minifyEnabled false
  13. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  14. }
  15. }
  16. }
  17. dependencies {
  18. api fileTree(include: ['*.jar'], dir: 'libs')
  19. api 'com.android.support:appcompat-v7:28.0.0'
  20. api 'com.android.support:support-v4:28.0.0'
  21. api 'com.android.support:design:28.0.0'
  22. api 'com.android.support:cardview-v7:28.0.0'
  23. api 'com.android.support:multidex:1.0.3'
  24. api 'com.google.code.gson:gson:2.8.5'
  25. api 'com.jakewharton:butterknife:9.0.0-rc2'
  26. api 'org.greenrobot:eventbus:3.1.1'
  27. api 'org.greenrobot:greendao:3.3.0'
  28. api 'com.tencent.bugly:crashreport_upgrade:1.3.5'
  29. api 'com.tencent.bugly:nativecrashreport:3.3.1'
  30. api 'com.lzy.net:okgo:3.0.4'
  31. api 'com.parse:parse-android:1.13.1'
  32. api 'com.jaeger.statusbarutil:library:1.4.0'
  33. api 'com.github.bumptech.glide:glide:3.7.0'
  34. api 'com.github.CymChad:BaseRecyclerViewAdapterHelper:2.9.44'
  35. }