Skip to content

Commit 657b764

Browse files
committed
logo changed
1 parent 2998b7a commit 657b764

File tree

106 files changed

+232
-1489
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

106 files changed

+232
-1489
lines changed

.idea/compiler.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/gradle.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ dependencies {
5858
implementation 'com.google.android.exoplayer:exoplayer-core:2.19.1'
5959
implementation 'com.google.android.exoplayer:exoplayer-hls:2.19.1'
6060
implementation 'com.google.android.material:material:1.12.0'
61-
implementation 'androidx.constraintlayout:constraintlayout:2.2.0'
61+
implementation 'androidx.constraintlayout:constraintlayout:2.2.1'
6262
implementation 'com.squareup.retrofit2:retrofit:2.9.0'
6363
implementation 'com.squareup.okhttp3:okhttp-urlconnection:4.6.0'
6464
implementation 'com.google.android.exoplayer:extension-okhttp:2.19.1'

app/src/main/AndroidManifest.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
android:dataExtractionRules="@xml/data_extraction_rules"
1212
android:fullBackupContent="@xml/backup_rules"
1313
android:icon="@mipmap/ic_launcher"
14-
android:label="@string/app_name"
1514
android:roundIcon="@mipmap/ic_launcher_round"
15+
android:label="@string/app_name"
1616
android:supportsRtl="true"
1717
android:theme="@style/Theme.KinAni"
1818
tools:targetApi="31" >
@@ -50,4 +50,5 @@
5050
</activity>
5151
</application>
5252

53+
5354
</manifest>
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
3-
<background android:drawable="@drawable/ic_launcher_background"/>
4-
<foreground android:drawable="@mipmap/ic_launcher_foreground"/>
3+
<background android:drawable="@color/ic_launcher_background" />
4+
<foreground android:drawable="@mipmap/ic_launcher_foreground" />
55
</adaptive-icon>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
3-
<background android:drawable="@drawable/ic_launcher_background"/>
3+
<background android:drawable="@color/ic_launcher_background"/>
44
<foreground android:drawable="@mipmap/ic_launcher_foreground"/>
55
</adaptive-icon>
-3.56 KB
Loading
Loading
Loading
-1.89 KB
Loading
Loading
Loading
-6.8 KB
Loading
Loading
Loading
-12.5 KB
Loading
Loading
Loading
-23.2 KB
Loading
Loading
Loading

app/src/main/res/values-night/colors.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,5 @@
1616
<color name="skeleton">#DDDDDD</color>
1717
<color name="primaryToastColor">#ffffff</color>
1818
<color name="primaryToastTextColor">#000000</color>
19+
<color name="ic_launcher_background">#DDF1F3</color>
1920
</resources>

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,6 @@
1717
<color name="skeleton">#50000000</color>
1818
<color name="primaryToastColor">#80484848</color>
1919
<color name="primaryToastTextColor">#ffffff</color>
20+
<color name="ic_launcher_background">#DDF1F3</color>
2021

2122
</resources>

gradle/wrapper/gradle-wrapper.jar

-15.4 KB
Binary file not shown.
Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
#Wed Dec 21 21:42:40 IST 2022
21
distributionBase=GRADLE_USER_HOME
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-bin.zip
42
distributionPath=wrapper/dists
5-
zipStorePath=wrapper/dists
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
4+
networkTimeout=10000
5+
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME
7+
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)