File tree 6 files changed +23
-12
lines changed
src/main/java/com/developer/progressx
6 files changed +23
-12
lines changed Original file line number Diff line number Diff line change 1
1
![ ] ( https://github.com/TutorialsAndroid/progressx/blob/master/sample/src/main/res/mipmap-xxhdpi/ic_launcher.png )
2
2
3
- # ProgressX ![ API] ( https://img.shields.io/badge/API-21 %2B-brightgreen.svg?style=flat ) [ ![ Known Vulnerabilities] ( https://snyk.io/test/github/TutorialsAndroid/progressx/badge.svg?targetFile=library%2Fbuild.gradle )] ( https://snyk.io/test/github/TutorialsAndroid/progressx?targetFile=library%2Fbuild.gradle ) [ ![ Android Arsenal] ( https://img.shields.io/badge/Android%20Arsenal-ProgressX-orange.svg?style=flat-square )] ( https://android-arsenal.com/details/1/7589 ) [ ![ License] ( https://img.shields.io/badge/License-Apache%202.0-blue.svg )] ( https://opensource.org/licenses/Apache-2.0 )
3
+ # ProgressX ![ API] ( https://img.shields.io/badge/API-15 %2B-brightgreen.svg?style=flat ) [ ![ Known Vulnerabilities] ( https://snyk.io/test/github/TutorialsAndroid/progressx/badge.svg?targetFile=library%2Fbuild.gradle )] ( https://snyk.io/test/github/TutorialsAndroid/progressx?targetFile=library%2Fbuild.gradle ) [ ![ Android Arsenal] ( https://img.shields.io/badge/Android%20Arsenal-ProgressX-orange.svg?style=flat-square )] ( https://android-arsenal.com/details/1/7589 ) [ ![ License] ( https://img.shields.io/badge/License-Apache%202.0-blue.svg )] ( https://opensource.org/licenses/Apache-2.0 )
4
4
5
5
A material style progress wheel that you can integrate into your app
6
6
@@ -32,7 +32,7 @@ Add it in your root build.gradle at the end of repositories:
32
32
Step 2. Add the dependency
33
33
34
34
dependencies {
35
- implementation 'com.github.TutorialsAndroid:progressx:v4 .0.19'
35
+ implementation 'com.github.TutorialsAndroid:progressx:v5 .0.19'
36
36
}
37
37
38
38
## Usage
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ buildscript {
4
4
jcenter()
5
5
}
6
6
dependencies {
7
- classpath ' com.android.tools.build:gradle:3.4.1 '
7
+ classpath ' com.android.tools.build:gradle:3.6.3 '
8
8
classpath ' com.github.dcendents:android-maven-gradle-plugin:2.1'
9
9
}
10
10
}
Original file line number Diff line number Diff line change 1
- # Mon Nov 13 17:16:27 CET 2017
1
+ # Sat Jan 20 01:13:22 IRST 2018
2
2
distributionBase =GRADLE_USER_HOME
3
3
distributionPath =wrapper/dists
4
4
zipStoreBase =GRADLE_USER_HOME
5
5
zipStorePath =wrapper/dists
6
- distributionUrl =https\://services.gradle.org/distributions/gradle-5.1.1 -all.zip
6
+ distributionUrl =https\://services.gradle.org/distributions/gradle-5.6.4 -all.zip
Original file line number Diff line number Diff line change @@ -7,17 +7,21 @@ android {
7
7
compileSdkVersion 29
8
8
9
9
defaultConfig {
10
- minSdkVersion 21
10
+ minSdkVersion 15
11
11
targetSdkVersion 29
12
- versionCode 6
13
- versionName " 4 .0.19"
12
+ versionCode 7
13
+ versionName " 5 .0.19"
14
14
}
15
15
buildTypes {
16
16
release {
17
17
minifyEnabled false
18
18
proguardFiles getDefaultProguardFile(' proguard-android.txt' ), ' proguard-rules.pro'
19
19
}
20
20
}
21
+ compileOptions {
22
+ sourceCompatibility 1.8
23
+ targetCompatibility 1.8
24
+ }
21
25
}
22
26
23
27
dependencies {
Original file line number Diff line number Diff line change 17
17
import android .util .TypedValue ;
18
18
import android .view .View ;
19
19
20
+ /**
21
+ * @author tkdco , TutorialsAndroid
22
+ */
20
23
public class ProgressWheel extends View {
21
24
private final int barLength = 16 ;
22
25
/**
Original file line number Diff line number Diff line change @@ -5,24 +5,28 @@ android {
5
5
6
6
defaultConfig {
7
7
applicationId " com.developer.progressx.custom"
8
- minSdkVersion 21
8
+ minSdkVersion 15
9
9
targetSdkVersion 29
10
- versionCode 6
11
- versionName " 4 .0.19"
10
+ versionCode 7
11
+ versionName " 5 .0.19"
12
12
}
13
13
buildTypes {
14
14
release {
15
15
minifyEnabled false
16
16
proguardFiles getDefaultProguardFile(' proguard-android.txt' ), ' proguard-rules.pro'
17
17
}
18
18
}
19
+ compileOptions {
20
+ sourceCompatibility 1.8
21
+ targetCompatibility 1.8
22
+ }
19
23
}
20
24
21
25
dependencies {
22
26
implementation fileTree(dir : ' libs' , include : [' *.jar' ])
23
27
24
28
// android support
25
- implementation ' androidx.appcompat:appcompat:1.0.2 '
29
+ implementation ' androidx.appcompat:appcompat:1.1.0 '
26
30
27
31
// library
28
32
implementation project(' :library' )
You can’t perform that action at this time.
0 commit comments