Upgrade example to 0.64
This commit is contained in:
parent
736b82aac6
commit
4226865970
4
Example/testHotUpdate/.gitattributes
vendored
4
Example/testHotUpdate/.gitattributes
vendored
@ -1 +1,3 @@
|
|||||||
*.pbxproj -text
|
# Windows files should use crlf line endings
|
||||||
|
# https://help.github.com/articles/dealing-with-line-endings/
|
||||||
|
*.bat text eol=crlf
|
@ -3,4 +3,5 @@ module.exports = {
|
|||||||
jsxBracketSameLine: true,
|
jsxBracketSameLine: true,
|
||||||
singleQuote: true,
|
singleQuote: true,
|
||||||
trailingComma: 'all',
|
trailingComma: 'all',
|
||||||
|
arrowParens: 'avoid',
|
||||||
};
|
};
|
||||||
|
@ -121,6 +121,7 @@ def jscFlavor = 'org.webkit:android-jsc:+'
|
|||||||
def enableHermes = project.ext.react.get("enableHermes", false);
|
def enableHermes = project.ext.react.get("enableHermes", false);
|
||||||
|
|
||||||
android {
|
android {
|
||||||
|
ndkVersion rootProject.ext.ndkVersion
|
||||||
compileSdkVersion rootProject.ext.compileSdkVersion
|
compileSdkVersion rootProject.ext.compileSdkVersion
|
||||||
|
|
||||||
compileOptions {
|
compileOptions {
|
||||||
@ -170,11 +171,12 @@ android {
|
|||||||
variant.outputs.each { output ->
|
variant.outputs.each { output ->
|
||||||
// For each separate APK per architecture, set a unique version code as described here:
|
// For each separate APK per architecture, set a unique version code as described here:
|
||||||
// https://developer.android.com/studio/build/configure-apk-splits.html
|
// https://developer.android.com/studio/build/configure-apk-splits.html
|
||||||
|
// Example: versionCode 1 will generate 1001 for armeabi-v7a, 1002 for x86, etc.
|
||||||
def versionCodes = ["armeabi-v7a": 1, "x86": 2, "arm64-v8a": 3, "x86_64": 4]
|
def versionCodes = ["armeabi-v7a": 1, "x86": 2, "arm64-v8a": 3, "x86_64": 4]
|
||||||
def abi = output.getFilter(OutputFile.ABI)
|
def abi = output.getFilter(OutputFile.ABI)
|
||||||
if (abi != null) { // null for the universal-debug, universal-release variants
|
if (abi != null) { // null for the universal-debug, universal-release variants
|
||||||
output.versionCodeOverride =
|
output.versionCodeOverride =
|
||||||
versionCodes.get(abi) * 1048576 + defaultConfig.versionCode
|
defaultConfig.versionCode * 1000 + versionCodes.get(abi)
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -4,5 +4,7 @@
|
|||||||
|
|
||||||
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/>
|
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/>
|
||||||
|
|
||||||
<application android:usesCleartextTraffic="true" tools:targetApi="28" tools:ignore="GoogleAppIndexingWarning" />
|
<application android:usesCleartextTraffic="true" tools:targetApi="28" tools:ignore="GoogleAppIndexingWarning">
|
||||||
|
<activity android:name="com.facebook.react.devsupport.DevSettingsActivity" />
|
||||||
|
</application>
|
||||||
</manifest>
|
</manifest>
|
||||||
|
@ -22,7 +22,6 @@
|
|||||||
<category android:name="android.intent.category.LAUNCHER" />
|
<category android:name="android.intent.category.LAUNCHER" />
|
||||||
</intent-filter>
|
</intent-filter>
|
||||||
</activity>
|
</activity>
|
||||||
<activity android:name="com.facebook.react.devsupport.DevSettingsActivity" />
|
|
||||||
</application>
|
</application>
|
||||||
|
|
||||||
</manifest>
|
</manifest>
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
<resources>
|
<resources>
|
||||||
|
|
||||||
<!-- Base application theme. -->
|
<!-- Base application theme. -->
|
||||||
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
|
<style name="AppTheme" parent="Theme.AppCompat.DayNight.NoActionBar">
|
||||||
<!-- Customize your theme here. -->
|
<!-- Customize your theme here. -->
|
||||||
<item name="android:textColor">#000000</item>
|
<item name="android:textColor">#000000</item>
|
||||||
</style>
|
</style>
|
||||||
|
@ -2,17 +2,18 @@
|
|||||||
|
|
||||||
buildscript {
|
buildscript {
|
||||||
ext {
|
ext {
|
||||||
buildToolsVersion = "29.0.2"
|
buildToolsVersion = "29.0.3"
|
||||||
minSdkVersion = 21
|
minSdkVersion = 21
|
||||||
compileSdkVersion = 29
|
compileSdkVersion = 29
|
||||||
targetSdkVersion = 29
|
targetSdkVersion = 29
|
||||||
|
ndkVersion = "20.1.5948944"
|
||||||
}
|
}
|
||||||
repositories {
|
repositories {
|
||||||
google()
|
google()
|
||||||
jcenter()
|
jcenter()
|
||||||
}
|
}
|
||||||
dependencies {
|
dependencies {
|
||||||
classpath('com.android.tools.build:gradle:3.5.3')
|
classpath('com.android.tools.build:gradle:4.1.0')
|
||||||
|
|
||||||
// NOTE: Do not place your application dependencies here; they belong
|
// NOTE: Do not place your application dependencies here; they belong
|
||||||
// in the individual module build.gradle files
|
// in the individual module build.gradle files
|
||||||
|
@ -25,4 +25,4 @@ android.useAndroidX=true
|
|||||||
android.enableJetifier=true
|
android.enableJetifier=true
|
||||||
|
|
||||||
# Version of flipper SDK to use with React Native
|
# Version of flipper SDK to use with React Native
|
||||||
FLIPPER_VERSION=0.54.0
|
FLIPPER_VERSION=0.84.0
|
@ -1,5 +1,5 @@
|
|||||||
distributionBase=GRADLE_USER_HOME
|
distributionBase=GRADLE_USER_HOME
|
||||||
distributionPath=wrapper/dists
|
distributionPath=wrapper/dists
|
||||||
distributionUrl=https\://services.gradle.org/distributions/gradle-6.6-all.zip
|
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7-all.zip
|
||||||
zipStoreBase=GRADLE_USER_HOME
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
zipStorePath=wrapper/dists
|
zipStorePath=wrapper/dists
|
||||||
|
190
Example/testHotUpdate/android/gradlew.bat
vendored
190
Example/testHotUpdate/android/gradlew.bat
vendored
@ -1,103 +1,89 @@
|
|||||||
@rem
|
@rem
|
||||||
@rem Copyright 2015 the original author or authors.
|
@rem Copyright 2015 the original author or authors.
|
||||||
@rem
|
@rem
|
||||||
@rem Licensed under the Apache License, Version 2.0 (the "License");
|
@rem Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
@rem you may not use this file except in compliance with the License.
|
@rem you may not use this file except in compliance with the License.
|
||||||
@rem You may obtain a copy of the License at
|
@rem You may obtain a copy of the License at
|
||||||
@rem
|
@rem
|
||||||
@rem https://www.apache.org/licenses/LICENSE-2.0
|
@rem https://www.apache.org/licenses/LICENSE-2.0
|
||||||
@rem
|
@rem
|
||||||
@rem Unless required by applicable law or agreed to in writing, software
|
@rem Unless required by applicable law or agreed to in writing, software
|
||||||
@rem distributed under the License is distributed on an "AS IS" BASIS,
|
@rem distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
@rem See the License for the specific language governing permissions and
|
@rem See the License for the specific language governing permissions and
|
||||||
@rem limitations under the License.
|
@rem limitations under the License.
|
||||||
@rem
|
@rem
|
||||||
|
|
||||||
@if "%DEBUG%" == "" @echo off
|
@if "%DEBUG%" == "" @echo off
|
||||||
@rem ##########################################################################
|
@rem ##########################################################################
|
||||||
@rem
|
@rem
|
||||||
@rem Gradle startup script for Windows
|
@rem Gradle startup script for Windows
|
||||||
@rem
|
@rem
|
||||||
@rem ##########################################################################
|
@rem ##########################################################################
|
||||||
|
|
||||||
@rem Set local scope for the variables with windows NT shell
|
@rem Set local scope for the variables with windows NT shell
|
||||||
if "%OS%"=="Windows_NT" setlocal
|
if "%OS%"=="Windows_NT" setlocal
|
||||||
|
|
||||||
set DIRNAME=%~dp0
|
set DIRNAME=%~dp0
|
||||||
if "%DIRNAME%" == "" set DIRNAME=.
|
if "%DIRNAME%" == "" set DIRNAME=.
|
||||||
set APP_BASE_NAME=%~n0
|
set APP_BASE_NAME=%~n0
|
||||||
set APP_HOME=%DIRNAME%
|
set APP_HOME=%DIRNAME%
|
||||||
|
|
||||||
@rem Resolve any "." and ".." in APP_HOME to make it shorter.
|
@rem Resolve any "." and ".." in APP_HOME to make it shorter.
|
||||||
for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi
|
for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi
|
||||||
|
|
||||||
@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
|
@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
|
||||||
set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m"
|
set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m"
|
||||||
|
|
||||||
@rem Find java.exe
|
@rem Find java.exe
|
||||||
if defined JAVA_HOME goto findJavaFromJavaHome
|
if defined JAVA_HOME goto findJavaFromJavaHome
|
||||||
|
|
||||||
set JAVA_EXE=java.exe
|
set JAVA_EXE=java.exe
|
||||||
%JAVA_EXE% -version >NUL 2>&1
|
%JAVA_EXE% -version >NUL 2>&1
|
||||||
if "%ERRORLEVEL%" == "0" goto init
|
if "%ERRORLEVEL%" == "0" goto execute
|
||||||
|
|
||||||
echo.
|
echo.
|
||||||
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
|
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
|
||||||
echo.
|
echo.
|
||||||
echo Please set the JAVA_HOME variable in your environment to match the
|
echo Please set the JAVA_HOME variable in your environment to match the
|
||||||
echo location of your Java installation.
|
echo location of your Java installation.
|
||||||
|
|
||||||
goto fail
|
goto fail
|
||||||
|
|
||||||
:findJavaFromJavaHome
|
:findJavaFromJavaHome
|
||||||
set JAVA_HOME=%JAVA_HOME:"=%
|
set JAVA_HOME=%JAVA_HOME:"=%
|
||||||
set JAVA_EXE=%JAVA_HOME%/bin/java.exe
|
set JAVA_EXE=%JAVA_HOME%/bin/java.exe
|
||||||
|
|
||||||
if exist "%JAVA_EXE%" goto init
|
if exist "%JAVA_EXE%" goto execute
|
||||||
|
|
||||||
echo.
|
echo.
|
||||||
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
|
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
|
||||||
echo.
|
echo.
|
||||||
echo Please set the JAVA_HOME variable in your environment to match the
|
echo Please set the JAVA_HOME variable in your environment to match the
|
||||||
echo location of your Java installation.
|
echo location of your Java installation.
|
||||||
|
|
||||||
goto fail
|
goto fail
|
||||||
|
|
||||||
:init
|
:execute
|
||||||
@rem Get command-line arguments, handling Windows variants
|
@rem Setup the command line
|
||||||
|
|
||||||
if not "%OS%" == "Windows_NT" goto win9xME_args
|
set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
|
||||||
|
|
||||||
:win9xME_args
|
|
||||||
@rem Slurp the command line arguments.
|
@rem Execute Gradle
|
||||||
set CMD_LINE_ARGS=
|
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %*
|
||||||
set _SKIP=2
|
|
||||||
|
:end
|
||||||
:win9xME_args_slurp
|
@rem End local scope for the variables with windows NT shell
|
||||||
if "x%~1" == "x" goto execute
|
if "%ERRORLEVEL%"=="0" goto mainEnd
|
||||||
|
|
||||||
set CMD_LINE_ARGS=%*
|
:fail
|
||||||
|
rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
|
||||||
:execute
|
rem the _cmd.exe /c_ return code!
|
||||||
@rem Setup the command line
|
if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
|
||||||
|
exit /b 1
|
||||||
set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
|
|
||||||
|
:mainEnd
|
||||||
@rem Execute Gradle
|
if "%OS%"=="Windows_NT" endlocal
|
||||||
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%
|
|
||||||
|
|
||||||
:end
|
|
||||||
@rem End local scope for the variables with windows NT shell
|
|
||||||
if "%ERRORLEVEL%"=="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
|
|
||||||
|
|
||||||
:mainEnd
|
|
||||||
if "%OS%"=="Windows_NT" endlocal
|
|
||||||
|
|
||||||
:omega
|
:omega
|
@ -6,15 +6,20 @@ platform :ios, '10.0'
|
|||||||
target 'testHotUpdate' do
|
target 'testHotUpdate' do
|
||||||
config = use_native_modules!
|
config = use_native_modules!
|
||||||
|
|
||||||
use_react_native!(:path => config["reactNativePath"])
|
use_react_native!(
|
||||||
|
:path => config[:reactNativePath],
|
||||||
|
# to enable hermes on iOS, change `false` to `true` and then install pods
|
||||||
|
:hermes_enabled => false
|
||||||
|
)
|
||||||
|
|
||||||
# Enables Flipper.
|
# Enables Flipper.
|
||||||
#
|
#
|
||||||
# Note that if you have use_frameworks! enabled, Flipper will not work and
|
# Note that if you have use_frameworks! enabled, Flipper will not work and
|
||||||
# you should disable these next few lines.
|
# you should disable the next line.
|
||||||
use_flipper!('Flipper' => '0.54.0')
|
use_flipper!({'Flipper' => '0.84.0'})
|
||||||
|
|
||||||
post_install do |installer|
|
post_install do |installer|
|
||||||
flipper_post_install(installer)
|
react_native_post_install(installer)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -1,314 +1,345 @@
|
|||||||
PODS:
|
PODS:
|
||||||
- boost-for-react-native (1.63.0)
|
- boost-for-react-native (1.63.0)
|
||||||
- CocoaAsyncSocket (7.6.4)
|
- CocoaAsyncSocket (7.6.5)
|
||||||
- CocoaLibEvent (1.0.0)
|
|
||||||
- DoubleConversion (1.1.6)
|
- DoubleConversion (1.1.6)
|
||||||
- FBLazyVector (0.63.3)
|
- FBLazyVector (0.64.0)
|
||||||
- FBReactNativeSpec (0.63.3):
|
- FBReactNativeSpec (0.64.0):
|
||||||
- Folly (= 2020.01.13.00)
|
- RCT-Folly (= 2020.01.13.00)
|
||||||
- RCTRequired (= 0.63.3)
|
- RCTRequired (= 0.64.0)
|
||||||
- RCTTypeSafety (= 0.63.3)
|
- RCTTypeSafety (= 0.64.0)
|
||||||
- React-Core (= 0.63.3)
|
- React-Core (= 0.64.0)
|
||||||
- React-jsi (= 0.63.3)
|
- React-jsi (= 0.64.0)
|
||||||
- ReactCommon/turbomodule/core (= 0.63.3)
|
- ReactCommon/turbomodule/core (= 0.64.0)
|
||||||
- Flipper (0.54.0):
|
- Flipper (0.84.0):
|
||||||
- Flipper-Folly (~> 2.2)
|
- Flipper-Folly (~> 2.5)
|
||||||
- Flipper-RSocket (~> 1.1)
|
- Flipper-RSocket (~> 1.3)
|
||||||
- Flipper-DoubleConversion (1.1.7)
|
- Flipper-DoubleConversion (1.1.7)
|
||||||
- Flipper-Folly (2.2.0):
|
- Flipper-Folly (2.5.1):
|
||||||
- boost-for-react-native
|
- boost-for-react-native
|
||||||
- CocoaLibEvent (~> 1.0)
|
|
||||||
- Flipper-DoubleConversion
|
- Flipper-DoubleConversion
|
||||||
- Flipper-Glog
|
- Flipper-Glog
|
||||||
- OpenSSL-Universal (= 1.0.2.19)
|
- libevent (~> 2.1.12)
|
||||||
|
- OpenSSL-Universal (= 1.1.180)
|
||||||
- Flipper-Glog (0.3.6)
|
- Flipper-Glog (0.3.6)
|
||||||
- Flipper-PeerTalk (0.0.4)
|
- Flipper-PeerTalk (0.0.4)
|
||||||
- Flipper-RSocket (1.1.0):
|
- Flipper-RSocket (1.3.1):
|
||||||
- Flipper-Folly (~> 2.2)
|
- Flipper-Folly (~> 2.5)
|
||||||
- FlipperKit (0.54.0):
|
- FlipperKit (0.84.0):
|
||||||
- FlipperKit/Core (= 0.54.0)
|
- FlipperKit/Core (= 0.84.0)
|
||||||
- FlipperKit/Core (0.54.0):
|
- FlipperKit/Core (0.84.0):
|
||||||
- Flipper (~> 0.54.0)
|
- Flipper (~> 0.84.0)
|
||||||
- FlipperKit/CppBridge
|
- FlipperKit/CppBridge
|
||||||
- FlipperKit/FBCxxFollyDynamicConvert
|
- FlipperKit/FBCxxFollyDynamicConvert
|
||||||
- FlipperKit/FBDefines
|
- FlipperKit/FBDefines
|
||||||
- FlipperKit/FKPortForwarding
|
- FlipperKit/FKPortForwarding
|
||||||
- FlipperKit/CppBridge (0.54.0):
|
- FlipperKit/CppBridge (0.84.0):
|
||||||
- Flipper (~> 0.54.0)
|
- Flipper (~> 0.84.0)
|
||||||
- FlipperKit/FBCxxFollyDynamicConvert (0.54.0):
|
- FlipperKit/FBCxxFollyDynamicConvert (0.84.0):
|
||||||
- Flipper-Folly (~> 2.2)
|
- Flipper-Folly (~> 2.5)
|
||||||
- FlipperKit/FBDefines (0.54.0)
|
- FlipperKit/FBDefines (0.84.0)
|
||||||
- FlipperKit/FKPortForwarding (0.54.0):
|
- FlipperKit/FKPortForwarding (0.84.0):
|
||||||
- CocoaAsyncSocket (~> 7.6)
|
- CocoaAsyncSocket (~> 7.6)
|
||||||
- Flipper-PeerTalk (~> 0.0.4)
|
- Flipper-PeerTalk (~> 0.0.4)
|
||||||
- FlipperKit/FlipperKitHighlightOverlay (0.54.0)
|
- FlipperKit/FlipperKitHighlightOverlay (0.84.0)
|
||||||
- FlipperKit/FlipperKitLayoutPlugin (0.54.0):
|
- FlipperKit/FlipperKitLayoutHelpers (0.84.0):
|
||||||
- FlipperKit/Core
|
- FlipperKit/Core
|
||||||
- FlipperKit/FlipperKitHighlightOverlay
|
- FlipperKit/FlipperKitHighlightOverlay
|
||||||
- FlipperKit/FlipperKitLayoutTextSearchable
|
- FlipperKit/FlipperKitLayoutTextSearchable
|
||||||
|
- FlipperKit/FlipperKitLayoutIOSDescriptors (0.84.0):
|
||||||
|
- FlipperKit/Core
|
||||||
|
- FlipperKit/FlipperKitHighlightOverlay
|
||||||
|
- FlipperKit/FlipperKitLayoutHelpers
|
||||||
- YogaKit (~> 1.18)
|
- YogaKit (~> 1.18)
|
||||||
- FlipperKit/FlipperKitLayoutTextSearchable (0.54.0)
|
- FlipperKit/FlipperKitLayoutPlugin (0.84.0):
|
||||||
- FlipperKit/FlipperKitNetworkPlugin (0.54.0):
|
|
||||||
- FlipperKit/Core
|
- FlipperKit/Core
|
||||||
- FlipperKit/FlipperKitReactPlugin (0.54.0):
|
- FlipperKit/FlipperKitHighlightOverlay
|
||||||
|
- FlipperKit/FlipperKitLayoutHelpers
|
||||||
|
- FlipperKit/FlipperKitLayoutIOSDescriptors
|
||||||
|
- FlipperKit/FlipperKitLayoutTextSearchable
|
||||||
|
- YogaKit (~> 1.18)
|
||||||
|
- FlipperKit/FlipperKitLayoutTextSearchable (0.84.0)
|
||||||
|
- FlipperKit/FlipperKitNetworkPlugin (0.84.0):
|
||||||
- FlipperKit/Core
|
- FlipperKit/Core
|
||||||
- FlipperKit/FlipperKitUserDefaultsPlugin (0.54.0):
|
- FlipperKit/FlipperKitReactPlugin (0.84.0):
|
||||||
- FlipperKit/Core
|
- FlipperKit/Core
|
||||||
- FlipperKit/SKIOSNetworkPlugin (0.54.0):
|
- FlipperKit/FlipperKitUserDefaultsPlugin (0.84.0):
|
||||||
|
- FlipperKit/Core
|
||||||
|
- FlipperKit/SKIOSNetworkPlugin (0.84.0):
|
||||||
- FlipperKit/Core
|
- FlipperKit/Core
|
||||||
- FlipperKit/FlipperKitNetworkPlugin
|
- FlipperKit/FlipperKitNetworkPlugin
|
||||||
- Folly (2020.01.13.00):
|
|
||||||
- boost-for-react-native
|
|
||||||
- DoubleConversion
|
|
||||||
- Folly/Default (= 2020.01.13.00)
|
|
||||||
- glog
|
|
||||||
- Folly/Default (2020.01.13.00):
|
|
||||||
- boost-for-react-native
|
|
||||||
- DoubleConversion
|
|
||||||
- glog
|
|
||||||
- glog (0.3.5)
|
- glog (0.3.5)
|
||||||
- OpenSSL-Universal (1.0.2.19):
|
- libevent (2.1.12)
|
||||||
- OpenSSL-Universal/Static (= 1.0.2.19)
|
- OpenSSL-Universal (1.1.180)
|
||||||
- OpenSSL-Universal/Static (1.0.2.19)
|
- RCT-Folly (2020.01.13.00):
|
||||||
- RCTRequired (0.63.3)
|
- boost-for-react-native
|
||||||
- RCTTypeSafety (0.63.3):
|
- DoubleConversion
|
||||||
- FBLazyVector (= 0.63.3)
|
|
||||||
- Folly (= 2020.01.13.00)
|
|
||||||
- RCTRequired (= 0.63.3)
|
|
||||||
- React-Core (= 0.63.3)
|
|
||||||
- React (0.63.3):
|
|
||||||
- React-Core (= 0.63.3)
|
|
||||||
- React-Core/DevSupport (= 0.63.3)
|
|
||||||
- React-Core/RCTWebSocket (= 0.63.3)
|
|
||||||
- React-RCTActionSheet (= 0.63.3)
|
|
||||||
- React-RCTAnimation (= 0.63.3)
|
|
||||||
- React-RCTBlob (= 0.63.3)
|
|
||||||
- React-RCTImage (= 0.63.3)
|
|
||||||
- React-RCTLinking (= 0.63.3)
|
|
||||||
- React-RCTNetwork (= 0.63.3)
|
|
||||||
- React-RCTSettings (= 0.63.3)
|
|
||||||
- React-RCTText (= 0.63.3)
|
|
||||||
- React-RCTVibration (= 0.63.3)
|
|
||||||
- React-callinvoker (0.63.3)
|
|
||||||
- React-Core (0.63.3):
|
|
||||||
- Folly (= 2020.01.13.00)
|
|
||||||
- glog
|
- glog
|
||||||
- React-Core/Default (= 0.63.3)
|
- RCT-Folly/Default (= 2020.01.13.00)
|
||||||
- React-cxxreact (= 0.63.3)
|
- RCT-Folly/Default (2020.01.13.00):
|
||||||
- React-jsi (= 0.63.3)
|
- boost-for-react-native
|
||||||
- React-jsiexecutor (= 0.63.3)
|
- DoubleConversion
|
||||||
|
- glog
|
||||||
|
- RCTRequired (0.64.0)
|
||||||
|
- RCTTypeSafety (0.64.0):
|
||||||
|
- FBLazyVector (= 0.64.0)
|
||||||
|
- RCT-Folly (= 2020.01.13.00)
|
||||||
|
- RCTRequired (= 0.64.0)
|
||||||
|
- React-Core (= 0.64.0)
|
||||||
|
- React (0.64.0):
|
||||||
|
- React-Core (= 0.64.0)
|
||||||
|
- React-Core/DevSupport (= 0.64.0)
|
||||||
|
- React-Core/RCTWebSocket (= 0.64.0)
|
||||||
|
- React-RCTActionSheet (= 0.64.0)
|
||||||
|
- React-RCTAnimation (= 0.64.0)
|
||||||
|
- React-RCTBlob (= 0.64.0)
|
||||||
|
- React-RCTImage (= 0.64.0)
|
||||||
|
- React-RCTLinking (= 0.64.0)
|
||||||
|
- React-RCTNetwork (= 0.64.0)
|
||||||
|
- React-RCTSettings (= 0.64.0)
|
||||||
|
- React-RCTText (= 0.64.0)
|
||||||
|
- React-RCTVibration (= 0.64.0)
|
||||||
|
- React-callinvoker (0.64.0)
|
||||||
|
- React-Core (0.64.0):
|
||||||
|
- glog
|
||||||
|
- RCT-Folly (= 2020.01.13.00)
|
||||||
|
- React-Core/Default (= 0.64.0)
|
||||||
|
- React-cxxreact (= 0.64.0)
|
||||||
|
- React-jsi (= 0.64.0)
|
||||||
|
- React-jsiexecutor (= 0.64.0)
|
||||||
|
- React-perflogger (= 0.64.0)
|
||||||
- Yoga
|
- Yoga
|
||||||
- React-Core/CoreModulesHeaders (0.63.3):
|
- React-Core/CoreModulesHeaders (0.64.0):
|
||||||
- Folly (= 2020.01.13.00)
|
|
||||||
- glog
|
- glog
|
||||||
|
- RCT-Folly (= 2020.01.13.00)
|
||||||
- React-Core/Default
|
- React-Core/Default
|
||||||
- React-cxxreact (= 0.63.3)
|
- React-cxxreact (= 0.64.0)
|
||||||
- React-jsi (= 0.63.3)
|
- React-jsi (= 0.64.0)
|
||||||
- React-jsiexecutor (= 0.63.3)
|
- React-jsiexecutor (= 0.64.0)
|
||||||
|
- React-perflogger (= 0.64.0)
|
||||||
- Yoga
|
- Yoga
|
||||||
- React-Core/Default (0.63.3):
|
- React-Core/Default (0.64.0):
|
||||||
- Folly (= 2020.01.13.00)
|
|
||||||
- glog
|
- glog
|
||||||
- React-cxxreact (= 0.63.3)
|
- RCT-Folly (= 2020.01.13.00)
|
||||||
- React-jsi (= 0.63.3)
|
- React-cxxreact (= 0.64.0)
|
||||||
- React-jsiexecutor (= 0.63.3)
|
- React-jsi (= 0.64.0)
|
||||||
|
- React-jsiexecutor (= 0.64.0)
|
||||||
|
- React-perflogger (= 0.64.0)
|
||||||
- Yoga
|
- Yoga
|
||||||
- React-Core/DevSupport (0.63.3):
|
- React-Core/DevSupport (0.64.0):
|
||||||
- Folly (= 2020.01.13.00)
|
|
||||||
- glog
|
- glog
|
||||||
- React-Core/Default (= 0.63.3)
|
- RCT-Folly (= 2020.01.13.00)
|
||||||
- React-Core/RCTWebSocket (= 0.63.3)
|
- React-Core/Default (= 0.64.0)
|
||||||
- React-cxxreact (= 0.63.3)
|
- React-Core/RCTWebSocket (= 0.64.0)
|
||||||
- React-jsi (= 0.63.3)
|
- React-cxxreact (= 0.64.0)
|
||||||
- React-jsiexecutor (= 0.63.3)
|
- React-jsi (= 0.64.0)
|
||||||
- React-jsinspector (= 0.63.3)
|
- React-jsiexecutor (= 0.64.0)
|
||||||
|
- React-jsinspector (= 0.64.0)
|
||||||
|
- React-perflogger (= 0.64.0)
|
||||||
- Yoga
|
- Yoga
|
||||||
- React-Core/RCTActionSheetHeaders (0.63.3):
|
- React-Core/RCTActionSheetHeaders (0.64.0):
|
||||||
- Folly (= 2020.01.13.00)
|
|
||||||
- glog
|
- glog
|
||||||
|
- RCT-Folly (= 2020.01.13.00)
|
||||||
- React-Core/Default
|
- React-Core/Default
|
||||||
- React-cxxreact (= 0.63.3)
|
- React-cxxreact (= 0.64.0)
|
||||||
- React-jsi (= 0.63.3)
|
- React-jsi (= 0.64.0)
|
||||||
- React-jsiexecutor (= 0.63.3)
|
- React-jsiexecutor (= 0.64.0)
|
||||||
|
- React-perflogger (= 0.64.0)
|
||||||
- Yoga
|
- Yoga
|
||||||
- React-Core/RCTAnimationHeaders (0.63.3):
|
- React-Core/RCTAnimationHeaders (0.64.0):
|
||||||
- Folly (= 2020.01.13.00)
|
|
||||||
- glog
|
- glog
|
||||||
|
- RCT-Folly (= 2020.01.13.00)
|
||||||
- React-Core/Default
|
- React-Core/Default
|
||||||
- React-cxxreact (= 0.63.3)
|
- React-cxxreact (= 0.64.0)
|
||||||
- React-jsi (= 0.63.3)
|
- React-jsi (= 0.64.0)
|
||||||
- React-jsiexecutor (= 0.63.3)
|
- React-jsiexecutor (= 0.64.0)
|
||||||
|
- React-perflogger (= 0.64.0)
|
||||||
- Yoga
|
- Yoga
|
||||||
- React-Core/RCTBlobHeaders (0.63.3):
|
- React-Core/RCTBlobHeaders (0.64.0):
|
||||||
- Folly (= 2020.01.13.00)
|
|
||||||
- glog
|
- glog
|
||||||
|
- RCT-Folly (= 2020.01.13.00)
|
||||||
- React-Core/Default
|
- React-Core/Default
|
||||||
- React-cxxreact (= 0.63.3)
|
- React-cxxreact (= 0.64.0)
|
||||||
- React-jsi (= 0.63.3)
|
- React-jsi (= 0.64.0)
|
||||||
- React-jsiexecutor (= 0.63.3)
|
- React-jsiexecutor (= 0.64.0)
|
||||||
|
- React-perflogger (= 0.64.0)
|
||||||
- Yoga
|
- Yoga
|
||||||
- React-Core/RCTImageHeaders (0.63.3):
|
- React-Core/RCTImageHeaders (0.64.0):
|
||||||
- Folly (= 2020.01.13.00)
|
|
||||||
- glog
|
- glog
|
||||||
|
- RCT-Folly (= 2020.01.13.00)
|
||||||
- React-Core/Default
|
- React-Core/Default
|
||||||
- React-cxxreact (= 0.63.3)
|
- React-cxxreact (= 0.64.0)
|
||||||
- React-jsi (= 0.63.3)
|
- React-jsi (= 0.64.0)
|
||||||
- React-jsiexecutor (= 0.63.3)
|
- React-jsiexecutor (= 0.64.0)
|
||||||
|
- React-perflogger (= 0.64.0)
|
||||||
- Yoga
|
- Yoga
|
||||||
- React-Core/RCTLinkingHeaders (0.63.3):
|
- React-Core/RCTLinkingHeaders (0.64.0):
|
||||||
- Folly (= 2020.01.13.00)
|
|
||||||
- glog
|
- glog
|
||||||
|
- RCT-Folly (= 2020.01.13.00)
|
||||||
- React-Core/Default
|
- React-Core/Default
|
||||||
- React-cxxreact (= 0.63.3)
|
- React-cxxreact (= 0.64.0)
|
||||||
- React-jsi (= 0.63.3)
|
- React-jsi (= 0.64.0)
|
||||||
- React-jsiexecutor (= 0.63.3)
|
- React-jsiexecutor (= 0.64.0)
|
||||||
|
- React-perflogger (= 0.64.0)
|
||||||
- Yoga
|
- Yoga
|
||||||
- React-Core/RCTNetworkHeaders (0.63.3):
|
- React-Core/RCTNetworkHeaders (0.64.0):
|
||||||
- Folly (= 2020.01.13.00)
|
|
||||||
- glog
|
- glog
|
||||||
|
- RCT-Folly (= 2020.01.13.00)
|
||||||
- React-Core/Default
|
- React-Core/Default
|
||||||
- React-cxxreact (= 0.63.3)
|
- React-cxxreact (= 0.64.0)
|
||||||
- React-jsi (= 0.63.3)
|
- React-jsi (= 0.64.0)
|
||||||
- React-jsiexecutor (= 0.63.3)
|
- React-jsiexecutor (= 0.64.0)
|
||||||
|
- React-perflogger (= 0.64.0)
|
||||||
- Yoga
|
- Yoga
|
||||||
- React-Core/RCTSettingsHeaders (0.63.3):
|
- React-Core/RCTSettingsHeaders (0.64.0):
|
||||||
- Folly (= 2020.01.13.00)
|
|
||||||
- glog
|
- glog
|
||||||
|
- RCT-Folly (= 2020.01.13.00)
|
||||||
- React-Core/Default
|
- React-Core/Default
|
||||||
- React-cxxreact (= 0.63.3)
|
- React-cxxreact (= 0.64.0)
|
||||||
- React-jsi (= 0.63.3)
|
- React-jsi (= 0.64.0)
|
||||||
- React-jsiexecutor (= 0.63.3)
|
- React-jsiexecutor (= 0.64.0)
|
||||||
|
- React-perflogger (= 0.64.0)
|
||||||
- Yoga
|
- Yoga
|
||||||
- React-Core/RCTTextHeaders (0.63.3):
|
- React-Core/RCTTextHeaders (0.64.0):
|
||||||
- Folly (= 2020.01.13.00)
|
|
||||||
- glog
|
- glog
|
||||||
|
- RCT-Folly (= 2020.01.13.00)
|
||||||
- React-Core/Default
|
- React-Core/Default
|
||||||
- React-cxxreact (= 0.63.3)
|
- React-cxxreact (= 0.64.0)
|
||||||
- React-jsi (= 0.63.3)
|
- React-jsi (= 0.64.0)
|
||||||
- React-jsiexecutor (= 0.63.3)
|
- React-jsiexecutor (= 0.64.0)
|
||||||
|
- React-perflogger (= 0.64.0)
|
||||||
- Yoga
|
- Yoga
|
||||||
- React-Core/RCTVibrationHeaders (0.63.3):
|
- React-Core/RCTVibrationHeaders (0.64.0):
|
||||||
- Folly (= 2020.01.13.00)
|
|
||||||
- glog
|
- glog
|
||||||
|
- RCT-Folly (= 2020.01.13.00)
|
||||||
- React-Core/Default
|
- React-Core/Default
|
||||||
- React-cxxreact (= 0.63.3)
|
- React-cxxreact (= 0.64.0)
|
||||||
- React-jsi (= 0.63.3)
|
- React-jsi (= 0.64.0)
|
||||||
- React-jsiexecutor (= 0.63.3)
|
- React-jsiexecutor (= 0.64.0)
|
||||||
|
- React-perflogger (= 0.64.0)
|
||||||
- Yoga
|
- Yoga
|
||||||
- React-Core/RCTWebSocket (0.63.3):
|
- React-Core/RCTWebSocket (0.64.0):
|
||||||
- Folly (= 2020.01.13.00)
|
|
||||||
- glog
|
- glog
|
||||||
- React-Core/Default (= 0.63.3)
|
- RCT-Folly (= 2020.01.13.00)
|
||||||
- React-cxxreact (= 0.63.3)
|
- React-Core/Default (= 0.64.0)
|
||||||
- React-jsi (= 0.63.3)
|
- React-cxxreact (= 0.64.0)
|
||||||
- React-jsiexecutor (= 0.63.3)
|
- React-jsi (= 0.64.0)
|
||||||
|
- React-jsiexecutor (= 0.64.0)
|
||||||
|
- React-perflogger (= 0.64.0)
|
||||||
- Yoga
|
- Yoga
|
||||||
- React-CoreModules (0.63.3):
|
- React-CoreModules (0.64.0):
|
||||||
- FBReactNativeSpec (= 0.63.3)
|
- FBReactNativeSpec (= 0.64.0)
|
||||||
- Folly (= 2020.01.13.00)
|
- RCT-Folly (= 2020.01.13.00)
|
||||||
- RCTTypeSafety (= 0.63.3)
|
- RCTTypeSafety (= 0.64.0)
|
||||||
- React-Core/CoreModulesHeaders (= 0.63.3)
|
- React-Core/CoreModulesHeaders (= 0.64.0)
|
||||||
- React-jsi (= 0.63.3)
|
- React-jsi (= 0.64.0)
|
||||||
- React-RCTImage (= 0.63.3)
|
- React-RCTImage (= 0.64.0)
|
||||||
- ReactCommon/turbomodule/core (= 0.63.3)
|
- ReactCommon/turbomodule/core (= 0.64.0)
|
||||||
- React-cxxreact (0.63.3):
|
- React-cxxreact (0.64.0):
|
||||||
- boost-for-react-native (= 1.63.0)
|
- boost-for-react-native (= 1.63.0)
|
||||||
- DoubleConversion
|
- DoubleConversion
|
||||||
- Folly (= 2020.01.13.00)
|
|
||||||
- glog
|
- glog
|
||||||
- React-callinvoker (= 0.63.3)
|
- RCT-Folly (= 2020.01.13.00)
|
||||||
- React-jsinspector (= 0.63.3)
|
- React-callinvoker (= 0.64.0)
|
||||||
- React-jsi (0.63.3):
|
- React-jsi (= 0.64.0)
|
||||||
|
- React-jsinspector (= 0.64.0)
|
||||||
|
- React-perflogger (= 0.64.0)
|
||||||
|
- React-runtimeexecutor (= 0.64.0)
|
||||||
|
- React-jsi (0.64.0):
|
||||||
- boost-for-react-native (= 1.63.0)
|
- boost-for-react-native (= 1.63.0)
|
||||||
- DoubleConversion
|
- DoubleConversion
|
||||||
- Folly (= 2020.01.13.00)
|
|
||||||
- glog
|
- glog
|
||||||
- React-jsi/Default (= 0.63.3)
|
- RCT-Folly (= 2020.01.13.00)
|
||||||
- React-jsi/Default (0.63.3):
|
- React-jsi/Default (= 0.64.0)
|
||||||
|
- React-jsi/Default (0.64.0):
|
||||||
- boost-for-react-native (= 1.63.0)
|
- boost-for-react-native (= 1.63.0)
|
||||||
- DoubleConversion
|
- DoubleConversion
|
||||||
- Folly (= 2020.01.13.00)
|
|
||||||
- glog
|
- glog
|
||||||
- React-jsiexecutor (0.63.3):
|
- RCT-Folly (= 2020.01.13.00)
|
||||||
|
- React-jsiexecutor (0.64.0):
|
||||||
- DoubleConversion
|
- DoubleConversion
|
||||||
- Folly (= 2020.01.13.00)
|
|
||||||
- glog
|
- glog
|
||||||
- React-cxxreact (= 0.63.3)
|
- RCT-Folly (= 2020.01.13.00)
|
||||||
- React-jsi (= 0.63.3)
|
- React-cxxreact (= 0.64.0)
|
||||||
- React-jsinspector (0.63.3)
|
- React-jsi (= 0.64.0)
|
||||||
- react-native-update (5.9.1):
|
- React-perflogger (= 0.64.0)
|
||||||
|
- React-jsinspector (0.64.0)
|
||||||
|
- react-native-update (5.11.0-beta2):
|
||||||
- React
|
- React
|
||||||
- react-native-update/BSDiff (= 5.9.1)
|
- react-native-update/BSDiff (= 5.11.0-beta2)
|
||||||
- react-native-update/RCTPushy (= 5.9.1)
|
- react-native-update/RCTPushy (= 5.11.0-beta2)
|
||||||
- SSZipArchive
|
- SSZipArchive
|
||||||
- react-native-update/BSDiff (5.9.1):
|
- react-native-update/BSDiff (5.11.0-beta2):
|
||||||
- React
|
- React
|
||||||
- SSZipArchive
|
- SSZipArchive
|
||||||
- react-native-update/RCTPushy (5.9.1):
|
- react-native-update/RCTPushy (5.11.0-beta2):
|
||||||
- React
|
- React
|
||||||
- SSZipArchive
|
- SSZipArchive
|
||||||
- react-native-webview (10.9.2):
|
- react-native-webview (10.9.2):
|
||||||
- React-Core
|
- React-Core
|
||||||
- React-RCTActionSheet (0.63.3):
|
- React-perflogger (0.64.0)
|
||||||
- React-Core/RCTActionSheetHeaders (= 0.63.3)
|
- React-RCTActionSheet (0.64.0):
|
||||||
- React-RCTAnimation (0.63.3):
|
- React-Core/RCTActionSheetHeaders (= 0.64.0)
|
||||||
- FBReactNativeSpec (= 0.63.3)
|
- React-RCTAnimation (0.64.0):
|
||||||
- Folly (= 2020.01.13.00)
|
- FBReactNativeSpec (= 0.64.0)
|
||||||
- RCTTypeSafety (= 0.63.3)
|
- RCT-Folly (= 2020.01.13.00)
|
||||||
- React-Core/RCTAnimationHeaders (= 0.63.3)
|
- RCTTypeSafety (= 0.64.0)
|
||||||
- React-jsi (= 0.63.3)
|
- React-Core/RCTAnimationHeaders (= 0.64.0)
|
||||||
- ReactCommon/turbomodule/core (= 0.63.3)
|
- React-jsi (= 0.64.0)
|
||||||
- React-RCTBlob (0.63.3):
|
- ReactCommon/turbomodule/core (= 0.64.0)
|
||||||
- FBReactNativeSpec (= 0.63.3)
|
- React-RCTBlob (0.64.0):
|
||||||
- Folly (= 2020.01.13.00)
|
- FBReactNativeSpec (= 0.64.0)
|
||||||
- React-Core/RCTBlobHeaders (= 0.63.3)
|
- RCT-Folly (= 2020.01.13.00)
|
||||||
- React-Core/RCTWebSocket (= 0.63.3)
|
- React-Core/RCTBlobHeaders (= 0.64.0)
|
||||||
- React-jsi (= 0.63.3)
|
- React-Core/RCTWebSocket (= 0.64.0)
|
||||||
- React-RCTNetwork (= 0.63.3)
|
- React-jsi (= 0.64.0)
|
||||||
- ReactCommon/turbomodule/core (= 0.63.3)
|
- React-RCTNetwork (= 0.64.0)
|
||||||
- React-RCTImage (0.63.3):
|
- ReactCommon/turbomodule/core (= 0.64.0)
|
||||||
- FBReactNativeSpec (= 0.63.3)
|
- React-RCTImage (0.64.0):
|
||||||
- Folly (= 2020.01.13.00)
|
- FBReactNativeSpec (= 0.64.0)
|
||||||
- RCTTypeSafety (= 0.63.3)
|
- RCT-Folly (= 2020.01.13.00)
|
||||||
- React-Core/RCTImageHeaders (= 0.63.3)
|
- RCTTypeSafety (= 0.64.0)
|
||||||
- React-jsi (= 0.63.3)
|
- React-Core/RCTImageHeaders (= 0.64.0)
|
||||||
- React-RCTNetwork (= 0.63.3)
|
- React-jsi (= 0.64.0)
|
||||||
- ReactCommon/turbomodule/core (= 0.63.3)
|
- React-RCTNetwork (= 0.64.0)
|
||||||
- React-RCTLinking (0.63.3):
|
- ReactCommon/turbomodule/core (= 0.64.0)
|
||||||
- FBReactNativeSpec (= 0.63.3)
|
- React-RCTLinking (0.64.0):
|
||||||
- React-Core/RCTLinkingHeaders (= 0.63.3)
|
- FBReactNativeSpec (= 0.64.0)
|
||||||
- React-jsi (= 0.63.3)
|
- React-Core/RCTLinkingHeaders (= 0.64.0)
|
||||||
- ReactCommon/turbomodule/core (= 0.63.3)
|
- React-jsi (= 0.64.0)
|
||||||
- React-RCTNetwork (0.63.3):
|
- ReactCommon/turbomodule/core (= 0.64.0)
|
||||||
- FBReactNativeSpec (= 0.63.3)
|
- React-RCTNetwork (0.64.0):
|
||||||
- Folly (= 2020.01.13.00)
|
- FBReactNativeSpec (= 0.64.0)
|
||||||
- RCTTypeSafety (= 0.63.3)
|
- RCT-Folly (= 2020.01.13.00)
|
||||||
- React-Core/RCTNetworkHeaders (= 0.63.3)
|
- RCTTypeSafety (= 0.64.0)
|
||||||
- React-jsi (= 0.63.3)
|
- React-Core/RCTNetworkHeaders (= 0.64.0)
|
||||||
- ReactCommon/turbomodule/core (= 0.63.3)
|
- React-jsi (= 0.64.0)
|
||||||
- React-RCTSettings (0.63.3):
|
- ReactCommon/turbomodule/core (= 0.64.0)
|
||||||
- FBReactNativeSpec (= 0.63.3)
|
- React-RCTSettings (0.64.0):
|
||||||
- Folly (= 2020.01.13.00)
|
- FBReactNativeSpec (= 0.64.0)
|
||||||
- RCTTypeSafety (= 0.63.3)
|
- RCT-Folly (= 2020.01.13.00)
|
||||||
- React-Core/RCTSettingsHeaders (= 0.63.3)
|
- RCTTypeSafety (= 0.64.0)
|
||||||
- React-jsi (= 0.63.3)
|
- React-Core/RCTSettingsHeaders (= 0.64.0)
|
||||||
- ReactCommon/turbomodule/core (= 0.63.3)
|
- React-jsi (= 0.64.0)
|
||||||
- React-RCTText (0.63.3):
|
- ReactCommon/turbomodule/core (= 0.64.0)
|
||||||
- React-Core/RCTTextHeaders (= 0.63.3)
|
- React-RCTText (0.64.0):
|
||||||
- React-RCTVibration (0.63.3):
|
- React-Core/RCTTextHeaders (= 0.64.0)
|
||||||
- FBReactNativeSpec (= 0.63.3)
|
- React-RCTVibration (0.64.0):
|
||||||
- Folly (= 2020.01.13.00)
|
- FBReactNativeSpec (= 0.64.0)
|
||||||
- React-Core/RCTVibrationHeaders (= 0.63.3)
|
- RCT-Folly (= 2020.01.13.00)
|
||||||
- React-jsi (= 0.63.3)
|
- React-Core/RCTVibrationHeaders (= 0.64.0)
|
||||||
- ReactCommon/turbomodule/core (= 0.63.3)
|
- React-jsi (= 0.64.0)
|
||||||
- ReactCommon/turbomodule/core (0.63.3):
|
- ReactCommon/turbomodule/core (= 0.64.0)
|
||||||
|
- React-runtimeexecutor (0.64.0):
|
||||||
|
- React-jsi (= 0.64.0)
|
||||||
|
- ReactCommon/turbomodule/core (0.64.0):
|
||||||
- DoubleConversion
|
- DoubleConversion
|
||||||
- Folly (= 2020.01.13.00)
|
|
||||||
- glog
|
- glog
|
||||||
- React-callinvoker (= 0.63.3)
|
- RCT-Folly (= 2020.01.13.00)
|
||||||
- React-Core (= 0.63.3)
|
- React-callinvoker (= 0.64.0)
|
||||||
- React-cxxreact (= 0.63.3)
|
- React-Core (= 0.64.0)
|
||||||
- React-jsi (= 0.63.3)
|
- React-cxxreact (= 0.64.0)
|
||||||
|
- React-jsi (= 0.64.0)
|
||||||
|
- React-perflogger (= 0.64.0)
|
||||||
- SSZipArchive (2.2.3)
|
- SSZipArchive (2.2.3)
|
||||||
- Yoga (1.14.0)
|
- Yoga (1.14.0)
|
||||||
- YogaKit (1.18.1):
|
- YogaKit (1.18.1):
|
||||||
@ -317,28 +348,28 @@ PODS:
|
|||||||
DEPENDENCIES:
|
DEPENDENCIES:
|
||||||
- DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`)
|
- DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`)
|
||||||
- FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`)
|
- FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`)
|
||||||
- FBReactNativeSpec (from `../node_modules/react-native/Libraries/FBReactNativeSpec`)
|
- FBReactNativeSpec (from `../node_modules/react-native/React/FBReactNativeSpec`)
|
||||||
- Flipper (= 0.54.0)
|
- Flipper (= 0.84.0)
|
||||||
- Flipper-DoubleConversion (= 1.1.7)
|
- Flipper-DoubleConversion (= 1.1.7)
|
||||||
- Flipper-Folly (~> 2.2)
|
- Flipper-Folly (~> 2.5)
|
||||||
- Flipper-Glog (= 0.3.6)
|
- Flipper-Glog (= 0.3.6)
|
||||||
- Flipper-PeerTalk (~> 0.0.4)
|
- Flipper-PeerTalk (~> 0.0.4)
|
||||||
- Flipper-RSocket (~> 1.1)
|
- Flipper-RSocket (~> 1.3)
|
||||||
- FlipperKit (= 0.54.0)
|
- FlipperKit (= 0.84.0)
|
||||||
- FlipperKit/Core (= 0.54.0)
|
- FlipperKit/Core (= 0.84.0)
|
||||||
- FlipperKit/CppBridge (= 0.54.0)
|
- FlipperKit/CppBridge (= 0.84.0)
|
||||||
- FlipperKit/FBCxxFollyDynamicConvert (= 0.54.0)
|
- FlipperKit/FBCxxFollyDynamicConvert (= 0.84.0)
|
||||||
- FlipperKit/FBDefines (= 0.54.0)
|
- FlipperKit/FBDefines (= 0.84.0)
|
||||||
- FlipperKit/FKPortForwarding (= 0.54.0)
|
- FlipperKit/FKPortForwarding (= 0.84.0)
|
||||||
- FlipperKit/FlipperKitHighlightOverlay (= 0.54.0)
|
- FlipperKit/FlipperKitHighlightOverlay (= 0.84.0)
|
||||||
- FlipperKit/FlipperKitLayoutPlugin (= 0.54.0)
|
- FlipperKit/FlipperKitLayoutPlugin (= 0.84.0)
|
||||||
- FlipperKit/FlipperKitLayoutTextSearchable (= 0.54.0)
|
- FlipperKit/FlipperKitLayoutTextSearchable (= 0.84.0)
|
||||||
- FlipperKit/FlipperKitNetworkPlugin (= 0.54.0)
|
- FlipperKit/FlipperKitNetworkPlugin (= 0.84.0)
|
||||||
- FlipperKit/FlipperKitReactPlugin (= 0.54.0)
|
- FlipperKit/FlipperKitReactPlugin (= 0.84.0)
|
||||||
- FlipperKit/FlipperKitUserDefaultsPlugin (= 0.54.0)
|
- FlipperKit/FlipperKitUserDefaultsPlugin (= 0.84.0)
|
||||||
- FlipperKit/SKIOSNetworkPlugin (= 0.54.0)
|
- FlipperKit/SKIOSNetworkPlugin (= 0.84.0)
|
||||||
- Folly (from `../node_modules/react-native/third-party-podspecs/Folly.podspec`)
|
|
||||||
- glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`)
|
- glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`)
|
||||||
|
- RCT-Folly (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)
|
||||||
- RCTRequired (from `../node_modules/react-native/Libraries/RCTRequired`)
|
- RCTRequired (from `../node_modules/react-native/Libraries/RCTRequired`)
|
||||||
- RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`)
|
- RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`)
|
||||||
- React (from `../node_modules/react-native/`)
|
- React (from `../node_modules/react-native/`)
|
||||||
@ -353,6 +384,7 @@ DEPENDENCIES:
|
|||||||
- React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector`)
|
- React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector`)
|
||||||
- react-native-update (from `../../..`)
|
- react-native-update (from `../../..`)
|
||||||
- react-native-webview (from `../node_modules/react-native-webview`)
|
- react-native-webview (from `../node_modules/react-native-webview`)
|
||||||
|
- React-perflogger (from `../node_modules/react-native/ReactCommon/reactperflogger`)
|
||||||
- React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`)
|
- React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`)
|
||||||
- React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`)
|
- React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`)
|
||||||
- React-RCTBlob (from `../node_modules/react-native/Libraries/Blob`)
|
- React-RCTBlob (from `../node_modules/react-native/Libraries/Blob`)
|
||||||
@ -362,6 +394,7 @@ DEPENDENCIES:
|
|||||||
- React-RCTSettings (from `../node_modules/react-native/Libraries/Settings`)
|
- React-RCTSettings (from `../node_modules/react-native/Libraries/Settings`)
|
||||||
- React-RCTText (from `../node_modules/react-native/Libraries/Text`)
|
- React-RCTText (from `../node_modules/react-native/Libraries/Text`)
|
||||||
- React-RCTVibration (from `../node_modules/react-native/Libraries/Vibration`)
|
- React-RCTVibration (from `../node_modules/react-native/Libraries/Vibration`)
|
||||||
|
- React-runtimeexecutor (from `../node_modules/react-native/ReactCommon/runtimeexecutor`)
|
||||||
- ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`)
|
- ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`)
|
||||||
- Yoga (from `../node_modules/react-native/ReactCommon/yoga`)
|
- Yoga (from `../node_modules/react-native/ReactCommon/yoga`)
|
||||||
|
|
||||||
@ -369,7 +402,6 @@ SPEC REPOS:
|
|||||||
trunk:
|
trunk:
|
||||||
- boost-for-react-native
|
- boost-for-react-native
|
||||||
- CocoaAsyncSocket
|
- CocoaAsyncSocket
|
||||||
- CocoaLibEvent
|
|
||||||
- Flipper
|
- Flipper
|
||||||
- Flipper-DoubleConversion
|
- Flipper-DoubleConversion
|
||||||
- Flipper-Folly
|
- Flipper-Folly
|
||||||
@ -377,6 +409,7 @@ SPEC REPOS:
|
|||||||
- Flipper-PeerTalk
|
- Flipper-PeerTalk
|
||||||
- Flipper-RSocket
|
- Flipper-RSocket
|
||||||
- FlipperKit
|
- FlipperKit
|
||||||
|
- libevent
|
||||||
- OpenSSL-Universal
|
- OpenSSL-Universal
|
||||||
- SSZipArchive
|
- SSZipArchive
|
||||||
- YogaKit
|
- YogaKit
|
||||||
@ -387,11 +420,11 @@ EXTERNAL SOURCES:
|
|||||||
FBLazyVector:
|
FBLazyVector:
|
||||||
:path: "../node_modules/react-native/Libraries/FBLazyVector"
|
:path: "../node_modules/react-native/Libraries/FBLazyVector"
|
||||||
FBReactNativeSpec:
|
FBReactNativeSpec:
|
||||||
:path: "../node_modules/react-native/Libraries/FBReactNativeSpec"
|
:path: "../node_modules/react-native/React/FBReactNativeSpec"
|
||||||
Folly:
|
|
||||||
:podspec: "../node_modules/react-native/third-party-podspecs/Folly.podspec"
|
|
||||||
glog:
|
glog:
|
||||||
:podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec"
|
:podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec"
|
||||||
|
RCT-Folly:
|
||||||
|
:podspec: "../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec"
|
||||||
RCTRequired:
|
RCTRequired:
|
||||||
:path: "../node_modules/react-native/Libraries/RCTRequired"
|
:path: "../node_modules/react-native/Libraries/RCTRequired"
|
||||||
RCTTypeSafety:
|
RCTTypeSafety:
|
||||||
@ -416,6 +449,8 @@ EXTERNAL SOURCES:
|
|||||||
:path: "../../.."
|
:path: "../../.."
|
||||||
react-native-webview:
|
react-native-webview:
|
||||||
:path: "../node_modules/react-native-webview"
|
:path: "../node_modules/react-native-webview"
|
||||||
|
React-perflogger:
|
||||||
|
:path: "../node_modules/react-native/ReactCommon/reactperflogger"
|
||||||
React-RCTActionSheet:
|
React-RCTActionSheet:
|
||||||
:path: "../node_modules/react-native/Libraries/ActionSheetIOS"
|
:path: "../node_modules/react-native/Libraries/ActionSheetIOS"
|
||||||
React-RCTAnimation:
|
React-RCTAnimation:
|
||||||
@ -434,6 +469,8 @@ EXTERNAL SOURCES:
|
|||||||
:path: "../node_modules/react-native/Libraries/Text"
|
:path: "../node_modules/react-native/Libraries/Text"
|
||||||
React-RCTVibration:
|
React-RCTVibration:
|
||||||
:path: "../node_modules/react-native/Libraries/Vibration"
|
:path: "../node_modules/react-native/Libraries/Vibration"
|
||||||
|
React-runtimeexecutor:
|
||||||
|
:path: "../node_modules/react-native/ReactCommon/runtimeexecutor"
|
||||||
ReactCommon:
|
ReactCommon:
|
||||||
:path: "../node_modules/react-native/ReactCommon"
|
:path: "../node_modules/react-native/ReactCommon"
|
||||||
Yoga:
|
Yoga:
|
||||||
@ -441,47 +478,49 @@ EXTERNAL SOURCES:
|
|||||||
|
|
||||||
SPEC CHECKSUMS:
|
SPEC CHECKSUMS:
|
||||||
boost-for-react-native: 39c7adb57c4e60d6c5479dd8623128eb5b3f0f2c
|
boost-for-react-native: 39c7adb57c4e60d6c5479dd8623128eb5b3f0f2c
|
||||||
CocoaAsyncSocket: 694058e7c0ed05a9e217d1b3c7ded962f4180845
|
CocoaAsyncSocket: 065fd1e645c7abab64f7a6a2007a48038fdc6a99
|
||||||
CocoaLibEvent: 2fab71b8bd46dd33ddb959f7928ec5909f838e3f
|
DoubleConversion: cf9b38bf0b2d048436d9a82ad2abe1404f11e7de
|
||||||
DoubleConversion: cde416483dac037923206447da6e1454df403714
|
FBLazyVector: 49cbe4b43e445b06bf29199b6ad2057649e4c8f5
|
||||||
FBLazyVector: 878b59e31113e289e275165efbe4b54fa614d43d
|
FBReactNativeSpec: 32175a51766279e1b9831f98bfa746c187822ddf
|
||||||
FBReactNativeSpec: 7da9338acfb98d4ef9e5536805a0704572d33c2f
|
Flipper: 1e9b42d953eb33b2367f372ae25e64f6b86f4361
|
||||||
Flipper: be611d4b742d8c87fbae2ca5f44603a02539e365
|
|
||||||
Flipper-DoubleConversion: 38631e41ef4f9b12861c67d17cb5518d06badc41
|
Flipper-DoubleConversion: 38631e41ef4f9b12861c67d17cb5518d06badc41
|
||||||
Flipper-Folly: c12092ea368353b58e992843a990a3225d4533c3
|
Flipper-Folly: f7a3caafbd74bda4827954fd7a6e000e36355489
|
||||||
Flipper-Glog: 1dfd6abf1e922806c52ceb8701a3599a79a200a6
|
Flipper-Glog: 1dfd6abf1e922806c52ceb8701a3599a79a200a6
|
||||||
Flipper-PeerTalk: 116d8f857dc6ef55c7a5a75ea3ceaafe878aadc9
|
Flipper-PeerTalk: 116d8f857dc6ef55c7a5a75ea3ceaafe878aadc9
|
||||||
Flipper-RSocket: 64e7431a55835eb953b0bf984ef3b90ae9fdddd7
|
Flipper-RSocket: 127954abe8b162fcaf68d2134d34dc2bd7076154
|
||||||
FlipperKit: ab353d41aea8aae2ea6daaf813e67496642f3d7d
|
FlipperKit: 3970c0e7566160eda3defc580980c55f4ad585e8
|
||||||
Folly: b73c3869541e86821df3c387eb0af5f65addfab4
|
glog: 73c2498ac6884b13ede40eda8228cb1eee9d9d62
|
||||||
glog: 40a13f7840415b9a77023fbcae0f1e6f43192af3
|
libevent: 4049cae6c81cdb3654a443be001fb9bdceff7913
|
||||||
OpenSSL-Universal: 8b48cc0d10c1b2923617dfe5c178aa9ed2689355
|
OpenSSL-Universal: 1aa4f6a6ee7256b83db99ec1ccdaa80d10f9af9b
|
||||||
RCTRequired: 48884c74035a0b5b76dbb7a998bd93bcfc5f2047
|
RCT-Folly: ec7a233ccc97cc556cf7237f0db1ff65b986f27c
|
||||||
RCTTypeSafety: edf4b618033c2f1c5b7bc3d90d8e085ed95ba2ab
|
RCTRequired: 2f8cb5b7533219bf4218a045f92768129cf7050a
|
||||||
React: f36e90f3ceb976546e97df3403e37d226f79d0e3
|
RCTTypeSafety: 512728b73549e72ad7330b92f3d42936f2a4de5b
|
||||||
React-callinvoker: 18874f621eb96625df7a24a7dc8d6e07391affcd
|
React: 98eac01574128a790f0bbbafe2d1a8607291ac24
|
||||||
React-Core: ac3d816b8e3493970153f4aaf0cff18af0bb95e6
|
React-callinvoker: def3f7fae16192df68d9b69fd4bbb59092ee36bc
|
||||||
React-CoreModules: 4016d3a4e518bcfc4f5a51252b5a05692ca6f0e1
|
React-Core: 70a52aa5dbe9b83befae82038451a7df9fd54c5a
|
||||||
React-cxxreact: ffc9129013b87cb36cf3f30a86695a3c397b0f99
|
React-CoreModules: 052edef46117862e2570eb3a0f06d81c61d2c4b8
|
||||||
React-jsi: df07aa95b39c5be3e41199921509bfa929ed2b9d
|
React-cxxreact: c1dc71b30653cfb4770efdafcbdc0ad6d388baab
|
||||||
React-jsiexecutor: b56c03e61c0dd5f5801255f2160a815f4a53d451
|
React-jsi: 74341196d9547cbcbcfa4b3bbbf03af56431d5a1
|
||||||
React-jsinspector: 8e68ffbfe23880d3ee9bafa8be2777f60b25cbe2
|
React-jsiexecutor: 06a9c77b56902ae7ffcdd7a4905f664adc5d237b
|
||||||
react-native-update: 74ae0ad726a7cd5194b377361b7a3e921a65201c
|
React-jsinspector: 0ae35a37b20d5e031eb020a69cc5afdbd6406301
|
||||||
|
react-native-update: 57368bcb714d347147b87e520f596ca44ab1de52
|
||||||
react-native-webview: 4e96d493f9f90ba4f03b28933f30b2964df07e39
|
react-native-webview: 4e96d493f9f90ba4f03b28933f30b2964df07e39
|
||||||
React-RCTActionSheet: 53ea72699698b0b47a6421cb1c8b4ab215a774aa
|
React-perflogger: 9c547d8f06b9bf00cb447f2b75e8d7f19b7e02af
|
||||||
React-RCTAnimation: 1befece0b5183c22ae01b966f5583f42e69a83c2
|
React-RCTActionSheet: 3080b6e12e0e1a5b313c8c0050699b5c794a1b11
|
||||||
React-RCTBlob: 0b284339cbe4b15705a05e2313a51c6d8b51fa40
|
React-RCTAnimation: 3f96f21a497ae7dabf4d2f150ee43f906aaf516f
|
||||||
React-RCTImage: d1756599ebd4dc2cb19d1682fe67c6b976658387
|
React-RCTBlob: 283b8e5025e7f954176bc48164f846909002f3ed
|
||||||
React-RCTLinking: 9af0a51c6d6a4dd1674daadafffc6d03033a6d18
|
React-RCTImage: 5088a484faac78f2d877e1b79125d3bb1ea94a16
|
||||||
React-RCTNetwork: 332c83929cc5eae0b3bbca4add1d668e1fc18bda
|
React-RCTLinking: 5e8fbb3e9a8bc2e4e3eb15b1eb8bda5fcac27b8c
|
||||||
React-RCTSettings: d6953772cfd55f2c68ad72b7ef29efc7ec49f773
|
React-RCTNetwork: 38ec277217b1e841d5e6a1fa78da65b9212ccb28
|
||||||
React-RCTText: 65a6de06a7389098ce24340d1d3556015c38f746
|
React-RCTSettings: 242d6e692108c3de4f3bb74b7586a8799e9ab070
|
||||||
React-RCTVibration: 8e9fb25724a0805107fc1acc9075e26f814df454
|
React-RCTText: 8746736ac8eb5a4a74719aa695b7a236a93a83d2
|
||||||
ReactCommon: 4167844018c9ed375cc01a843e9ee564399e53c3
|
React-RCTVibration: 0fd6b21751a33cb72fce1a4a33ab9678416d307a
|
||||||
|
React-runtimeexecutor: cad74a1eaa53ee6e7a3620231939d8fe2c6afcf0
|
||||||
|
ReactCommon: cfe2b7fd20e0dbd2d1185cd7d8f99633fbc5ff05
|
||||||
SSZipArchive: 62d4947b08730e4cda640473b0066d209ff033c9
|
SSZipArchive: 62d4947b08730e4cda640473b0066d209ff033c9
|
||||||
Yoga: 7d13633d129fd179e01b8953d38d47be90db185a
|
Yoga: 8c8436d4171c87504c648ae23b1d81242bdf3bbf
|
||||||
YogaKit: f782866e155069a2cca2517aafea43200b01fd5a
|
YogaKit: f782866e155069a2cca2517aafea43200b01fd5a
|
||||||
|
|
||||||
PODFILE CHECKSUM: 449e295f5242b426c8459fd24a8812cc985916d0
|
PODFILE CHECKSUM: 519089f4194b2734ec99f1355a2d6fa8ed4aefbd
|
||||||
|
|
||||||
COCOAPODS: 1.9.3
|
COCOAPODS: 1.10.1
|
||||||
|
@ -141,6 +141,7 @@
|
|||||||
13B07F8E1A680F5B00A75B9A /* Resources */,
|
13B07F8E1A680F5B00A75B9A /* Resources */,
|
||||||
00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
|
00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
|
||||||
1CD78CE8A2E7B88FAE48FCEE /* [CP] Copy Pods Resources */,
|
1CD78CE8A2E7B88FAE48FCEE /* [CP] Copy Pods Resources */,
|
||||||
|
F9FE0A60F5C1B623C43151B4 /* [CP] Embed Pods Frameworks */,
|
||||||
);
|
);
|
||||||
buildRules = (
|
buildRules = (
|
||||||
);
|
);
|
||||||
@ -254,6 +255,24 @@
|
|||||||
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
|
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
|
||||||
showEnvVarsInLog = 0;
|
showEnvVarsInLog = 0;
|
||||||
};
|
};
|
||||||
|
F9FE0A60F5C1B623C43151B4 /* [CP] Embed Pods Frameworks */ = {
|
||||||
|
isa = PBXShellScriptBuildPhase;
|
||||||
|
buildActionMask = 2147483647;
|
||||||
|
files = (
|
||||||
|
);
|
||||||
|
inputPaths = (
|
||||||
|
"${PODS_ROOT}/Target Support Files/Pods-testHotUpdate/Pods-testHotUpdate-frameworks.sh",
|
||||||
|
"${PODS_XCFRAMEWORKS_BUILD_DIR}/OpenSSL/OpenSSL.framework/OpenSSL",
|
||||||
|
);
|
||||||
|
name = "[CP] Embed Pods Frameworks";
|
||||||
|
outputPaths = (
|
||||||
|
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/OpenSSL.framework",
|
||||||
|
);
|
||||||
|
runOnlyForDeploymentPostprocessing = 0;
|
||||||
|
shellPath = /bin/sh;
|
||||||
|
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-testHotUpdate/Pods-testHotUpdate-frameworks.sh\"\n";
|
||||||
|
showEnvVarsInLog = 0;
|
||||||
|
};
|
||||||
FD10A7F022414F080027D42C /* Start Packager */ = {
|
FD10A7F022414F080027D42C /* Start Packager */ = {
|
||||||
isa = PBXShellScriptBuildPhase;
|
isa = PBXShellScriptBuildPhase;
|
||||||
buildActionMask = 2147483647;
|
buildActionMask = 2147483647;
|
||||||
@ -380,6 +399,7 @@
|
|||||||
COPY_PHASE_STRIP = NO;
|
COPY_PHASE_STRIP = NO;
|
||||||
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
||||||
ENABLE_TESTABILITY = YES;
|
ENABLE_TESTABILITY = YES;
|
||||||
|
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "arm64 ";
|
||||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||||
GCC_DYNAMIC_NO_PIC = NO;
|
GCC_DYNAMIC_NO_PIC = NO;
|
||||||
GCC_NO_COMMON_BLOCKS = YES;
|
GCC_NO_COMMON_BLOCKS = YES;
|
||||||
@ -433,6 +453,7 @@
|
|||||||
COPY_PHASE_STRIP = YES;
|
COPY_PHASE_STRIP = YES;
|
||||||
ENABLE_NS_ASSERTIONS = NO;
|
ENABLE_NS_ASSERTIONS = NO;
|
||||||
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
||||||
|
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "arm64 ";
|
||||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||||
GCC_NO_COMMON_BLOCKS = YES;
|
GCC_NO_COMMON_BLOCKS = YES;
|
||||||
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
||||||
|
@ -12,7 +12,7 @@ module.exports = {
|
|||||||
getTransformOptions: async () => ({
|
getTransformOptions: async () => ({
|
||||||
transform: {
|
transform: {
|
||||||
experimentalImportSupport: false,
|
experimentalImportSupport: false,
|
||||||
inlineRequires: false,
|
inlineRequires: true,
|
||||||
},
|
},
|
||||||
}),
|
}),
|
||||||
},
|
},
|
||||||
|
@ -11,20 +11,20 @@
|
|||||||
"apk": "(cd android && ./gradlew aR)"
|
"apk": "(cd android && ./gradlew aR)"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"react": "16.13.1",
|
"react": "17.0.1",
|
||||||
"react-native": "0.63.3",
|
"react-native": "0.64.0",
|
||||||
"react-native-update": "link:../..",
|
"react-native-update": "link:../..",
|
||||||
"react-native-webview": "^10.9.2"
|
"react-native-webview": "^10.9.2"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@babel/core": "^7.8.4",
|
"@babel/core": "^7.12.9",
|
||||||
"@babel/runtime": "^7.8.4",
|
"@babel/runtime": "^7.12.5",
|
||||||
"@react-native-community/eslint-config": "^1.1.0",
|
"@react-native-community/eslint-config": "^2.0.0",
|
||||||
"babel-jest": "^25.1.0",
|
"babel-jest": "^26.6.3",
|
||||||
"eslint": "^6.5.1",
|
"eslint": "7.14.0",
|
||||||
"jest": "^25.1.0",
|
"jest": "^26.6.3",
|
||||||
"metro-react-native-babel-preset": "^0.59.0",
|
"metro-react-native-babel-preset": "^0.64.0",
|
||||||
"react-test-renderer": "16.13.1"
|
"react-test-renderer": "17.0.1"
|
||||||
},
|
},
|
||||||
"jest": {
|
"jest": {
|
||||||
"preset": "react-native"
|
"preset": "react-native"
|
||||||
|
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user