build.gradle 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. apply plugin: 'com.android.application'
  2. android {
  3. compileSdkVersion 23
  4. buildToolsVersion "24.0.0"
  5. defaultConfig {
  6. applicationId "com.itant.joycity"
  7. minSdkVersion 15
  8. targetSdkVersion 23
  9. versionCode 1
  10. versionName "1.0"
  11. }
  12. buildTypes {
  13. release {
  14. minifyEnabled false
  15. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  16. }
  17. }
  18. }
  19. /*repositories {
  20. mavenCentral()
  21. }*/
  22. dependencies {
  23. compile fileTree(dir: 'libs', include: ['*.jar'])
  24. testCompile 'junit:junit:4.12'
  25. compile 'com.android.support:appcompat-v7:23.4.0'
  26. /*ViewPagerIndicator*/
  27. compile 'com.shizhefei:ViewPagerIndicator:1.1.3'
  28. compile 'com.android.support:support-v4:23.4.0'
  29. compile 'com.android.support:recyclerview-v7:23.2.1'
  30. /*轮播(指示器不太友好)*/
  31. compile 'com.bigkoo:convenientbanner:2.0.5'
  32. /*可折叠的ListView*/
  33. compile 'com.github.traex.expandablelayout:library:1.2.2'
  34. /*加载图片*/
  35. compile 'com.github.bumptech.glide:glide:3.7.0'
  36. /*发送网络请求*/
  37. compile 'com.loopj.android:android-async-http:1.4.9'
  38. /*JSON解析*/
  39. compile 'com.alibaba:fastjson:1.2.17'
  40. /*xutils*/
  41. compile 'org.xutils:xutils:3.3.36'
  42. /*圆角图片*/
  43. compile 'com.makeramen:roundedimageview:2.2.1'
  44. }