|
| 1 | +/* |
| 2 | + * Copyright (C) 2015 Drakeet <drakeet.me@gmail.com> |
| 3 | + * |
| 4 | + * This file is part of Meizhi |
| 5 | + * |
| 6 | + * Meizhi is free software: you can redistribute it and/or modify |
| 7 | + * it under the terms of the GNU General Public License as published by |
| 8 | + * the Free Software Foundation, either version 3 of the License, or |
| 9 | + * (at your option) any later version. |
| 10 | + * |
| 11 | + * Meizhi is distributed in the hope that it will be useful, |
| 12 | + * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 14 | + * GNU General Public License for more details. |
| 15 | + * |
| 16 | + * You should have received a copy of the GNU General Public License |
| 17 | + * along with Meizhi. If not, see <http://www.gnu.org/licenses/>. |
| 18 | + */ |
| 19 | + |
| 20 | +ext { |
| 21 | + |
| 22 | + android = [compileSdkVersion: 23, |
| 23 | + buildToolsVersion: "23.0.1", |
| 24 | + applicationId : "me.drakeet.meizhi", |
| 25 | + minSdkVersion : 14, |
| 26 | + targetSdkVersion : 22, |
| 27 | + versionCode : 360, |
| 28 | + versionName : "2.6.0"] |
| 29 | + |
| 30 | + supportVersion = "28.0.0" |
| 31 | + |
| 32 | + dependencies = ["appcompat-v7" : "com.android.support:appcompat-v7:${supportVersion}", |
| 33 | + "support-v4" : "com.android.support:support-v4:${supportVersion}", |
| 34 | + "design" : "com.android.support:design:${supportVersion}", |
| 35 | + "recyclerview-v7" : "com.android.support:recyclerview-v7:${supportVersion}", |
| 36 | + "nineoldandroids" : "com.nineoldandroids:library:2.4.0", |
| 37 | + "picasso" : "com.squareup.picasso:picasso:2.5.2", |
| 38 | + "photoview" : "com.github.chrisbanes.photoview:library:1.2.3", |
| 39 | + "numberprogressbar" : "com.daimajia.numberprogressbar:library:1.2@aar", |
| 40 | + "umeng-analytics" : "com.umeng.analytics:analytics:latest.integration", |
| 41 | + "retrofit" : "com.squareup.retrofit2:retrofit:2.1.0", |
| 42 | + "retrofit-rxjava" : "com.squareup.retrofit2:adapter-rxjava:2.1.0", |
| 43 | + "retrofit-gson" : "com.squareup.retrofit2:converter-gson:2.1.0", |
| 44 | + "rxandroid" : "io.reactivex:rxandroid:1.0.0", |
| 45 | + "okhttp" : "com.squareup.okhttp3:okhttp:3.4.0", |
| 46 | + "okio" : "com.squareup.okio:okio:1.9.0", |
| 47 | + "butterknife" : "com.jakewharton:butterknife:7.0.1", |
| 48 | + "otto" : "com.squareup:otto:1.3.8", |
| 49 | + "mvchelper-core" : "com.shizhefei:MVCHelper-Library:1.0.6", |
| 50 | + "mvchelper-swipe" : "com.shizhefei:MVCHelper-SwipeRefresh:1.0.6", |
| 51 | + "mvchelper-ultra" : "com.shizhefei:MVCHelper-UltraRefresh:1.0.6", |
| 52 | + "mvchelper-testcase" : "com.shizhefei:MVCHelper-TestCase:1.0.6", |
| 53 | + "mvchelper-pull" : "com.shizhefei:MVCHelper-Pullrefresh:1.0.6", |
| 54 | + "mvchelper-okhttp" : "com.shizhefei:MVCHelper-OkHttp:1.0.6", |
| 55 | + "ultra" : "in.srain.cube:ultra-ptr:1.0.11", |
| 56 | + "pulltorefresh" : "com.shizhefei:pulltorefresh:1.0.1", |
| 57 | + "ViewPagerIndicator" : "com.shizhefei:ViewPagerIndicator:1.0.7", |
| 58 | + "gson" : "com.google.code.gson:gson:2.2.4", |
| 59 | + "fastjson" : "com.alibaba:fastjson:1.1.15", |
| 60 | + "progress" : "com.pnikosis:materialish-progress:1.7", |
| 61 | + "recyclerview-animators" : "jp.wasabeef:recyclerview-animators:2.2.3", |
| 62 | + "glide" : "com.github.bumptech.glide:glide:3.6.1", |
| 63 | + "ultra-ptr" : 'in.srain.cube:ultra-ptr:1.0.11', |
| 64 | + "MultiTypeView" : "com.shizhefei:MultiTypeView:1.0.1", |
| 65 | + "CoolRefreshView" : "com.shizhefei:CoolRefreshView:1.0.1", |
| 66 | + "circleimageview" : "de.hdodenhof:circleimageview:2.1.0", |
| 67 | + "leakcanary-android" : "com.squareup.leakcanary:leakcanary-android-no-op:1.6.2", |
| 68 | + "leakcanary-support-fragment": "com.squareup.leakcanary:leakcanary-support-fragment:1.6.2", |
| 69 | + "leakcanary-android-no-op" : "com.squareup.leakcanary:leakcanary-android-no-op:1.5" |
| 70 | + ] |
| 71 | +} |
0 commit comments