-
Notifications
You must be signed in to change notification settings - Fork 94
/
Copy pathbuild.gradle
67 lines (55 loc) · 1.75 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
buildscript {
ext.kotlinVersion = "1.4.10"
repositories {
jcenter()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.1.0'
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
}
}
plugins {
id "com.jfrog.bintray" version "1.7.3"
}
allprojects {
repositories {
google()
mavenCentral()
jcenter()
maven { url "https://jitpack.io" }
maven { url "https://maven.google.com" }
}
project.ext {
compileSdkVersion = 30
minSdkVersion = 16
targetSdkVersion = 30
versionCode = 10
versionName = "1.3.0"
materialVersion = '1.2.1'
recyclerViewVersion = '1.1.0'
counterFabVersion = '1.2.2'
glideVersion = '4.11.0'
photoViewVersion = '2.0.0'
junitVersion = '4.13.1'
name = 'Louvre'
description = 'A small customizable image picker. Useful to handle an gallery image pick action built-in your app.'
url = 'https://play.google.com/store/apps/details?id=com.andremion.louvre.sample'
licenseName = 'The Apache Software License, Version 2.0'
licenseUrl = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
allLicenses = ["Apache-2.0"]
bintrayRepo = 'github'
group = 'com.github.andremion'
artifact = 'louvre'
gitUrl = 'https://github.com/andremion/' + name
vcsUrl = gitUrl + '.git'
issueTracker = gitUrl + '/issues'
developerId = 'andremion'
developerName = 'André Mion'
developerEmail = '[email protected]'
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}