mirror of
https://github.com/tooot-app/app
synced 2025-02-01 19:16:56 +01:00
Test iOS
Known Android build failure
This commit is contained in:
parent
3154540bba
commit
f1ba7ce377
74
.yarn/patches/react-native-npm-0.72.0-66f5fd62b3.patch
Normal file
74
.yarn/patches/react-native-npm-0.72.0-66f5fd62b3.patch
Normal file
@ -0,0 +1,74 @@
|
||||
diff --git a/Libraries/Utilities/setAndForwardRef.js b/Libraries/Utilities/setAndForwardRef.js
|
||||
new file mode 100644
|
||||
index 0000000000000000000000000000000000000000..e67b530b9a933b68e219e2b8cec2a66dc8f51323
|
||||
--- /dev/null
|
||||
+++ b/Libraries/Utilities/setAndForwardRef.js
|
||||
@@ -0,0 +1,68 @@
|
||||
+/**
|
||||
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
|
||||
+ *
|
||||
+ * This source code is licensed under the MIT license found in the
|
||||
+ * LICENSE file in the root directory of this source tree.
|
||||
+ *
|
||||
+ * @format
|
||||
+ * @flow
|
||||
+ */
|
||||
+
|
||||
+'use strict'
|
||||
+
|
||||
+import type { ElementRef, Ref } from 'react'
|
||||
+
|
||||
+type Args = $ReadOnly<{|
|
||||
+ getForwardedRef: () => ?Ref<any>,
|
||||
+ setLocalRef: (ref: ElementRef<any>) => mixed
|
||||
+|}>
|
||||
+
|
||||
+/**
|
||||
+ * This is a helper function for when a component needs to be able to forward a ref
|
||||
+ * to a child component, but still needs to have access to that component as part of
|
||||
+ * its implementation.
|
||||
+ *
|
||||
+ * Its main use case is in wrappers for native components.
|
||||
+ *
|
||||
+ * Usage:
|
||||
+ *
|
||||
+ * class MyView extends React.Component {
|
||||
+ * _nativeRef = null;
|
||||
+ *
|
||||
+ * _setNativeRef = setAndForwardRef({
|
||||
+ * getForwardedRef: () => this.props.forwardedRef,
|
||||
+ * setLocalRef: ref => {
|
||||
+ * this._nativeRef = ref;
|
||||
+ * },
|
||||
+ * });
|
||||
+ *
|
||||
+ * render() {
|
||||
+ * return <View ref={this._setNativeRef} />;
|
||||
+ * }
|
||||
+ * }
|
||||
+ *
|
||||
+ * const MyViewWithRef = React.forwardRef((props, ref) => (
|
||||
+ * <MyView {...props} forwardedRef={ref} />
|
||||
+ * ));
|
||||
+ *
|
||||
+ * module.exports = MyViewWithRef;
|
||||
+ */
|
||||
+
|
||||
+function setAndForwardRef({ getForwardedRef, setLocalRef }: Args): (ref: ElementRef<any>) => void {
|
||||
+ return function forwardRef(ref: ElementRef<any>) {
|
||||
+ const forwardedRef = getForwardedRef()
|
||||
+
|
||||
+ setLocalRef(ref)
|
||||
+
|
||||
+ // Forward to user ref prop (if one has been specified)
|
||||
+ if (typeof forwardedRef === 'function') {
|
||||
+ // Handle function-based refs. String-based refs are handled as functions.
|
||||
+ forwardedRef(ref)
|
||||
+ } else if (typeof forwardedRef === 'object' && forwardedRef != null) {
|
||||
+ // Handle createRef-based refs
|
||||
+ forwardedRef.current = ref
|
||||
+ }
|
||||
+ }
|
||||
+}
|
||||
+
|
||||
+module.exports = setAndForwardRef
|
2
Gemfile
2
Gemfile
@ -1,6 +1,6 @@
|
||||
source "https://rubygems.org"
|
||||
|
||||
gem "fastlane"
|
||||
gem 'cocoapods'
|
||||
gem 'cocoapods', '~> 1.12'
|
||||
plugins_path = File.join(File.dirname(__FILE__), 'fastlane', 'Pluginfile')
|
||||
eval_gemfile(plugins_path) if File.exist?(plugins_path)
|
||||
|
@ -2,8 +2,6 @@ apply plugin: "com.android.application"
|
||||
apply plugin: "com.facebook.react"
|
||||
apply plugin: 'com.google.gms.google-services'
|
||||
|
||||
import com.android.build.OutputFile
|
||||
|
||||
/**
|
||||
* This is the configuration block to customize your React Native Android app.
|
||||
* By default you don't need to apply any configuration, just uncomment the lines you need.
|
||||
@ -15,8 +13,8 @@ react {
|
||||
// root = file("../")
|
||||
// The folder where the react-native NPM package is. Default is ../node_modules/react-native
|
||||
// reactNativeDir = file("../node_modules/react-native")
|
||||
// The folder where the react-native Codegen package is. Default is ../node_modules/react-native-codegen
|
||||
// codegenDir = file("../node_modules/react-native-codegen")
|
||||
// The folder where the react-native Codegen package is. Default is ../node_modules/@react-native/codegen
|
||||
// codegenDir = file("../node_modules/@react-native/codegen")
|
||||
// The cli.js file which is the React Native CLI entrypoint. Default is ../node_modules/react-native/cli.js
|
||||
// cliFile = file("../node_modules/react-native/cli.js")
|
||||
/* Variants */
|
||||
@ -51,14 +49,6 @@ react {
|
||||
// hermesFlags = ["-O", "-output-source-map"]
|
||||
}
|
||||
|
||||
/**
|
||||
* Set this to true to create four separate APKs instead of one,
|
||||
* one for each native architecture. This is useful if you don't
|
||||
* use App Bundles (https://developer.android.com/guide/app-bundle/)
|
||||
* and want to have separate APKs to upload to the Play Store.
|
||||
*/
|
||||
def enableSeparateBuildPerCPUArchitecture = false
|
||||
|
||||
/**
|
||||
* Set this to true to Run Proguard on Release builds to minify the Java bytecode.
|
||||
*/
|
||||
@ -77,16 +67,6 @@ def enableProguardInReleaseBuilds = false
|
||||
*/
|
||||
def jscFlavor = 'org.webkit:android-jsc:+'
|
||||
|
||||
/**
|
||||
* Private function to get the list of Native Architectures you want to build.
|
||||
* This reads the value from reactNativeArchitectures in your gradle.properties
|
||||
* file and works together with the --active-arch-only flag of react-native run-android.
|
||||
*/
|
||||
def reactNativeArchitectures() {
|
||||
def value = project.getProperties().get("reactNativeArchitectures")
|
||||
return value ? value.split(",") : ["armeabi-v7a", "x86", "x86_64", "arm64-v8a"]
|
||||
}
|
||||
|
||||
android {
|
||||
ndkVersion rootProject.ext.ndkVersion
|
||||
|
||||
@ -105,14 +85,6 @@ android {
|
||||
versionCode 50
|
||||
versionName "0.2"
|
||||
}
|
||||
splits {
|
||||
abi {
|
||||
reset()
|
||||
enable enableSeparateBuildPerCPUArchitecture
|
||||
universalApk false // If true, also generate a universal APK
|
||||
include (*reactNativeArchitectures())
|
||||
}
|
||||
}
|
||||
signingConfigs {
|
||||
debug {
|
||||
storeFile file('debug.keystore')
|
||||
@ -133,28 +105,9 @@ android {
|
||||
proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
|
||||
}
|
||||
}
|
||||
|
||||
// applicationVariants are e.g. debug, release
|
||||
applicationVariants.all { variant ->
|
||||
variant.outputs.each { output ->
|
||||
// For each separate APK per architecture, set a unique version code as described here:
|
||||
// https://developer.android.com/studio/build/configure-apk-splits.html
|
||||
def versionCodes = ["armeabi-v7a": 1, "x86": 2, "arm64-v8a": 3, "x86_64": 4]
|
||||
def abi = output.getFilter(OutputFile.ABI)
|
||||
if (abi != null) { // null for the universal-debug, universal-release variants
|
||||
output.versionCodeOverride =
|
||||
defaultConfig.versionCode * 1000 + versionCodes.get(abi)
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation ("androidx.lifecycle:lifecycle-runtime-ktx:2.3.0") {
|
||||
force = true
|
||||
}
|
||||
|
||||
def isGifEnabled = (findProperty('expo.gif.enabled') ?: "") == "true";
|
||||
def isWebpEnabled = (findProperty('expo.webp.enabled') ?: "") == "true";
|
||||
def isWebpAnimatedEnabled = (findProperty('expo.webp.animated') ?: "") == "true";
|
||||
@ -182,7 +135,6 @@ dependencies {
|
||||
|
||||
// The version of react-native is set by the React Native Gradle Plugin
|
||||
implementation("com.facebook.react:react-android")
|
||||
implementation("androidx.swiperefreshlayout:swiperefreshlayout:1.0.0")
|
||||
debugImplementation("com.facebook.flipper:flipper:${FLIPPER_VERSION}")
|
||||
debugImplementation("com.facebook.flipper:flipper-network-plugin:${FLIPPER_VERSION}") {
|
||||
exclude group:'com.squareup.okhttp3', module:'okhttp'
|
||||
|
@ -34,9 +34,6 @@ public class MainActivity extends ReactActivity {
|
||||
this,
|
||||
getMainComponentName(),
|
||||
// If you opted-in for the New Architecture, we enable the Fabric Renderer.
|
||||
DefaultNewArchitectureEntryPoint.getFabricEnabled(), // fabricEnabled
|
||||
// If you opted-in for the New Architecture, we enable Concurrent React (i.e. React 18).
|
||||
DefaultNewArchitectureEntryPoint.getConcurrentReactEnabled() // concurrentRootEnabled
|
||||
);
|
||||
DefaultNewArchitectureEntryPoint.getFabricEnabled());
|
||||
}
|
||||
}
|
||||
|
@ -17,7 +17,7 @@ buildscript {
|
||||
jcenter()
|
||||
}
|
||||
dependencies {
|
||||
classpath("com.android.tools.build:gradle:7.4.1")
|
||||
classpath("com.android.tools.build:gradle")
|
||||
classpath("com.facebook.react:react-native-gradle-plugin")
|
||||
classpath 'com.google.gms:google-services:4.3.14'
|
||||
}
|
||||
|
@ -26,7 +26,7 @@ android.useAndroidX=true
|
||||
android.enableJetifier=true
|
||||
|
||||
# Version of flipper SDK to use with React Native
|
||||
FLIPPER_VERSION=0.176.1
|
||||
FLIPPER_VERSION=0.182.0
|
||||
|
||||
# Use this property to specify which architecture you want to build.
|
||||
# You can also override it from the CLI using
|
||||
|
BIN
android/gradle/wrapper/gradle-wrapper.jar
vendored
BIN
android/gradle/wrapper/gradle-wrapper.jar
vendored
Binary file not shown.
@ -1,5 +1,6 @@
|
||||
distributionBase=GRADLE_USER_HOME
|
||||
distributionPath=wrapper/dists
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-all.zip
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0.1-all.zip
|
||||
networkTimeout=10000
|
||||
zipStoreBase=GRADLE_USER_HOME
|
||||
zipStorePath=wrapper/dists
|
||||
|
16
android/gradlew
vendored
16
android/gradlew
vendored
@ -37,10 +37,11 @@ do
|
||||
*) app_path=$APP_HOME$link ;;
|
||||
esac
|
||||
done
|
||||
APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit
|
||||
|
||||
APP_NAME="Gradle"
|
||||
# This is normally unused
|
||||
# shellcheck disable=SC2034
|
||||
APP_BASE_NAME=${0##*/}
|
||||
APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit
|
||||
|
||||
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
|
||||
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
|
||||
@ -99,12 +100,16 @@ fi
|
||||
if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then
|
||||
case $MAX_FD in #(
|
||||
max*)
|
||||
# In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked.
|
||||
# shellcheck disable=SC3045
|
||||
MAX_FD=$( ulimit -H -n ) ||
|
||||
warn "Could not query maximum file descriptor limit"
|
||||
esac
|
||||
case $MAX_FD in #(
|
||||
'' | soft) :;; #(
|
||||
*)
|
||||
# In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked.
|
||||
# shellcheck disable=SC3045
|
||||
ulimit -n "$MAX_FD" ||
|
||||
warn "Could not set maximum file descriptor limit to $MAX_FD"
|
||||
esac
|
||||
@ -157,6 +162,13 @@ set -- \
|
||||
-classpath "$CLASSPATH" \
|
||||
org.gradle.wrapper.GradleWrapperMain \
|
||||
"$@"
|
||||
|
||||
# Stop when "xargs" is not available.
|
||||
if ! command -v xargs >/dev/null 2>&1
|
||||
then
|
||||
die "xargs is not available"
|
||||
fi
|
||||
|
||||
# Use "xargs" to parse quoted args.
|
||||
#
|
||||
# With -n1 it outputs one arg per line, with the quotes and backslashes removed.
|
||||
|
15
android/gradlew.bat
vendored
15
android/gradlew.bat
vendored
@ -14,7 +14,7 @@
|
||||
@rem limitations under the License.
|
||||
@rem
|
||||
|
||||
@if "%DEBUG%" == "" @echo off
|
||||
@if "%DEBUG%"=="" @echo off
|
||||
@rem ##########################################################################
|
||||
@rem
|
||||
@rem Gradle startup script for Windows
|
||||
@ -25,7 +25,8 @@
|
||||
if "%OS%"=="Windows_NT" setlocal
|
||||
|
||||
set DIRNAME=%~dp0
|
||||
if "%DIRNAME%" == "" set DIRNAME=.
|
||||
if "%DIRNAME%"=="" set DIRNAME=.
|
||||
@rem This is normally unused
|
||||
set APP_BASE_NAME=%~n0
|
||||
set APP_HOME=%DIRNAME%
|
||||
|
||||
@ -40,7 +41,7 @@ if defined JAVA_HOME goto findJavaFromJavaHome
|
||||
|
||||
set JAVA_EXE=java.exe
|
||||
%JAVA_EXE% -version >NUL 2>&1
|
||||
if "%ERRORLEVEL%" == "0" goto execute
|
||||
if %ERRORLEVEL% equ 0 goto execute
|
||||
|
||||
echo.
|
||||
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
|
||||
@ -74,13 +75,15 @@ set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
|
||||
|
||||
:end
|
||||
@rem End local scope for the variables with windows NT shell
|
||||
if "%ERRORLEVEL%"=="0" goto mainEnd
|
||||
if %ERRORLEVEL% equ 0 goto mainEnd
|
||||
|
||||
:fail
|
||||
rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
|
||||
rem the _cmd.exe /c_ return code!
|
||||
if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
|
||||
exit /b 1
|
||||
set EXIT_CODE=%ERRORLEVEL%
|
||||
if %EXIT_CODE% equ 0 set EXIT_CODE=1
|
||||
if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE%
|
||||
exit /b %EXIT_CODE%
|
||||
|
||||
:mainEnd
|
||||
if "%OS%"=="Windows_NT" endlocal
|
||||
|
@ -8,4 +8,4 @@ applyNativeModulesSettingsGradle(settings)
|
||||
|
||||
include ':app'
|
||||
|
||||
includeBuild('../node_modules/react-native-gradle-plugin')
|
||||
includeBuild('../node_modules/@react-native/gradle-plugin')
|
||||
|
12
ios/Podfile
12
ios/Podfile
@ -1,6 +1,11 @@
|
||||
require File.join(File.dirname(`node --print "require.resolve('expo/package.json')"`), "scripts/autolinking")
|
||||
require File.join(File.dirname(`node --print "require.resolve('react-native/package.json')"`), "scripts/react_native_pods")
|
||||
require File.join(File.dirname(`node --print "require.resolve('@react-native-community/cli-platform-ios/package.json')"`), "native_modules")
|
||||
|
||||
# Resolve react_native_pods.rb with node to allow for hoisting
|
||||
require Pod::Executable.execute_command('node', ['-p',
|
||||
'require.resolve(
|
||||
"react-native/scripts/react_native_pods.rb",
|
||||
{paths: [process.argv[1]]},
|
||||
)', __dir__]).strip
|
||||
|
||||
platform :ios, '13.0'
|
||||
prepare_react_native_project!
|
||||
@ -33,8 +38,7 @@ target 'tooot' do
|
||||
post_install do |installer|
|
||||
react_native_post_install(
|
||||
installer,
|
||||
# Set `mac_catalyst_enabled` to `true` in order to apply patches
|
||||
# necessary for Mac Catalyst builds
|
||||
config[:reactNativePath],
|
||||
:mac_catalyst_enabled => false
|
||||
)
|
||||
__apply_Xcode_12_5_M1_post_install_workaround(installer)
|
||||
|
556
ios/Podfile.lock
556
ios/Podfile.lock
@ -50,19 +50,19 @@ PODS:
|
||||
- EXSplashScreen (0.18.2):
|
||||
- ExpoModulesCore
|
||||
- React-Core
|
||||
- FBLazyVector (0.71.11)
|
||||
- FBReactNativeSpec (0.71.11):
|
||||
- FBLazyVector (0.72.0)
|
||||
- FBReactNativeSpec (0.72.0):
|
||||
- RCT-Folly (= 2021.07.22.00)
|
||||
- RCTRequired (= 0.71.11)
|
||||
- RCTTypeSafety (= 0.71.11)
|
||||
- React-Core (= 0.71.11)
|
||||
- React-jsi (= 0.71.11)
|
||||
- ReactCommon/turbomodule/core (= 0.71.11)
|
||||
- RCTRequired (= 0.72.0)
|
||||
- RCTTypeSafety (= 0.72.0)
|
||||
- React-Core (= 0.72.0)
|
||||
- React-jsi (= 0.72.0)
|
||||
- ReactCommon/turbomodule/core (= 0.72.0)
|
||||
- fmt (6.2.1)
|
||||
- glog (0.3.5)
|
||||
- hermes-engine (0.71.11):
|
||||
- hermes-engine/Pre-built (= 0.71.11)
|
||||
- hermes-engine/Pre-built (0.71.11)
|
||||
- hermes-engine (0.72.0):
|
||||
- hermes-engine/Pre-built (= 0.72.0)
|
||||
- hermes-engine/Pre-built (0.72.0)
|
||||
- libaom (3.0.0):
|
||||
- libvmaf (>= 2.2.0)
|
||||
- libavif (0.11.1):
|
||||
@ -102,27 +102,29 @@ PODS:
|
||||
- fmt (~> 6.2.1)
|
||||
- glog
|
||||
- libevent
|
||||
- RCTRequired (0.71.11)
|
||||
- RCTTypeSafety (0.71.11):
|
||||
- FBLazyVector (= 0.71.11)
|
||||
- RCTRequired (= 0.71.11)
|
||||
- React-Core (= 0.71.11)
|
||||
- React (0.71.11):
|
||||
- React-Core (= 0.71.11)
|
||||
- React-Core/DevSupport (= 0.71.11)
|
||||
- React-Core/RCTWebSocket (= 0.71.11)
|
||||
- React-RCTActionSheet (= 0.71.11)
|
||||
- React-RCTAnimation (= 0.71.11)
|
||||
- React-RCTBlob (= 0.71.11)
|
||||
- React-RCTImage (= 0.71.11)
|
||||
- React-RCTLinking (= 0.71.11)
|
||||
- React-RCTNetwork (= 0.71.11)
|
||||
- React-RCTSettings (= 0.71.11)
|
||||
- React-RCTText (= 0.71.11)
|
||||
- React-RCTVibration (= 0.71.11)
|
||||
- React-callinvoker (0.71.11)
|
||||
- React-Codegen (0.71.11):
|
||||
- RCTRequired (0.72.0)
|
||||
- RCTTypeSafety (0.72.0):
|
||||
- FBLazyVector (= 0.72.0)
|
||||
- RCTRequired (= 0.72.0)
|
||||
- React-Core (= 0.72.0)
|
||||
- React (0.72.0):
|
||||
- React-Core (= 0.72.0)
|
||||
- React-Core/DevSupport (= 0.72.0)
|
||||
- React-Core/RCTWebSocket (= 0.72.0)
|
||||
- React-RCTActionSheet (= 0.72.0)
|
||||
- React-RCTAnimation (= 0.72.0)
|
||||
- React-RCTBlob (= 0.72.0)
|
||||
- React-RCTImage (= 0.72.0)
|
||||
- React-RCTLinking (= 0.72.0)
|
||||
- React-RCTNetwork (= 0.72.0)
|
||||
- React-RCTSettings (= 0.72.0)
|
||||
- React-RCTText (= 0.72.0)
|
||||
- React-RCTVibration (= 0.72.0)
|
||||
- React-callinvoker (0.72.0)
|
||||
- React-Codegen (0.72.0):
|
||||
- DoubleConversion
|
||||
- FBReactNativeSpec
|
||||
- glog
|
||||
- hermes-engine
|
||||
- RCT-Folly
|
||||
- RCTRequired
|
||||
@ -130,211 +132,257 @@ PODS:
|
||||
- React-Core
|
||||
- React-jsi
|
||||
- React-jsiexecutor
|
||||
- React-NativeModulesApple
|
||||
- React-rncore
|
||||
- ReactCommon/turbomodule/bridging
|
||||
- ReactCommon/turbomodule/core
|
||||
- React-Core (0.71.11):
|
||||
- React-Core (0.72.0):
|
||||
- glog
|
||||
- hermes-engine
|
||||
- RCT-Folly (= 2021.07.22.00)
|
||||
- React-Core/Default (= 0.71.11)
|
||||
- React-cxxreact (= 0.71.11)
|
||||
- React-Core/Default (= 0.72.0)
|
||||
- React-cxxreact
|
||||
- React-hermes
|
||||
- React-jsi (= 0.71.11)
|
||||
- React-jsiexecutor (= 0.71.11)
|
||||
- React-perflogger (= 0.71.11)
|
||||
- React-jsi
|
||||
- React-jsiexecutor
|
||||
- React-perflogger
|
||||
- React-runtimeexecutor
|
||||
- React-utils
|
||||
- SocketRocket (= 0.6.0)
|
||||
- Yoga
|
||||
- React-Core/CoreModulesHeaders (0.71.11):
|
||||
- React-Core/CoreModulesHeaders (0.72.0):
|
||||
- glog
|
||||
- hermes-engine
|
||||
- RCT-Folly (= 2021.07.22.00)
|
||||
- React-Core/Default
|
||||
- React-cxxreact (= 0.71.11)
|
||||
- React-cxxreact
|
||||
- React-hermes
|
||||
- React-jsi (= 0.71.11)
|
||||
- React-jsiexecutor (= 0.71.11)
|
||||
- React-perflogger (= 0.71.11)
|
||||
- React-jsi
|
||||
- React-jsiexecutor
|
||||
- React-perflogger
|
||||
- React-runtimeexecutor
|
||||
- React-utils
|
||||
- SocketRocket (= 0.6.0)
|
||||
- Yoga
|
||||
- React-Core/Default (0.71.11):
|
||||
- React-Core/Default (0.72.0):
|
||||
- glog
|
||||
- hermes-engine
|
||||
- RCT-Folly (= 2021.07.22.00)
|
||||
- React-cxxreact (= 0.71.11)
|
||||
- React-cxxreact
|
||||
- React-hermes
|
||||
- React-jsi (= 0.71.11)
|
||||
- React-jsiexecutor (= 0.71.11)
|
||||
- React-perflogger (= 0.71.11)
|
||||
- React-jsi
|
||||
- React-jsiexecutor
|
||||
- React-perflogger
|
||||
- React-runtimeexecutor
|
||||
- React-utils
|
||||
- SocketRocket (= 0.6.0)
|
||||
- Yoga
|
||||
- React-Core/DevSupport (0.71.11):
|
||||
- React-Core/DevSupport (0.72.0):
|
||||
- glog
|
||||
- hermes-engine
|
||||
- RCT-Folly (= 2021.07.22.00)
|
||||
- React-Core/Default (= 0.71.11)
|
||||
- React-Core/RCTWebSocket (= 0.71.11)
|
||||
- React-cxxreact (= 0.71.11)
|
||||
- React-Core/Default (= 0.72.0)
|
||||
- React-Core/RCTWebSocket (= 0.72.0)
|
||||
- React-cxxreact
|
||||
- React-hermes
|
||||
- React-jsi (= 0.71.11)
|
||||
- React-jsiexecutor (= 0.71.11)
|
||||
- React-jsinspector (= 0.71.11)
|
||||
- React-perflogger (= 0.71.11)
|
||||
- React-jsi
|
||||
- React-jsiexecutor
|
||||
- React-jsinspector (= 0.72.0)
|
||||
- React-perflogger
|
||||
- React-runtimeexecutor
|
||||
- React-utils
|
||||
- SocketRocket (= 0.6.0)
|
||||
- Yoga
|
||||
- React-Core/RCTActionSheetHeaders (0.71.11):
|
||||
- React-Core/RCTActionSheetHeaders (0.72.0):
|
||||
- glog
|
||||
- hermes-engine
|
||||
- RCT-Folly (= 2021.07.22.00)
|
||||
- React-Core/Default
|
||||
- React-cxxreact (= 0.71.11)
|
||||
- React-cxxreact
|
||||
- React-hermes
|
||||
- React-jsi (= 0.71.11)
|
||||
- React-jsiexecutor (= 0.71.11)
|
||||
- React-perflogger (= 0.71.11)
|
||||
- React-jsi
|
||||
- React-jsiexecutor
|
||||
- React-perflogger
|
||||
- React-runtimeexecutor
|
||||
- React-utils
|
||||
- SocketRocket (= 0.6.0)
|
||||
- Yoga
|
||||
- React-Core/RCTAnimationHeaders (0.71.11):
|
||||
- React-Core/RCTAnimationHeaders (0.72.0):
|
||||
- glog
|
||||
- hermes-engine
|
||||
- RCT-Folly (= 2021.07.22.00)
|
||||
- React-Core/Default
|
||||
- React-cxxreact (= 0.71.11)
|
||||
- React-cxxreact
|
||||
- React-hermes
|
||||
- React-jsi (= 0.71.11)
|
||||
- React-jsiexecutor (= 0.71.11)
|
||||
- React-perflogger (= 0.71.11)
|
||||
- React-jsi
|
||||
- React-jsiexecutor
|
||||
- React-perflogger
|
||||
- React-runtimeexecutor
|
||||
- React-utils
|
||||
- SocketRocket (= 0.6.0)
|
||||
- Yoga
|
||||
- React-Core/RCTBlobHeaders (0.71.11):
|
||||
- React-Core/RCTBlobHeaders (0.72.0):
|
||||
- glog
|
||||
- hermes-engine
|
||||
- RCT-Folly (= 2021.07.22.00)
|
||||
- React-Core/Default
|
||||
- React-cxxreact (= 0.71.11)
|
||||
- React-cxxreact
|
||||
- React-hermes
|
||||
- React-jsi (= 0.71.11)
|
||||
- React-jsiexecutor (= 0.71.11)
|
||||
- React-perflogger (= 0.71.11)
|
||||
- React-jsi
|
||||
- React-jsiexecutor
|
||||
- React-perflogger
|
||||
- React-runtimeexecutor
|
||||
- React-utils
|
||||
- SocketRocket (= 0.6.0)
|
||||
- Yoga
|
||||
- React-Core/RCTImageHeaders (0.71.11):
|
||||
- React-Core/RCTImageHeaders (0.72.0):
|
||||
- glog
|
||||
- hermes-engine
|
||||
- RCT-Folly (= 2021.07.22.00)
|
||||
- React-Core/Default
|
||||
- React-cxxreact (= 0.71.11)
|
||||
- React-cxxreact
|
||||
- React-hermes
|
||||
- React-jsi (= 0.71.11)
|
||||
- React-jsiexecutor (= 0.71.11)
|
||||
- React-perflogger (= 0.71.11)
|
||||
- React-jsi
|
||||
- React-jsiexecutor
|
||||
- React-perflogger
|
||||
- React-runtimeexecutor
|
||||
- React-utils
|
||||
- SocketRocket (= 0.6.0)
|
||||
- Yoga
|
||||
- React-Core/RCTLinkingHeaders (0.71.11):
|
||||
- React-Core/RCTLinkingHeaders (0.72.0):
|
||||
- glog
|
||||
- hermes-engine
|
||||
- RCT-Folly (= 2021.07.22.00)
|
||||
- React-Core/Default
|
||||
- React-cxxreact (= 0.71.11)
|
||||
- React-cxxreact
|
||||
- React-hermes
|
||||
- React-jsi (= 0.71.11)
|
||||
- React-jsiexecutor (= 0.71.11)
|
||||
- React-perflogger (= 0.71.11)
|
||||
- React-jsi
|
||||
- React-jsiexecutor
|
||||
- React-perflogger
|
||||
- React-runtimeexecutor
|
||||
- React-utils
|
||||
- SocketRocket (= 0.6.0)
|
||||
- Yoga
|
||||
- React-Core/RCTNetworkHeaders (0.71.11):
|
||||
- React-Core/RCTNetworkHeaders (0.72.0):
|
||||
- glog
|
||||
- hermes-engine
|
||||
- RCT-Folly (= 2021.07.22.00)
|
||||
- React-Core/Default
|
||||
- React-cxxreact (= 0.71.11)
|
||||
- React-cxxreact
|
||||
- React-hermes
|
||||
- React-jsi (= 0.71.11)
|
||||
- React-jsiexecutor (= 0.71.11)
|
||||
- React-perflogger (= 0.71.11)
|
||||
- React-jsi
|
||||
- React-jsiexecutor
|
||||
- React-perflogger
|
||||
- React-runtimeexecutor
|
||||
- React-utils
|
||||
- SocketRocket (= 0.6.0)
|
||||
- Yoga
|
||||
- React-Core/RCTSettingsHeaders (0.71.11):
|
||||
- React-Core/RCTSettingsHeaders (0.72.0):
|
||||
- glog
|
||||
- hermes-engine
|
||||
- RCT-Folly (= 2021.07.22.00)
|
||||
- React-Core/Default
|
||||
- React-cxxreact (= 0.71.11)
|
||||
- React-cxxreact
|
||||
- React-hermes
|
||||
- React-jsi (= 0.71.11)
|
||||
- React-jsiexecutor (= 0.71.11)
|
||||
- React-perflogger (= 0.71.11)
|
||||
- React-jsi
|
||||
- React-jsiexecutor
|
||||
- React-perflogger
|
||||
- React-runtimeexecutor
|
||||
- React-utils
|
||||
- SocketRocket (= 0.6.0)
|
||||
- Yoga
|
||||
- React-Core/RCTTextHeaders (0.71.11):
|
||||
- React-Core/RCTTextHeaders (0.72.0):
|
||||
- glog
|
||||
- hermes-engine
|
||||
- RCT-Folly (= 2021.07.22.00)
|
||||
- React-Core/Default
|
||||
- React-cxxreact (= 0.71.11)
|
||||
- React-cxxreact
|
||||
- React-hermes
|
||||
- React-jsi (= 0.71.11)
|
||||
- React-jsiexecutor (= 0.71.11)
|
||||
- React-perflogger (= 0.71.11)
|
||||
- React-jsi
|
||||
- React-jsiexecutor
|
||||
- React-perflogger
|
||||
- React-runtimeexecutor
|
||||
- React-utils
|
||||
- SocketRocket (= 0.6.0)
|
||||
- Yoga
|
||||
- React-Core/RCTVibrationHeaders (0.71.11):
|
||||
- React-Core/RCTVibrationHeaders (0.72.0):
|
||||
- glog
|
||||
- hermes-engine
|
||||
- RCT-Folly (= 2021.07.22.00)
|
||||
- React-Core/Default
|
||||
- React-cxxreact (= 0.71.11)
|
||||
- React-cxxreact
|
||||
- React-hermes
|
||||
- React-jsi (= 0.71.11)
|
||||
- React-jsiexecutor (= 0.71.11)
|
||||
- React-perflogger (= 0.71.11)
|
||||
- React-jsi
|
||||
- React-jsiexecutor
|
||||
- React-perflogger
|
||||
- React-runtimeexecutor
|
||||
- React-utils
|
||||
- SocketRocket (= 0.6.0)
|
||||
- Yoga
|
||||
- React-Core/RCTWebSocket (0.71.11):
|
||||
- React-Core/RCTWebSocket (0.72.0):
|
||||
- glog
|
||||
- hermes-engine
|
||||
- RCT-Folly (= 2021.07.22.00)
|
||||
- React-Core/Default (= 0.71.11)
|
||||
- React-cxxreact (= 0.71.11)
|
||||
- React-Core/Default (= 0.72.0)
|
||||
- React-cxxreact
|
||||
- React-hermes
|
||||
- React-jsi (= 0.71.11)
|
||||
- React-jsiexecutor (= 0.71.11)
|
||||
- React-perflogger (= 0.71.11)
|
||||
- React-jsi
|
||||
- React-jsiexecutor
|
||||
- React-perflogger
|
||||
- React-runtimeexecutor
|
||||
- React-utils
|
||||
- SocketRocket (= 0.6.0)
|
||||
- Yoga
|
||||
- React-CoreModules (0.71.11):
|
||||
- React-CoreModules (0.72.0):
|
||||
- RCT-Folly (= 2021.07.22.00)
|
||||
- RCTTypeSafety (= 0.71.11)
|
||||
- React-Codegen (= 0.71.11)
|
||||
- React-Core/CoreModulesHeaders (= 0.71.11)
|
||||
- React-jsi (= 0.71.11)
|
||||
- RCTTypeSafety (= 0.72.0)
|
||||
- React-Codegen (= 0.72.0)
|
||||
- React-Core/CoreModulesHeaders (= 0.72.0)
|
||||
- React-jsi (= 0.72.0)
|
||||
- React-RCTBlob
|
||||
- React-RCTImage (= 0.71.11)
|
||||
- ReactCommon/turbomodule/core (= 0.71.11)
|
||||
- React-cxxreact (0.71.11):
|
||||
- React-RCTImage (= 0.72.0)
|
||||
- ReactCommon/turbomodule/core (= 0.72.0)
|
||||
- SocketRocket (= 0.6.0)
|
||||
- React-cxxreact (0.72.0):
|
||||
- boost (= 1.76.0)
|
||||
- DoubleConversion
|
||||
- glog
|
||||
- hermes-engine
|
||||
- RCT-Folly (= 2021.07.22.00)
|
||||
- React-callinvoker (= 0.71.11)
|
||||
- React-jsi (= 0.71.11)
|
||||
- React-jsinspector (= 0.71.11)
|
||||
- React-logger (= 0.71.11)
|
||||
- React-perflogger (= 0.71.11)
|
||||
- React-runtimeexecutor (= 0.71.11)
|
||||
- React-hermes (0.71.11):
|
||||
- React-callinvoker (= 0.72.0)
|
||||
- React-jsi (= 0.72.0)
|
||||
- React-jsinspector (= 0.72.0)
|
||||
- React-logger (= 0.72.0)
|
||||
- React-perflogger (= 0.72.0)
|
||||
- React-runtimeexecutor (= 0.72.0)
|
||||
- React-debug (0.72.0)
|
||||
- React-hermes (0.72.0):
|
||||
- DoubleConversion
|
||||
- glog
|
||||
- hermes-engine
|
||||
- RCT-Folly (= 2021.07.22.00)
|
||||
- RCT-Folly/Futures (= 2021.07.22.00)
|
||||
- React-cxxreact (= 0.71.11)
|
||||
- React-cxxreact (= 0.72.0)
|
||||
- React-jsi
|
||||
- React-jsiexecutor (= 0.71.11)
|
||||
- React-jsinspector (= 0.71.11)
|
||||
- React-perflogger (= 0.71.11)
|
||||
- React-jsi (0.71.11):
|
||||
- React-jsiexecutor (= 0.72.0)
|
||||
- React-jsinspector (= 0.72.0)
|
||||
- React-perflogger (= 0.72.0)
|
||||
- React-jsi (0.72.0):
|
||||
- boost (= 1.76.0)
|
||||
- DoubleConversion
|
||||
- glog
|
||||
- hermes-engine
|
||||
- RCT-Folly (= 2021.07.22.00)
|
||||
- React-jsiexecutor (0.71.11):
|
||||
- React-jsiexecutor (0.72.0):
|
||||
- DoubleConversion
|
||||
- glog
|
||||
- hermes-engine
|
||||
- RCT-Folly (= 2021.07.22.00)
|
||||
- React-cxxreact (= 0.71.11)
|
||||
- React-jsi (= 0.71.11)
|
||||
- React-perflogger (= 0.71.11)
|
||||
- React-jsinspector (0.71.11)
|
||||
- React-logger (0.71.11):
|
||||
- React-cxxreact (= 0.72.0)
|
||||
- React-jsi (= 0.72.0)
|
||||
- React-perflogger (= 0.72.0)
|
||||
- React-jsinspector (0.72.0)
|
||||
- React-logger (0.72.0):
|
||||
- glog
|
||||
- react-native-blur (4.3.2):
|
||||
- React-Core
|
||||
@ -366,90 +414,116 @@ PODS:
|
||||
- ReactCommon/turbomodule/core
|
||||
- react-native-segmented-control (2.4.1):
|
||||
- React-Core
|
||||
- React-perflogger (0.71.11)
|
||||
- React-RCTActionSheet (0.71.11):
|
||||
- React-Core/RCTActionSheetHeaders (= 0.71.11)
|
||||
- React-RCTAnimation (0.71.11):
|
||||
- React-NativeModulesApple (0.72.0):
|
||||
- hermes-engine
|
||||
- React-callinvoker
|
||||
- React-Core
|
||||
- React-cxxreact
|
||||
- React-jsi
|
||||
- React-runtimeexecutor
|
||||
- ReactCommon/turbomodule/bridging
|
||||
- ReactCommon/turbomodule/core
|
||||
- React-perflogger (0.72.0)
|
||||
- React-RCTActionSheet (0.72.0):
|
||||
- React-Core/RCTActionSheetHeaders (= 0.72.0)
|
||||
- React-RCTAnimation (0.72.0):
|
||||
- RCT-Folly (= 2021.07.22.00)
|
||||
- RCTTypeSafety (= 0.71.11)
|
||||
- React-Codegen (= 0.71.11)
|
||||
- React-Core/RCTAnimationHeaders (= 0.71.11)
|
||||
- React-jsi (= 0.71.11)
|
||||
- ReactCommon/turbomodule/core (= 0.71.11)
|
||||
- React-RCTAppDelegate (0.71.11):
|
||||
- RCTTypeSafety (= 0.72.0)
|
||||
- React-Codegen (= 0.72.0)
|
||||
- React-Core/RCTAnimationHeaders (= 0.72.0)
|
||||
- React-jsi (= 0.72.0)
|
||||
- ReactCommon/turbomodule/core (= 0.72.0)
|
||||
- React-RCTAppDelegate (0.72.0):
|
||||
- RCT-Folly
|
||||
- RCTRequired
|
||||
- RCTTypeSafety
|
||||
- React-Core
|
||||
- React-CoreModules
|
||||
- React-hermes
|
||||
- React-NativeModulesApple
|
||||
- React-RCTImage
|
||||
- React-RCTNetwork
|
||||
- React-runtimescheduler
|
||||
- ReactCommon/turbomodule/core
|
||||
- React-RCTBlob (0.71.11):
|
||||
- React-RCTBlob (0.72.0):
|
||||
- hermes-engine
|
||||
- RCT-Folly (= 2021.07.22.00)
|
||||
- React-Codegen (= 0.71.11)
|
||||
- React-Core/RCTBlobHeaders (= 0.71.11)
|
||||
- React-Core/RCTWebSocket (= 0.71.11)
|
||||
- React-jsi (= 0.71.11)
|
||||
- React-RCTNetwork (= 0.71.11)
|
||||
- ReactCommon/turbomodule/core (= 0.71.11)
|
||||
- React-RCTImage (0.71.11):
|
||||
- React-Codegen (= 0.72.0)
|
||||
- React-Core/RCTBlobHeaders (= 0.72.0)
|
||||
- React-Core/RCTWebSocket (= 0.72.0)
|
||||
- React-jsi (= 0.72.0)
|
||||
- React-RCTNetwork (= 0.72.0)
|
||||
- ReactCommon/turbomodule/core (= 0.72.0)
|
||||
- React-RCTImage (0.72.0):
|
||||
- RCT-Folly (= 2021.07.22.00)
|
||||
- RCTTypeSafety (= 0.71.11)
|
||||
- React-Codegen (= 0.71.11)
|
||||
- React-Core/RCTImageHeaders (= 0.71.11)
|
||||
- React-jsi (= 0.71.11)
|
||||
- React-RCTNetwork (= 0.71.11)
|
||||
- ReactCommon/turbomodule/core (= 0.71.11)
|
||||
- React-RCTLinking (0.71.11):
|
||||
- React-Codegen (= 0.71.11)
|
||||
- React-Core/RCTLinkingHeaders (= 0.71.11)
|
||||
- React-jsi (= 0.71.11)
|
||||
- ReactCommon/turbomodule/core (= 0.71.11)
|
||||
- React-RCTNetwork (0.71.11):
|
||||
- RCTTypeSafety (= 0.72.0)
|
||||
- React-Codegen (= 0.72.0)
|
||||
- React-Core/RCTImageHeaders (= 0.72.0)
|
||||
- React-jsi (= 0.72.0)
|
||||
- React-RCTNetwork (= 0.72.0)
|
||||
- ReactCommon/turbomodule/core (= 0.72.0)
|
||||
- React-RCTLinking (0.72.0):
|
||||
- React-Codegen (= 0.72.0)
|
||||
- React-Core/RCTLinkingHeaders (= 0.72.0)
|
||||
- React-jsi (= 0.72.0)
|
||||
- ReactCommon/turbomodule/core (= 0.72.0)
|
||||
- React-RCTNetwork (0.72.0):
|
||||
- RCT-Folly (= 2021.07.22.00)
|
||||
- RCTTypeSafety (= 0.71.11)
|
||||
- React-Codegen (= 0.71.11)
|
||||
- React-Core/RCTNetworkHeaders (= 0.71.11)
|
||||
- React-jsi (= 0.71.11)
|
||||
- ReactCommon/turbomodule/core (= 0.71.11)
|
||||
- React-RCTSettings (0.71.11):
|
||||
- RCTTypeSafety (= 0.72.0)
|
||||
- React-Codegen (= 0.72.0)
|
||||
- React-Core/RCTNetworkHeaders (= 0.72.0)
|
||||
- React-jsi (= 0.72.0)
|
||||
- ReactCommon/turbomodule/core (= 0.72.0)
|
||||
- React-RCTSettings (0.72.0):
|
||||
- RCT-Folly (= 2021.07.22.00)
|
||||
- RCTTypeSafety (= 0.71.11)
|
||||
- React-Codegen (= 0.71.11)
|
||||
- React-Core/RCTSettingsHeaders (= 0.71.11)
|
||||
- React-jsi (= 0.71.11)
|
||||
- ReactCommon/turbomodule/core (= 0.71.11)
|
||||
- React-RCTText (0.71.11):
|
||||
- React-Core/RCTTextHeaders (= 0.71.11)
|
||||
- React-RCTVibration (0.71.11):
|
||||
- RCTTypeSafety (= 0.72.0)
|
||||
- React-Codegen (= 0.72.0)
|
||||
- React-Core/RCTSettingsHeaders (= 0.72.0)
|
||||
- React-jsi (= 0.72.0)
|
||||
- ReactCommon/turbomodule/core (= 0.72.0)
|
||||
- React-RCTText (0.72.0):
|
||||
- React-Core/RCTTextHeaders (= 0.72.0)
|
||||
- React-RCTVibration (0.72.0):
|
||||
- RCT-Folly (= 2021.07.22.00)
|
||||
- React-Codegen (= 0.71.11)
|
||||
- React-Core/RCTVibrationHeaders (= 0.71.11)
|
||||
- React-jsi (= 0.71.11)
|
||||
- ReactCommon/turbomodule/core (= 0.71.11)
|
||||
- React-runtimeexecutor (0.71.11):
|
||||
- React-jsi (= 0.71.11)
|
||||
- ReactCommon/turbomodule/bridging (0.71.11):
|
||||
- React-Codegen (= 0.72.0)
|
||||
- React-Core/RCTVibrationHeaders (= 0.72.0)
|
||||
- React-jsi (= 0.72.0)
|
||||
- ReactCommon/turbomodule/core (= 0.72.0)
|
||||
- React-rncore (0.72.0)
|
||||
- React-runtimeexecutor (0.72.0):
|
||||
- React-jsi (= 0.72.0)
|
||||
- React-runtimescheduler (0.72.0):
|
||||
- glog
|
||||
- hermes-engine
|
||||
- RCT-Folly (= 2021.07.22.00)
|
||||
- React-callinvoker
|
||||
- React-debug
|
||||
- React-jsi
|
||||
- React-runtimeexecutor
|
||||
- React-utils (0.72.0):
|
||||
- glog
|
||||
- RCT-Folly (= 2021.07.22.00)
|
||||
- React-debug
|
||||
- ReactCommon/turbomodule/bridging (0.72.0):
|
||||
- DoubleConversion
|
||||
- glog
|
||||
- hermes-engine
|
||||
- RCT-Folly (= 2021.07.22.00)
|
||||
- React-callinvoker (= 0.71.11)
|
||||
- React-Core (= 0.71.11)
|
||||
- React-cxxreact (= 0.71.11)
|
||||
- React-jsi (= 0.71.11)
|
||||
- React-logger (= 0.71.11)
|
||||
- React-perflogger (= 0.71.11)
|
||||
- ReactCommon/turbomodule/core (0.71.11):
|
||||
- React-callinvoker (= 0.72.0)
|
||||
- React-cxxreact (= 0.72.0)
|
||||
- React-jsi (= 0.72.0)
|
||||
- React-logger (= 0.72.0)
|
||||
- React-perflogger (= 0.72.0)
|
||||
- ReactCommon/turbomodule/core (0.72.0):
|
||||
- DoubleConversion
|
||||
- glog
|
||||
- hermes-engine
|
||||
- RCT-Folly (= 2021.07.22.00)
|
||||
- React-callinvoker (= 0.71.11)
|
||||
- React-Core (= 0.71.11)
|
||||
- React-cxxreact (= 0.71.11)
|
||||
- React-jsi (= 0.71.11)
|
||||
- React-logger (= 0.71.11)
|
||||
- React-perflogger (= 0.71.11)
|
||||
- React-callinvoker (= 0.72.0)
|
||||
- React-cxxreact (= 0.72.0)
|
||||
- React-jsi (= 0.72.0)
|
||||
- React-logger (= 0.72.0)
|
||||
- React-perflogger (= 0.72.0)
|
||||
- RNCAsyncStorage (1.17.12):
|
||||
- React-Core
|
||||
- RNCClipboard (1.11.2):
|
||||
@ -459,7 +533,6 @@ PODS:
|
||||
- RNReanimated (3.3.0):
|
||||
- DoubleConversion
|
||||
- FBLazyVector
|
||||
- FBReactNativeSpec
|
||||
- glog
|
||||
- hermes-engine
|
||||
- RCT-Folly
|
||||
@ -477,6 +550,7 @@ PODS:
|
||||
- React-jsinspector
|
||||
- React-RCTActionSheet
|
||||
- React-RCTAnimation
|
||||
- React-RCTAppDelegate
|
||||
- React-RCTBlob
|
||||
- React-RCTImage
|
||||
- React-RCTLinking
|
||||
@ -509,6 +583,7 @@ PODS:
|
||||
- Sentry/HybridSDK (8.7.3):
|
||||
- SentryPrivate (= 8.7.3)
|
||||
- SentryPrivate (8.7.3)
|
||||
- SocketRocket (0.6.0)
|
||||
- Swime (3.0.6)
|
||||
- Yoga (1.14.0)
|
||||
|
||||
@ -550,6 +625,7 @@ DEPENDENCIES:
|
||||
- React-Core/RCTWebSocket (from `../node_modules/react-native/`)
|
||||
- React-CoreModules (from `../node_modules/react-native/React/CoreModules`)
|
||||
- React-cxxreact (from `../node_modules/react-native/ReactCommon/cxxreact`)
|
||||
- React-debug (from `../node_modules/react-native/ReactCommon/react/debug`)
|
||||
- React-hermes (from `../node_modules/react-native/ReactCommon/hermes`)
|
||||
- React-jsi (from `../node_modules/react-native/ReactCommon/jsi`)
|
||||
- React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`)
|
||||
@ -567,6 +643,7 @@ DEPENDENCIES:
|
||||
- react-native-quick-base64 (from `../node_modules/react-native-quick-base64`)
|
||||
- react-native-safe-area-context (from `../node_modules/react-native-safe-area-context`)
|
||||
- "react-native-segmented-control (from `../node_modules/@react-native-segmented-control/segmented-control`)"
|
||||
- React-NativeModulesApple (from `../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios`)
|
||||
- React-perflogger (from `../node_modules/react-native/ReactCommon/reactperflogger`)
|
||||
- React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`)
|
||||
- React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`)
|
||||
@ -578,7 +655,10 @@ DEPENDENCIES:
|
||||
- React-RCTSettings (from `../node_modules/react-native/Libraries/Settings`)
|
||||
- React-RCTText (from `../node_modules/react-native/Libraries/Text`)
|
||||
- React-RCTVibration (from `../node_modules/react-native/Libraries/Vibration`)
|
||||
- React-rncore (from `../node_modules/react-native/ReactCommon`)
|
||||
- React-runtimeexecutor (from `../node_modules/react-native/ReactCommon/runtimeexecutor`)
|
||||
- React-runtimescheduler (from `../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler`)
|
||||
- React-utils (from `../node_modules/react-native/ReactCommon/react/utils`)
|
||||
- ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`)
|
||||
- "RNCAsyncStorage (from `../node_modules/@react-native-async-storage/async-storage`)"
|
||||
- "RNCClipboard (from `../node_modules/@react-native-clipboard/clipboard`)"
|
||||
@ -606,6 +686,7 @@ SPEC REPOS:
|
||||
- SDWebImageWebPCoder
|
||||
- Sentry
|
||||
- SentryPrivate
|
||||
- SocketRocket
|
||||
- Swime
|
||||
|
||||
EXTERNAL SOURCES:
|
||||
@ -661,6 +742,7 @@ EXTERNAL SOURCES:
|
||||
:podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec"
|
||||
hermes-engine:
|
||||
:podspec: "../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec"
|
||||
:tag: hermes-2023-03-20-RNv0.72.0-49794cfc7c81fb8f69fd60c3bbf85a7480cc5a77
|
||||
RCT-Folly:
|
||||
:podspec: "../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec"
|
||||
RCTRequired:
|
||||
@ -679,6 +761,8 @@ EXTERNAL SOURCES:
|
||||
:path: "../node_modules/react-native/React/CoreModules"
|
||||
React-cxxreact:
|
||||
:path: "../node_modules/react-native/ReactCommon/cxxreact"
|
||||
React-debug:
|
||||
:path: "../node_modules/react-native/ReactCommon/react/debug"
|
||||
React-hermes:
|
||||
:path: "../node_modules/react-native/ReactCommon/hermes"
|
||||
React-jsi:
|
||||
@ -713,6 +797,8 @@ EXTERNAL SOURCES:
|
||||
:path: "../node_modules/react-native-safe-area-context"
|
||||
react-native-segmented-control:
|
||||
:path: "../node_modules/@react-native-segmented-control/segmented-control"
|
||||
React-NativeModulesApple:
|
||||
:path: "../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios"
|
||||
React-perflogger:
|
||||
:path: "../node_modules/react-native/ReactCommon/reactperflogger"
|
||||
React-RCTActionSheet:
|
||||
@ -735,8 +821,14 @@ EXTERNAL SOURCES:
|
||||
:path: "../node_modules/react-native/Libraries/Text"
|
||||
React-RCTVibration:
|
||||
:path: "../node_modules/react-native/Libraries/Vibration"
|
||||
React-rncore:
|
||||
:path: "../node_modules/react-native/ReactCommon"
|
||||
React-runtimeexecutor:
|
||||
:path: "../node_modules/react-native/ReactCommon/runtimeexecutor"
|
||||
React-runtimescheduler:
|
||||
:path: "../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler"
|
||||
React-utils:
|
||||
:path: "../node_modules/react-native/ReactCommon/react/utils"
|
||||
ReactCommon:
|
||||
:path: "../node_modules/react-native/ReactCommon"
|
||||
RNCAsyncStorage:
|
||||
@ -773,7 +865,7 @@ SPEC CHECKSUMS:
|
||||
ExpoImage: bf714e0101812ccbbd1a4fdbfd34905feeefd9f5
|
||||
ExpoKeepAwake: 69f5f627670d62318410392d03e0b5db0f85759a
|
||||
ExpoLocalization: c1201ba5cfcfb187972138e58c07cc708c5399db
|
||||
ExpoModulesCore: 653958063a301098b541ae4dfed1ac0b98db607b
|
||||
ExpoModulesCore: dc4b4fd5a55468286dcaa8a9f5c9e89f4084574d
|
||||
ExpoSecureStore: 69a8b8e66e53afbd1c88b97a95a22af7fde9f99b
|
||||
ExpoStoreReview: 69f68b07656f26540f2b38f971527609860930c8
|
||||
ExpoVideoThumbnails: 4c5aa4a1ed34041844da7f8ba2967630d2573bdc
|
||||
@ -781,11 +873,11 @@ SPEC CHECKSUMS:
|
||||
EXScreenCapture: c55e42588fb2dc985a02b4b6aa1fb6e83157c653
|
||||
EXScreenOrientation: d6f2277d20a76206f1ec5268d6c727e758e10d05
|
||||
EXSplashScreen: 0e0a9ba0cf7553094e93213099bd7b42e6e237e9
|
||||
FBLazyVector: c511d4cd0210f416cb5c289bd5ae6b36d909b048
|
||||
FBReactNativeSpec: a911fb22def57aef1d74215e8b6b8761d25c1c54
|
||||
FBLazyVector: bb17efca94c43508cbe54fb0a35e36df30da5213
|
||||
FBReactNativeSpec: 6e7e74b1ed7f0a1a469a82a67521b33285f5fef3
|
||||
fmt: ff9d55029c625d3757ed641535fd4a75fedc7ce9
|
||||
glog: 04b94705f318337d7ead9e6d17c019bd9b1f6b1b
|
||||
hermes-engine: 34c863b446d0135b85a6536fa5fd89f48196f848
|
||||
hermes-engine: c85f703623cb12d7e1d9db91afe53b3ea8aa7219
|
||||
libaom: 144606b1da4b5915a1054383c3a4459ccdb3c661
|
||||
libavif: 84bbb62fb232c3018d6f1bab79beea87e35de7b7
|
||||
libevent: 4049cae6c81cdb3654a443be001fb9bdceff7913
|
||||
@ -794,19 +886,20 @@ SPEC CHECKSUMS:
|
||||
MMKV: 9c6c3fa4ddd849f28c7b9a5c9d23aab84f14ee35
|
||||
MMKVCore: 9bb7440b170181ac5b81f542ac258103542e693d
|
||||
RCT-Folly: 424b8c9a7a0b9ab2886ffe9c3b041ef628fd4fb1
|
||||
RCTRequired: f6187ec763637e6a57f5728dd9a3bdabc6d6b4e0
|
||||
RCTTypeSafety: a01aca2dd3b27fa422d5239252ad38e54e958750
|
||||
React: 741b4f5187e7a2137b69c88e65f940ba40600b4b
|
||||
React-callinvoker: 72ba74b2d5d690c497631191ae6eeca0c043d9cf
|
||||
React-Codegen: 8a7cda1633e4940de8a710f6bf5cae5dd673546e
|
||||
React-Core: 72bb19702c465b6451a40501a2879532bec9acee
|
||||
React-CoreModules: ffd19b082fc36b9b463fedf30955138b5426c053
|
||||
React-cxxreact: 8b3dd87e3b8ea96dd4ad5c7bac8f31f1cc3da97f
|
||||
React-hermes: be95942c3f47fc032da1387360413f00dae0ea68
|
||||
React-jsi: 9978e2a64c2a4371b40e109f4ef30a33deaa9bcb
|
||||
React-jsiexecutor: 18b5b33c5f2687a784a61bc8176611b73524ae77
|
||||
React-jsinspector: b6ed4cb3ffa27a041cd440300503dc512b761450
|
||||
React-logger: 186dd536128ae5924bc38ed70932c00aa740cd5b
|
||||
RCTRequired: 656ef0536dd60a9740961ade6a64ba0cb0572d2b
|
||||
RCTTypeSafety: 82bd23b63f043d1a6b8e80e72fd15c08e04528a4
|
||||
React: 4f2c0b59d1a1c0ae02771deb69e5ee78999fee79
|
||||
React-callinvoker: d5aa9fa6cd6b67d6033de2cb5af6de7ae3dac6ca
|
||||
React-Codegen: 57ded8852b5614bcedee54cb8644b30b41bc6f12
|
||||
React-Core: 668dad9409152ff684f52bcb125133b8fec4c941
|
||||
React-CoreModules: b02ca7a4fb869bcbe4c0ed2c939d433f13a120c5
|
||||
React-cxxreact: 2882426515cd264fac5b8a5501d2b1e8ba127544
|
||||
React-debug: 77ab539975d81d27153e2998bc1214a2473cde01
|
||||
React-hermes: 118fc1a6278dd1a4fddd627185dd21ef150c6423
|
||||
React-jsi: deef1a7418729b2e7e1b99c87e1c6d9df23c2e18
|
||||
React-jsiexecutor: 990287d74aedc4fdd08ebd80736b1a5c71b54da2
|
||||
React-jsinspector: 8d754fc957255a29d93e52fc67a895045cdc8703
|
||||
React-logger: 454ffb01980778a43b0153ee98721d0275b56616
|
||||
react-native-blur: cfdad7b3c01d725ab62a8a729f42ea463998afa2
|
||||
react-native-cameraroll: 755bcc628148a90a7c9cf3f817a252be3a601bc5
|
||||
react-native-image-picker: db60857e03d63721f19b6f4027de20429ddd9cba
|
||||
@ -819,23 +912,27 @@ SPEC CHECKSUMS:
|
||||
react-native-quick-base64: 62290829c619fbabca4c41cfec75ae759d08fc1c
|
||||
react-native-safe-area-context: dd19bd6fbbb41bb9cc427e90605193186b37fa70
|
||||
react-native-segmented-control: 0e4b5d93911e2234f110057df2b41738b326ab3e
|
||||
React-perflogger: e706562ab7eb8eb590aa83a224d26fa13963d7f2
|
||||
React-RCTActionSheet: 57d4bd98122f557479a3359ad5dad8e109e20c5a
|
||||
React-RCTAnimation: ccf3ef00101ea74bda73a045d79a658b36728a60
|
||||
React-RCTAppDelegate: d0c28a35c65e9a0aef287ac0dafe1b71b1ac180c
|
||||
React-RCTBlob: 1700b92ece4357af0a49719c9638185ad2902e95
|
||||
React-RCTImage: f2e4904566ccccaa4b704170fcc5ae144ca347bf
|
||||
React-RCTLinking: 52a3740e3651e30aa11dff5a6debed7395dd8169
|
||||
React-RCTNetwork: ea0976f2b3ffc7877cd7784e351dc460adf87b12
|
||||
React-RCTSettings: ed5ac992b23e25c65c3cc31f11b5c940ae5e3e60
|
||||
React-RCTText: c9dfc6722621d56332b4f3a19ac38105e7504145
|
||||
React-RCTVibration: f09f08de63e4122deb32506e20ca4cae6e4e14c1
|
||||
React-runtimeexecutor: 4817d63dbc9d658f8dc0ec56bd9b83ce531129f0
|
||||
ReactCommon: 08723d2ed328c5cbcb0de168f231bc7bae7f8aa1
|
||||
React-NativeModulesApple: 038cd625999ff352fc13d11fd335ea7509794599
|
||||
React-perflogger: 684a11499a0589cc42135d6d5cc04d0e4e0e261a
|
||||
React-RCTActionSheet: 00b0a4c382a13b834124fa3f541a7d8d1d56efb9
|
||||
React-RCTAnimation: 10c24c66fb504f2faa53f4ec0666c4568255cff9
|
||||
React-RCTAppDelegate: ba51460896227d9fb530298746eb543d38face7a
|
||||
React-RCTBlob: 10814291c4e8ef09fd2ceca81825eae29ee5a4ec
|
||||
React-RCTImage: 2f609dd1c80c4aec8edf2ca235cba476fdd442ec
|
||||
React-RCTLinking: d7f20b7d51246bf34790ce1362d124cc1b42671b
|
||||
React-RCTNetwork: 6b0133de954b5eff5e6a6294eef5fca45df7e5e8
|
||||
React-RCTSettings: 9a1f3f5f3e104c0617d953acc54e60e4bfaf11bd
|
||||
React-RCTText: f5b4c03708c0283699c0dc23c7fb9f97ce7ac6bd
|
||||
React-RCTVibration: fb4135690f091ac9bcfbeb8dc4388208ca0e18b1
|
||||
React-rncore: 91a21f0b3c16a5e011bc54d1e204bd6c5bfdf8e2
|
||||
React-runtimeexecutor: 56b9f7665138fe8cda0d6c210cf95ee3f625c237
|
||||
React-runtimescheduler: 24614bcd31643eacb06c78c0b9101b453d6aac47
|
||||
React-utils: c12d2e75c8bbc727939ddc4319ed95493395ed5a
|
||||
ReactCommon: 517b45ed311ba9146aa8b55a8ef6617425f7448e
|
||||
RNCAsyncStorage: 09fc8595e6d6f6d5abf16b23a56b257d9c6b7c5b
|
||||
RNCClipboard: 3f0451a8100393908bea5c5c5b16f96d45f30bfc
|
||||
RNGestureHandler: dec4645026e7401a0899f2846d864403478ff6a5
|
||||
RNReanimated: 9976fbaaeb8a188c36026154c844bf374b3b7eeb
|
||||
RNReanimated: 9f7068e43b9358a46a688d94a5a3adb258139457
|
||||
RNScreens: d3675ab2878704de70c9dae57fa5d024802404cc
|
||||
RNSentry: 9f0447b3ce13806f544903748de423259ead8552
|
||||
RNShareMenu: cb9dac548c8bf147d06f0bf07296ad51ea9f5fc3
|
||||
@ -846,9 +943,10 @@ SPEC CHECKSUMS:
|
||||
SDWebImageWebPCoder: 295a6573c512f54ad2dd58098e64e17dcf008499
|
||||
Sentry: c7a86f43510a7d5678d4de28d78c28ab351d295b
|
||||
SentryPrivate: 2eaabf598a46d4b9b8822aef766df2a84caf2e6f
|
||||
SocketRocket: fccef3f9c5cedea1353a9ef6ada904fde10d6608
|
||||
Swime: d7b2c277503b6cea317774aedc2dce05613f8b0b
|
||||
Yoga: f7decafdc5e8c125e6fa0da38a687e35238420fa
|
||||
Yoga: 1d6727ed193122f6adaf435c3de1a768326ff83b
|
||||
|
||||
PODFILE CHECKSUM: 61a84f1ad8a466fbbbf09e0f8bb3ed30b2d5e301
|
||||
PODFILE CHECKSUM: 1decd5b21ac0602154fbdba45a568b9c3acebb7c
|
||||
|
||||
COCOAPODS: 1.12.1
|
||||
|
@ -697,6 +697,8 @@
|
||||
LIBRARY_SEARCH_PATHS = "$(SDKROOT)/usr/lib/swift\"\"";
|
||||
MTL_ENABLE_DEBUG_INFO = YES;
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
OTHER_CFLAGS = "$(inherited)";
|
||||
OTHER_CPLUSPLUSFLAGS = "$(inherited)";
|
||||
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
|
||||
SDKROOT = iphoneos;
|
||||
};
|
||||
@ -753,6 +755,8 @@
|
||||
LIBRARY_SEARCH_PATHS = "$(SDKROOT)/usr/lib/swift\"\"";
|
||||
MTL_ENABLE_DEBUG_INFO = NO;
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
OTHER_CFLAGS = "$(inherited)";
|
||||
OTHER_CPLUSPLUSFLAGS = "$(inherited)";
|
||||
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
|
||||
SDKROOT = iphoneos;
|
||||
SWIFT_COMPILATION_MODE = wholemodule;
|
||||
|
@ -22,16 +22,6 @@
|
||||
#endif
|
||||
}
|
||||
|
||||
/// This method controls whether the `concurrentRoot`feature of React18 is turned on or off.
|
||||
///
|
||||
/// @see: https://reactjs.org/blog/2022/03/29/react-v18.html
|
||||
/// @note: This requires to be rendering on Fabric (i.e. on the New Architecture).
|
||||
/// @return: `true` if the `concurrentRoot` feature is enabled. Otherwise, it returns `false`.
|
||||
- (BOOL)concurrentRootEnabled
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
// Linking API
|
||||
- (BOOL)application:(UIApplication *)application openURL:(NSURL *)url options:(NSDictionary<UIApplicationOpenURLOptionsKey,id> *)options {
|
||||
NSString *urlString = url.absoluteString;
|
||||
|
@ -1,3 +1,11 @@
|
||||
module.exports = {
|
||||
transformer: { inlineRequires: true }
|
||||
}
|
||||
const { getDefaultConfig, mergeConfig } = require('@react-native/metro-config')
|
||||
|
||||
/**
|
||||
* Metro configuration
|
||||
* https://facebook.github.io/metro/docs/configuration
|
||||
*
|
||||
* @type {import('metro-config').MetroConfig}
|
||||
*/
|
||||
const config = {};
|
||||
|
||||
module.exports = mergeConfig(getDefaultConfig(__dirname), config)
|
||||
|
@ -70,7 +70,7 @@
|
||||
"react-dom": "^18.2.0",
|
||||
"react-i18next": "^13.0.0",
|
||||
"react-intl": "^6.4.4",
|
||||
"react-native": "^0.71.11",
|
||||
"react-native": "^0.72.0",
|
||||
"react-native-flash-message": "^0.4.1",
|
||||
"react-native-gesture-handler": "~2.12.0",
|
||||
"react-native-image-picker": "^5.6.0",
|
||||
@ -95,6 +95,7 @@
|
||||
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
|
||||
"@babel/preset-typescript": "^7.22.5",
|
||||
"@expo/config": "^8.0.4",
|
||||
"@react-native/metro-config": "^0.72.6",
|
||||
"@types/diff": "^5.0.3",
|
||||
"@types/linkify-it": "^3.0.2",
|
||||
"@types/lodash": "^4.14.195",
|
||||
@ -115,6 +116,7 @@
|
||||
"react-native-share-menu@^6.0.0": "patch:react-native-share-menu@npm%3A6.0.0#./.yarn/patches/react-native-share-menu-npm-6.0.0-f1094c3204.patch",
|
||||
"@types/react-native-share-menu@^5.0.2": "patch:@types/react-native-share-menu@npm%3A5.0.2#./.yarn/patches/@types-react-native-share-menu-npm-5.0.2-373df17ecc.patch",
|
||||
"react-native-ios-context-menu@^1.15.1": "patch:react-native-ios-context-menu@npm%3A1.15.1#./.yarn/patches/react-native-ios-context-menu-npm-1.15.1-0034bfa5ba.patch",
|
||||
"react-native-reanimated-zoom@^0.3.3": "patch:react-native-reanimated-zoom@npm%3A0.3.3#./.yarn/patches/react-native-reanimated-zoom-npm-0.3.3-bbb8d84109.patch"
|
||||
"react-native-reanimated-zoom@^0.3.3": "patch:react-native-reanimated-zoom@npm%3A0.3.3#./.yarn/patches/react-native-reanimated-zoom-npm-0.3.3-bbb8d84109.patch",
|
||||
"react-native@^0.72.0": "patch:react-native@npm%3A0.72.0#./.yarn/patches/react-native-npm-0.72.0-66f5fd62b3.patch"
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user