-
Notifications
You must be signed in to change notification settings - Fork 468
/
Copy pathbuild.gradle
48 lines (36 loc) · 1.46 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
apply plugin: 'com.android.library'
ext {
bintrayRepo = 'maven'
bintrayName = 'patternlockview-reactive'
publishedGroupId = 'com.andrognito.patternlockview'
libraryName = 'patternlockview-reactive'
artifact = 'patternlockview-reactive'
libraryDescription = 'An easy-to-use, customizable, Material Design complaint Pattern Lock ' +
'view for Android'
siteUrl = 'https://github.com/aritraroy/PatternLockView'
gitUrl = 'https://github.com/aritraroy/PatternLockView.git'
libraryVersion = '1.0.0'
developerId = 'aritraroy'
developerName = 'Aritra Roy'
developerEmail = '[email protected]'
licenseName = 'The Apache Software License, Version 2.0'
licenseUrl = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
allLicenses = ["Apache-2.0"]
}
android {
compileSdkVersion rootProject.ext.compileSdkVersion
buildToolsVersion rootProject.ext.buildToolsVersion
defaultConfig {
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode Integer.parseInt(project.VERSION_CODE)
versionName project.VERSION_NAME
}
}
dependencies {
compile project(':patternlockview')
compile rootProject.ext.rxJava
compile rootProject.ext.rxAndroid
}
apply from: 'https://raw.githubusercontent.com/nuuneoi/JCenter/master/installv1.gradle'
apply from: 'https://raw.githubusercontent.com/nuuneoi/JCenter/master/bintrayv1.gradle'