forked from dkzwm/SmoothRefreshLayout
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
63 lines (57 loc) · 2.03 KB
/
Copy pathbuild.gradle
File metadata and controls
63 lines (57 loc) · 2.03 KB
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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
maven { url 'https://jitpack.io' }
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.1'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.0'
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
}
}
allprojects {
repositories {
jcenter()
maven { url 'https://jitpack.io' }
google()
}
}
ext {
android = [
compileSdkVersion: 28,
buildToolsVersion: "28.0.3",
minSdkVersion : 11,
targetSdkVersion : 28,
versionCode : 55,
versionName : "1.6.5"
]
libs = [
recyclerview: "com.android.support:recyclerview-v7:28.0.0",
design: "com.android.support:design:28.0.0",
appcompatV7: "com.android.support:appcompat-v7:28.0.0",
supportV13: "com.android.support:support-v13:28.0.0"
// recyclerview: "com.android.support:recyclerview-v7:27.1.1",
// design: "com.android.support:design:27.1.1",
// appcompatV7: "com.android.support:appcompat-v7:27.1.1",
// supportV13: "com.android.support:support-v13:27.1.1"
]
bintray=[
siteUrl : 'https://github.com/dkzwm/SmoothRefreshLayout',
gitUrl :'https://github.com/dkzwm/SmoothRefreshLayout.git',
groupId :"me.dkzwm.widget.srl",
libVersion : android.versionName,
developerId : "dkzwm",
developerName : "Zhang Weiming",
developerEmail : "aidkzwm@gmail.com",
licenseName : "MIT License",
licenseUrl :"https://opensource.org/licenses/MIT",
]
allLicenses =['MIT']
}
task clean(type: Delete) {
delete rootProject.buildDir
}