Skip to content

Commit 25e3304

Browse files
Updated Dependencies
1 parent 0bf41dd commit 25e3304

File tree

9 files changed

+19
-19
lines changed

9 files changed

+19
-19
lines changed

app/build.gradle

+5-5
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ android {
44
compileSdkVersion 29
55

66
defaultConfig {
7-
applicationId "com.kinda.progressx.sample"
8-
minSdkVersion 15
7+
applicationId "com.developer.kinda.progressx"
8+
minSdkVersion 21
99
targetSdkVersion 29
10-
versionCode 4
11-
versionName "2.0.19"
10+
versionCode 5
11+
versionName "3.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 'androidx.appcompat:appcompat:1.0.0'
25+
implementation 'androidx.appcompat:appcompat:1.0.2'
2626

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

app/src/androidTest/java/com/kinda/progressx/sample/ApplicationTest.java renamed to app/src/androidTest/java/com/developer/kinda/progressx/ApplicationTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.kinda.progressx.sample;
1+
package com.developer.kinda.progressx;
22

33
import android.app.Application;
44
import android.test.ApplicationTestCase;

app/src/main/AndroidManifest.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3-
package="com.kinda.progressx.sample" >
3+
package="com.developer.kinda.progressx" >
44

55
<application
66
android:allowBackup="true"
77
android:icon="@drawable/ic_launcher"
88
android:label="@string/app_name"
99
android:theme="@style/AppTheme" >
1010
<activity
11-
android:name="com.kinda.progressx.sample.MainActivity"
11+
android:name="com.developer.kinda.progressx.MainActivity"
1212
android:label="@string/app_name" >
1313
<intent-filter>
1414
<action android:name="android.intent.action.MAIN" />

app/src/main/java/com/kinda/progressx/sample/MainActivity.java renamed to app/src/main/java/com/developer/kinda/progressx/MainActivity.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.kinda.progressx.sample;
1+
package com.developer.kinda.progressx;
22

33
import android.app.Activity;
44
import android.app.AlertDialog;
@@ -13,7 +13,7 @@
1313
import android.widget.Spinner;
1414
import android.widget.TextView;
1515

16-
import com.kinda.progressx.ProgressWheel;
16+
import com.developer.kinda.ProgressWheel;
1717

1818
public class MainActivity extends Activity {
1919

app/src/main/res/layout/activity_main.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
</LinearLayout>
7979
</LinearLayout>
8080

81-
<com.kinda.progressx.ProgressWheel
81+
<com.developer.kinda.ProgressWheel
8282
android:id="@+id/progress_wheel"
8383
android:layout_width="80dp"
8484
android:layout_height="80dp"
@@ -127,7 +127,7 @@
127127
android:layout_marginTop="16dp"
128128
android:text="@string/interpolated" />
129129

130-
<com.kinda.progressx.ProgressWheel
130+
<com.developer.kinda.ProgressWheel
131131
android:id="@+id/interpolated"
132132
android:layout_width="80dp"
133133
android:layout_height="80dp"
@@ -157,7 +157,7 @@
157157
android:layout_marginTop="16dp"
158158
android:text="@string/linear" />
159159

160-
<com.kinda.progressx.ProgressWheel
160+
<com.developer.kinda.ProgressWheel
161161
android:id="@+id/linear"
162162
android:layout_width="80dp"
163163
android:layout_height="80dp"

library/build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ android {
77
compileSdkVersion 29
88

99
defaultConfig {
10-
minSdkVersion 15
10+
minSdkVersion 21
1111
targetSdkVersion 29
12-
versionCode 4
13-
versionName "2.0.19"
12+
versionCode 5
13+
versionName "3.0.19"
1414
}
1515
buildTypes {
1616
release {

library/src/androidTest/java/com/kinda/progressx/ApplicationTest.java renamed to library/src/androidTest/java/com/developer/kinda/ApplicationTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.kinda.progressx;
1+
package com.developer.kinda;
22

33
import android.app.Application;
44
import android.test.ApplicationTestCase;

library/src/main/AndroidManifest.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<manifest package="com.kinda.progressx">
1+
<manifest package="com.developer.kinda">
22

33
<application />
44
</manifest>

library/src/main/java/com/kinda/progressx/ProgressWheel.java renamed to library/src/main/java/com/developer/kinda/ProgressWheel.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.kinda.progressx;
1+
package com.developer.kinda;
22

33
import android.annotation.TargetApi;
44
import android.content.Context;

0 commit comments

Comments
 (0)