build.gradle 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. apply plugin: 'com.android.application'
  2. android {
  3. compileSdkVersion 23
  4. buildToolsVersion "24.0.0"
  5. defaultConfig {
  6. applicationId "com.itant.musichome"
  7. minSdkVersion 15
  8. targetSdkVersion 23
  9. versionCode 6
  10. versionName "1.5"
  11. }
  12. buildTypes {
  13. release {
  14. minifyEnabled false
  15. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  16. }
  17. }
  18. }
  19. dependencies {
  20. compile fileTree(include: ['*.jar'], dir: 'libs')
  21. testCompile 'junit:junit:4.12'
  22. compile 'com.android.support:appcompat-v7:23.4.0'
  23. compile 'org.xutils:xutils:3.3.38'
  24. /*按钮*/
  25. compile 'com.beardedhen:androidbootstrap:2.3.0'
  26. /*加载*/
  27. compile 'com.wang.avi:library:2.1.3'
  28. /*下载进度*/
  29. compile 'com.dinuscxj:circleprogressbar:1.1.1'
  30. /*水波纹*/
  31. /*compile 'com.github.traex.rippleeffect:library:1.3'*/
  32. /*JSON解析*/
  33. compile 'com.alibaba:fastjson:1.2.17'
  34. /*请求和下载*/
  35. /*compile 'com.koushikdutta.async:androidasync:2.+'*/
  36. compile 'com.loopj.android:android-async-http:1.4.9'
  37. /*EventBus*/
  38. compile 'org.greenrobot:eventbus:3.0.0'
  39. /*上拉加载更多*/
  40. compile 'com.wuxiaolong.pullloadmorerecyclerview:library:1.1.1'
  41. /*友盟统计*/
  42. compile 'com.umeng.analytics:analytics:latest.integration'
  43. compile files('libs/nineoldandroids-2.4.0.jar')
  44. /*ViewPagerIndicator*/
  45. compile 'com.shizhefei:ViewPagerIndicator:1.1.3'
  46. compile 'com.android.support:support-v4:23.4.0'
  47. compile 'com.android.support:recyclerview-v7:23.2.1'
  48. }