-
Notifications
You must be signed in to change notification settings - Fork 33
/
build.gradle
69 lines (58 loc) · 1.61 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
68
69
// Top-level build file where you can add configuration options common to all sub-projects/modules.
//apply plugin: 'com.novoda.bintray-release'
apply plugin: 'com.android.library'
apply plugin: 'com.aliasadi.bintray-upload'
//publish {
// userOrg = "emredavarci"
// groupId = "com.emredavarci"
// artifactId = "circleprogressbar"
// publishVersion = "1.0.6"
// desc = "An easy to use circular progressbar for Android"
// website = "https://github.com/emre1512/CircleProgressBar"
//}
buildscript {
repositories {
jcenter()
maven {
url 'https://maven.google.com/'
name 'Google'
}
}
dependencies {
classpath 'com.android.tools.build:gradle:3.5.0'
// classpath 'com.novoda:bintray-release:0.8.1'
classpath "com.aliasadi:bintray-upload:1.0.1"
}
}
allprojects {
repositories {
jcenter()
maven {
url 'https://maven.google.com/'
name 'Google'
}
}
}
android {
compileSdkVersion 29
buildToolsVersion '29.0.0'
defaultConfig {
minSdkVersion 16
targetSdkVersion 29
versionCode 3
versionName "1.0.8"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
uploadToBintray {
versionName = '1.0.8'
groupId = 'com.emredavarci'
artifactId = 'CircleProgressBar'
gitUrl = 'https://github.com/emre1512/CircleProgressBar'
}