Skip to content

Commit 0bf41dd

Browse files
Migrated To AndroidX
1 parent 3911b2b commit 0bf41dd

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

app/build.gradle

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
apply plugin: 'com.android.application'
22

33
android {
4-
compileSdkVersion 28
4+
compileSdkVersion 29
55

66
defaultConfig {
77
applicationId "com.kinda.progressx.sample"
88
minSdkVersion 15
9-
targetSdkVersion 28
10-
versionCode 3
11-
versionName "1.0.19"
9+
targetSdkVersion 29
10+
versionCode 4
11+
versionName "2.0.19"
1212
}
1313
buildTypes {
1414
release {
@@ -22,7 +22,7 @@ dependencies {
2222
implementation fileTree(dir: 'libs', include: ['*.jar'])
2323

2424
//android support
25-
implementation 'com.android.support:appcompat-v7:28.0.0'
25+
implementation 'androidx.appcompat:appcompat:1.0.0'
2626

2727
//library
2828
implementation project(':library')

app/src/main/res/values/strings.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<string name="linear">Linear progress:</string>
1111
<string name="ok">OK</string>
1212
<string name="about">About</string>
13-
<string name="about_text">This app is for demonstrate the Material-ish progress wheel library, which provides a Material-style progress wheel compatible back to API 9. You can have indeterminate and determinate versions of the progress wheel, the later with a linear animation or a interpolated one like in the guidelines.\n\nRefer to the Github project page for more info at https://github.com/pnikosis/materialish-progress. </string>
13+
<string name="about_text">This app is for demonstrate the Material progress wheel library, which provides a Material-style progress wheel. </string>
1414
<string-array name="progress_value_options">
1515
<item>Cycle between 0% and 100%</item>
1616
<item>0%</item>

library/build.gradle

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ apply plugin: 'com.github.dcendents.android-maven'
44
group='com.github.TutorialsAndroid'
55

66
android {
7-
compileSdkVersion 28
7+
compileSdkVersion 29
88

99
defaultConfig {
1010
minSdkVersion 15
11-
targetSdkVersion 28
12-
versionCode 3
13-
versionName "1.0.19"
11+
targetSdkVersion 29
12+
versionCode 4
13+
versionName "2.0.19"
1414
}
1515
buildTypes {
1616
release {

0 commit comments

Comments
 (0)