haijiang
2018-06-25 586f13d3aa93fc3fdfed65021b1a17a17acf3321
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
apply plugin: 'com.android.library'
 
android {
    compileSdkVersion 25
    buildToolsVersion '26.0.2'
 
    defaultConfig {
        minSdkVersion 15
        targetSdkVersion 25
        versionCode 1
        versionName "1.0"
 
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
 
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}
 
dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
        exclude group: 'com.android.support', module: 'support-annotations'
    })
    compile 'com.android.support:appcompat-v7:25.3.1'
    compile 'com.android.support:recyclerview-v7:25.3.1'
    testCompile 'junit:junit:4.12'
    //对话框
    compile 'com.afollestad.material-dialogs:commons:0.9.4.4'
    compile 'com.alibaba:fastjson:1.1.56.android'
    compile 'com.pnikosis:materialish-progress:1.0'
    //compile 'cn.pedant.sweetalert:library:1.3'
    provided 'com.google.code.gson:gson:2.8.0'
    //下载管理和上传管理扩展,根据需要添加
    provided 'com.lzy.net:okserver:1.1.3'
    //banner
    compile 'cn.bingoogolapple:bga-banner:2.1.9@aar'
}