-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.gradle
56 lines (46 loc) · 1.53 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.1'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.4'
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
}
}
allprojects {
repositories {
jcenter()
google()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
ext {
compileSdkVersion = 28
buildToolsVersion = '28.0.3'
minSdkVersion = 15
targetSdkVersion = 28
publishVersionName = '1.5'
publishVersionCode = 6
currentVersionDesc = 'MayI current version'
bintrayRepo = 'maven'
bintrayName = 'mayi' // Has to be same as your library module name
publishedGroupId = 'com.thanosfisherman.mayi'
libraryName = 'MayI'
artifact = 'mayi' // Has to be same as your library module name
libraryDescription = 'Yet another runtime permission library for Android'
// Your github repo link
siteUrl = 'https://github.com/ThanosFisherman/MayI'
gitUrl = 'https://github.com/ThanosFisherman/MayI.git'
githubRepository= 'ThanosFisherman/MayI'
developerId = 'thanosfisherman'
developerName = 'Thanos Psaridis'
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"]
}