-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
74 lines (67 loc) · 2.68 KB
/
build.gradle
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
apply plugin: 'com.android.application'
android {
//这里需要添加到最前边,后边的才能收到,貌似gradle没成员变量,java用多了!! //鱼香肉丝 表示不点这个菜了!!哈哈
// signingConfigs {
// release {
// keyAlias 'coldraincn'
// keyPassword 'handan213'
// storePassword 'handan213'
// storeFile file('/Users/hd/Documents/keystore.jks')
// }
// }
compileSdkVersion 26
buildToolsVersion "26.0.1"
defaultConfig {
applicationId "com.coldraincn.laimihui"
minSdkVersion 19
targetSdkVersion 26
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
debug {
// signingConfig signingConfigs.release
}
}
dataBinding {
enabled = true
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile files('libs/universal-image-loader-1.9.4-with-sources.jar')
// compile files('libs/alipaySdk-20160427.jar')
//compile 'com.tsy:pay:1.0.0'
// compile files('libs/alipaySdk-20170725.jar')
compile 'com.android.support:appcompat-v7:26.+'
compile 'com.android.support:design:26.+'
compile 'com.android.support:support-v4:26.+'
compile 'com.google.code.gson:gson:2.8.1'
compile 'io.reactivex.rxjava2:rxjava:2.1.3'
compile 'io.reactivex.rxjava2:rxandroid:2.0.1'
compile 'com.squareup.retrofit2:retrofit:2.3.0'
compile 'com.squareup.okhttp3:okhttp:3.9.0'
compile 'com.squareup.retrofit2:converter-gson:2.3.0'
compile 'com.squareup.retrofit2:adapter-rxjava2:2.3.0'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
compile 'com.jakewharton:butterknife:8.8.1'
compile 'com.squareup.okhttp3:logging-interceptor:3.9.0'
compile 'com.orhanobut:logger:2.1.0'
compile 'com.android.support:cardview-v7:26.0.0-alpha1'
compile 'com.squareup.picasso:picasso:2.5.2'
compile 'com.youth.banner:banner:1.4.10'
compile 'com.tencent.mm.opensdk:wechat-sdk-android-without-mta:1.1.6'
compile 'com.loopj.android:android-async-http:1.4.9'
compile 'com.android.volley:volley:1.0.0'
compile 'io.github.mayubao:pay_library:1.0.1'
testCompile 'junit:junit:4.12'
annotationProcessor 'com.jakewharton:butterknife-compiler:8.8.1'
}