Commit 8bd26e0 1 parent 780e2d2 commit 8bd26e0 Copy full SHA for 8bd26e0
File tree 4 files changed +18
-6
lines changed
4 files changed +18
-6
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ A progress bar for my ongoing project.
10
10
via Gradle:
11
11
12
12
dependencies {
13
- compile 'com.zekapp.library:progreswheelview:1.1.2 '
13
+ compile 'com.zekapp.library:progreswheelview:1.1.3 '
14
14
}
15
15
16
16
## Usage of Dial progress bar
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ dependencies {
27
27
implementation ' com.android.support:design:27.1.1'
28
28
29
29
implementation project(' :progreswheelview' )
30
- compile " org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version "
30
+ implementation " org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version "
31
31
}
32
32
repositories {
33
33
mavenCentral()
Original file line number Diff line number Diff line change 3
3
buildscript {
4
4
ext. kotlin_version = ' 1.2.51'
5
5
repositories {
6
- jcenter()
7
6
google()
7
+ jcenter()
8
8
}
9
9
dependencies {
10
10
classpath ' com.android.tools.build:gradle:3.1.3'
@@ -19,10 +19,15 @@ buildscript {
19
19
20
20
allprojects {
21
21
repositories {
22
+ google()
22
23
jcenter()
23
24
}
24
25
}
25
26
26
27
task clean (type : Delete ) {
27
28
delete rootProject. buildDir
28
29
}
30
+
31
+ subprojects {
32
+ tasks. withType(Javadoc ). all { enabled = false }
33
+ }
Original file line number Diff line number Diff line change 1
1
apply plugin : ' com.android.library'
2
2
apply plugin : ' kotlin-android'
3
3
4
- def libVer = ' 1.1.2 '
4
+ def libVer = ' 1.1.3 '
5
5
6
6
ext {
7
7
bintrayRepo = ' Maven'
11
11
libraryName = ' progress-views'
12
12
artifact = ' progreswheelview'
13
13
14
- libraryDescription = ' Different type of progresses .'
14
+ libraryDescription = ' Different type of progress views .'
15
15
16
16
siteUrl = ' https://github.com/zekapp/Android-ProgressViews'
17
17
gitUrl = ' https://github.com/zekapp/Android-ProgressViews.git'
@@ -48,12 +48,19 @@ android {
48
48
dependencies {
49
49
implementation fileTree(dir : ' libs' , include : [' *.jar' ])
50
50
testImplementation ' junit:junit:4.12'
51
- compile " org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version "
51
+ implementation " org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version "
52
52
}
53
53
repositories {
54
54
mavenCentral()
55
55
}
56
56
57
+ // Add these lines to publish library to bintray. This is the readymade scripts made by github user nuuneoi to make uploading to bintray easy.
58
+ // Place it at the end of the file
59
+ if (project. rootProject. file(' local.properties' ). exists()) {
60
+ apply from : ' https://raw.githubusercontent.com/nuuneoi/JCenter/master/installv1.gradle'
61
+ apply from : ' https://raw.githubusercontent.com/nuuneoi/JCenter/master/bintrayv1.gradle'
62
+ }
63
+
57
64
// apply from: 'https://raw.githubusercontent.com/nuuneoi/JCenter/master/installv1.gradle'
58
65
// apply from: 'https://raw.githubusercontent.com/nuuneoi/JCenter/master/bintrayv1.gradle'
59
66
You can’t perform that action at this time.
0 commit comments