Skip to content

Commit 3533883

Browse files
committed
chore: fix android xml values and bump kotlin version
1 parent 9152b92 commit 3533883

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

android/app/src/main/res/values/styles.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
55
<item name="android:textColor">#000000</item>
66
<item name="colorPrimaryDark">#000000</item>
7-
<item name="android:statusBarColor">@color/white_background</item>
7+
<item name="android:statusBarColor">@color/white</item>
88
<item name="android:windowTranslucentStatus">true</item>
99
<item name="android:forceDarkAllowed">false</item>
1010
<item name="android:editTextBackground">@drawable/rn_edit_text_material</item>
@@ -22,7 +22,7 @@
2222
<style name="BootTheme" parent="Theme.AppCompat.Light.NoActionBar">
2323
<item name="android:background">@drawable/bootsplash</item>
2424
<item name="android:navigationBarColor">@color/bootsplash_background</item>
25-
<item name="android:statusBarColor">@color/transparent_background</item>
25+
<item name="android:statusBarColor">@android:color/transparent</item>
2626
<item name="android:windowTranslucentStatus">true</item>
2727
<item name="android:forceDarkAllowed">false</item>
2828
</style>

android/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ buildscript {
1111
targetSdkVersion = 33
1212
firebaseIidVersion = "21.1.0" // Needed for react-native-device-info
1313
googlePlayServicesAuthVersion = "16.0.1"
14-
kotlinVersion = "1.5.31"
14+
kotlinVersion = "1.8.0"
1515
if (System.properties['os.arch'] == "aarch64") {
1616
// For M1 Users we need to use the NDK 24 which added support for aarch64
1717
ndkVersion = "24.0.8215888"
1818
} else {
1919
// Otherwise we default to the side-by-side NDK version from AGP.
20-
ndkVersion = "21.4.7075529"
20+
ndkVersion = "23.1.7779620"
2121
}
2222
}
2323
repositories {
@@ -30,7 +30,7 @@ buildscript {
3030
classpath("com.facebook.react:react-native-gradle-plugin")
3131
classpath("de.undercouch:gradle-download-task:5.0.1")
3232
classpath('com.google.gms:google-services:4.3.8')
33-
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.31"
33+
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.0"
3434
// NOTE: Do not place your application dependencies here; they belong
3535
// in the individual module build.gradle files
3636
}

0 commit comments

Comments
 (0)