forked from davideas/FlexibleAdapter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
67 lines (59 loc) · 1.97 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
ext {
//Author
developerId = 'davideas'
developerName = 'Davide Steduto'
developerEmail = '[email protected]'
//Library
libraryCode = 10
libraryVersion = '4.2.0'
libraryDate = " of 2015.12.16"
libraryDescription = 'A pattern for every RecyclerView'
libraryName = 'FlexibleAdapter'
//Library Repository
bintrayRepo = 'maven'
bintrayName = 'flexible-adapter'
publishedGroupId = 'eu.davidea'
artifact = bintrayName
siteUrl = 'https://github.com/davideas/FlexibleAdapter'
gitUrl = 'https://github.com/davideas/FlexibleAdapter.git'
//Support and Build tools version
minSdk = 14
targetSdk = 23
buildTools = '23.0.2'
supportLibrary = '23.1.1'
//Support Libraries dependencies
supportDependencies = [
design : "com.android.support:design:${supportLibrary}",
recyclerview : "com.android.support:recyclerview-v7:${supportLibrary}",
cardview : "com.android.support:cardview-v7:${supportLibrary}",
appcompat : "com.android.support:appcompat-v7:${supportLibrary}",
customtabs : "com.android.support:customtabs:${supportLibrary}",
support : "com.android.support:support-v13:${supportLibrary}'",
annotations : "com.android.support:support-annotations:${supportLibrary}"
]
licenseName = 'The Apache Software License, Version 2.0'
licenseUrl = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
allLicenses = ["Apache-2.0"]
}
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.5.0'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.4'
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.3'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
maven { url "http://dl.bintray.com/davideas/maven" }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}