Skip to content

Commit 77604d9

Browse files
Fix Bugs
1 parent 25e3304 commit 77604d9

File tree

28 files changed

+20
-47
lines changed

28 files changed

+20
-47
lines changed

app/src/androidTest/java/com/developer/kinda/progressx/ApplicationTest.java

-13
This file was deleted.

app/src/main/ic_launcher-web.png

-11.9 KB
Binary file not shown.
-1.79 KB
Binary file not shown.
-982 Bytes
Binary file not shown.
-1.93 KB
Binary file not shown.
-2.91 KB
Binary file not shown.
-4.14 KB
Binary file not shown.

library/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ android {
99
defaultConfig {
1010
minSdkVersion 21
1111
targetSdkVersion 29
12-
versionCode 5
13-
versionName "3.0.19"
12+
versionCode 6
13+
versionName "4.0.19"
1414
}
1515
buildTypes {
1616
release {

library/src/androidTest/java/com/developer/kinda/ApplicationTest.java

-13
This file was deleted.

library/src/main/AndroidManifest.xml

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

33
<application />
44
</manifest>

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

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

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

app/build.gradle renamed to sample/build.gradle

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

66
defaultConfig {
7-
applicationId "com.developer.kinda.progressx"
7+
applicationId "com.developer.progressx.custom"
88
minSdkVersion 21
99
targetSdkVersion 29
10-
versionCode 5
11-
versionName "3.0.19"
10+
versionCode 6
11+
versionName "4.0.19"
1212
}
1313
buildTypes {
1414
release {
File renamed without changes.
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,20 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3-
package="com.developer.kinda.progressx" >
4-
3+
xmlns:tools="http://schemas.android.com/tools"
4+
package="com.developer.progressx.custom" >
55
<application
66
android:allowBackup="true"
7-
android:icon="@drawable/ic_launcher"
7+
android:icon="@mipmap/ic_launcher"
88
android:label="@string/app_name"
9-
android:theme="@style/AppTheme" >
9+
android:theme="@style/AppTheme"
10+
tools:ignore="AllowBackup,GoogleAppIndexingWarning">
1011
<activity
11-
android:name="com.developer.kinda.progressx.MainActivity"
12+
android:name="com.developer.progressx.custom.MainActivity"
1213
android:label="@string/app_name" >
1314
<intent-filter>
1415
<action android:name="android.intent.action.MAIN" />
15-
1616
<category android:name="android.intent.category.LAUNCHER" />
1717
</intent-filter>
1818
</activity>
1919
</application>
20-
21-
</manifest>
20+
</manifest>

sample/src/main/ic_launcher-web.png

25.8 KB
Loading

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.developer.kinda.progressx;
1+
package com.developer.progressx.custom;
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.developer.kinda.ProgressWheel;
16+
import com.developer.progressx.ProgressWheel;
1717

1818
public class MainActivity extends Activity {
1919

app/src/main/res/layout/activity_main.xml renamed to sample/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.developer.kinda.ProgressWheel
81+
<com.developer.progressx.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.developer.kinda.ProgressWheel
130+
<com.developer.progressx.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.developer.kinda.ProgressWheel
160+
<com.developer.progressx.ProgressWheel
161161
android:id="@+id/linear"
162162
android:layout_width="80dp"
163163
android:layout_height="80dp"
2.34 KB
Loading
1.22 KB
Loading
2.86 KB
Loading
Loading
Loading

settings.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
include ':library', ':app'
1+
include ':library', ':sample'

0 commit comments

Comments
 (0)