* Bump react native to 0.73.6 * iOS changes * Fix gallery * Fix test * Add missing patch * Unify react native navigation patch * Update the rest of libraries * iOS updates * Update mattermost libraries * Fix tests and final bumps * iOS podfile update * Update android locks * Revert webrtc update because it was messing with the tests * Update podfile for webrtc
13 lines
887 B
Diff
13 lines
887 B
Diff
diff --git a/node_modules/react-native-safe-area-context/android/src/main/java/com/th3rdwave/safeareacontext/SafeAreaView.kt b/node_modules/react-native-safe-area-context/android/src/main/java/com/th3rdwave/safeareacontext/SafeAreaView.kt
|
|
index b29e787..074cbcc 100644
|
|
--- a/node_modules/react-native-safe-area-context/android/src/main/java/com/th3rdwave/safeareacontext/SafeAreaView.kt
|
|
+++ b/node_modules/react-native-safe-area-context/android/src/main/java/com/th3rdwave/safeareacontext/SafeAreaView.kt
|
|
@@ -11,7 +11,7 @@ import com.facebook.react.views.view.ReactViewGroup
|
|
import java.util.concurrent.locks.ReentrantLock
|
|
import kotlin.concurrent.withLock
|
|
|
|
-private const val MAX_WAIT_TIME_NANO = 500000000L // 500ms
|
|
+private const val MAX_WAIT_TIME_NANO = 5000000L // 5ms
|
|
|
|
class SafeAreaView(context: Context?) :
|
|
ReactViewGroup(context), ViewTreeObserver.OnPreDrawListener {
|