| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- apply plugin: 'com.android.application'
- android {
- compileSdkVersion 23
- buildToolsVersion "24.0.0"
- defaultConfig {
- applicationId "com.itant.joycity"
- minSdkVersion 15
- targetSdkVersion 23
- versionCode 1
- versionName "1.0"
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- }
- }
- /*repositories {
- mavenCentral()
- }*/
- dependencies {
- compile fileTree(dir: 'libs', include: ['*.jar'])
- testCompile 'junit:junit:4.12'
- compile 'com.android.support:appcompat-v7:23.4.0'
- /*ViewPagerIndicator*/
- compile 'com.shizhefei:ViewPagerIndicator:1.1.3'
- compile 'com.android.support:support-v4:23.4.0'
- compile 'com.android.support:recyclerview-v7:23.2.1'
- /*轮播(指示器不太友好)*/
- compile 'com.bigkoo:convenientbanner:2.0.5'
- /*可折叠的ListView*/
- compile 'com.github.traex.expandablelayout:library:1.2.2'
- /*加载图片*/
- compile 'com.github.bumptech.glide:glide:3.7.0'
- /*发送网络请求*/
- compile 'com.loopj.android:android-async-http:1.4.9'
- /*JSON解析*/
- compile 'com.alibaba:fastjson:1.2.17'
- /*xutils*/
- compile 'org.xutils:xutils:3.3.36'
- /*圆角图片*/
- compile 'com.makeramen:roundedimageview:2.2.1'
- }
|