-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
38 lines (31 loc) · 984 Bytes
/
build.gradle
File metadata and controls
38 lines (31 loc) · 984 Bytes
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
apply plugin: 'com.android.library'
//apply plugin: 'com.novoda.bintray-release'
android {
compileSdkVersion 26
buildToolsVersion "26.0.2"
defaultConfig {
minSdkVersion 16
targetSdkVersion 26
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
lintOptions {
abortOnError false
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.android.support:recyclerview-v7:26.1.0'
}
}
//publish {
// userOrg = 'wan410689330'//bintray.com用户名
// groupId = 'com.wan7451'//jcenter上的路径
// artifactId = 'pulltorefresh'//项目名称
// publishVersion = '1.0.0'//版本号
// desc = 'recycleview pulltorefresh lib'//描述,不重要
// website = 'https://github.com/Wan7451/Wan_RecycleViewAdapter'//网站,最好有,不重要
//}