Update example to 0.66.0
This commit is contained in:
parent
bf1701031b
commit
775e567062
Example/testHotUpdate
@ -120,15 +120,16 @@ def jscFlavor = 'org.webkit:android-jsc:+'
|
|||||||
*/
|
*/
|
||||||
def enableHermes = project.ext.react.get("enableHermes", false);
|
def enableHermes = project.ext.react.get("enableHermes", false);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Architectures to build native code for in debug.
|
||||||
|
*/
|
||||||
|
def nativeArchitectures = project.getProperties().get("reactNativeDebugArchitectures")
|
||||||
|
|
||||||
|
|
||||||
android {
|
android {
|
||||||
ndkVersion rootProject.ext.ndkVersion
|
ndkVersion rootProject.ext.ndkVersion
|
||||||
compileSdkVersion rootProject.ext.compileSdkVersion
|
compileSdkVersion rootProject.ext.compileSdkVersion
|
||||||
|
|
||||||
compileOptions {
|
|
||||||
sourceCompatibility JavaVersion.VERSION_1_8
|
|
||||||
targetCompatibility JavaVersion.VERSION_1_8
|
|
||||||
}
|
|
||||||
|
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
applicationId "com.testhotupdate"
|
applicationId "com.testhotupdate"
|
||||||
minSdkVersion rootProject.ext.minSdkVersion
|
minSdkVersion rootProject.ext.minSdkVersion
|
||||||
@ -155,6 +156,11 @@ android {
|
|||||||
buildTypes {
|
buildTypes {
|
||||||
debug {
|
debug {
|
||||||
signingConfig signingConfigs.debug
|
signingConfig signingConfigs.debug
|
||||||
|
if (nativeArchitectures) {
|
||||||
|
ndk {
|
||||||
|
abiFilters nativeArchitectures.split(',')
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
release {
|
release {
|
||||||
crunchPngs false
|
crunchPngs false
|
||||||
@ -213,9 +219,9 @@ dependencies {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Run this once to be able to run the application with BUCK
|
// Run this once to be able to run the application with BUCK
|
||||||
// puts all compile dependencies into folder libs for BUCK to use
|
// puts all implementation dependencies into folder libs for BUCK to use
|
||||||
task copyDownloadableDepsToLibs(type: Copy) {
|
task copyDownloadableDepsToLibs(type: Copy) {
|
||||||
from configurations.compile
|
from configurations.implementation
|
||||||
into 'libs'
|
into 'libs'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -3,7 +3,6 @@
|
|||||||
<!-- Base application theme. -->
|
<!-- Base application theme. -->
|
||||||
<style name="AppTheme" parent="Theme.AppCompat.DayNight.NoActionBar">
|
<style name="AppTheme" parent="Theme.AppCompat.DayNight.NoActionBar">
|
||||||
<!-- Customize your theme here. -->
|
<!-- Customize your theme here. -->
|
||||||
<item name="android:textColor">#000000</item>
|
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
</resources>
|
</resources>
|
||||||
|
@ -2,18 +2,18 @@
|
|||||||
|
|
||||||
buildscript {
|
buildscript {
|
||||||
ext {
|
ext {
|
||||||
buildToolsVersion = "29.0.3"
|
buildToolsVersion = "30.0.2"
|
||||||
minSdkVersion = 21
|
minSdkVersion = 21
|
||||||
compileSdkVersion = 29
|
compileSdkVersion = 30
|
||||||
targetSdkVersion = 29
|
targetSdkVersion = 30
|
||||||
ndkVersion = "20.1.5948944"
|
ndkVersion = "21.4.7075529"
|
||||||
}
|
}
|
||||||
repositories {
|
repositories {
|
||||||
google()
|
google()
|
||||||
jcenter()
|
mavenCentral()
|
||||||
}
|
}
|
||||||
dependencies {
|
dependencies {
|
||||||
classpath('com.android.tools.build:gradle:4.1.0')
|
classpath('com.android.tools.build:gradle:4.2.2')
|
||||||
|
|
||||||
// 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
|
||||||
@ -22,6 +22,7 @@ buildscript {
|
|||||||
|
|
||||||
allprojects {
|
allprojects {
|
||||||
repositories {
|
repositories {
|
||||||
|
mavenCentral()
|
||||||
mavenLocal()
|
mavenLocal()
|
||||||
maven {
|
maven {
|
||||||
// All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
|
// All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
|
||||||
@ -33,7 +34,6 @@ allprojects {
|
|||||||
}
|
}
|
||||||
|
|
||||||
google()
|
google()
|
||||||
jcenter()
|
|
||||||
maven { url 'https://www.jitpack.io' }
|
maven { url 'https://www.jitpack.io' }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -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.84.0
|
FLIPPER_VERSION=0.99.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.7-all.zip
|
distributionUrl=https\://services.gradle.org/distributions/gradle-6.9-all.zip
|
||||||
zipStoreBase=GRADLE_USER_HOME
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
zipStorePath=wrapper/dists
|
zipStorePath=wrapper/dists
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
require_relative '../node_modules/react-native/scripts/react_native_pods'
|
require_relative '../node_modules/react-native/scripts/react_native_pods'
|
||||||
require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'
|
require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'
|
||||||
|
|
||||||
platform :ios, '10.0'
|
platform :ios, '11.0'
|
||||||
|
|
||||||
target 'testHotUpdate' do
|
target 'testHotUpdate' do
|
||||||
config = use_native_modules!
|
config = use_native_modules!
|
||||||
@ -16,10 +16,11 @@ target 'testHotUpdate' do
|
|||||||
#
|
#
|
||||||
# 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 the next line.
|
# you should disable the next line.
|
||||||
use_flipper!({'Flipper' => '0.75.1', 'Flipper-Folly' => '2.5.3', 'Flipper-RSocket' => '1.3.1'})
|
use_flipper!()
|
||||||
|
|
||||||
post_install do |installer|
|
post_install do |installer|
|
||||||
react_native_post_install(installer)
|
react_native_post_install(installer)
|
||||||
|
__apply_Xcode_12_5_M1_post_install_workaround(installer)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -1,360 +1,384 @@
|
|||||||
PODS:
|
PODS:
|
||||||
- boost-for-react-native (1.63.0)
|
- boost (1.76.0)
|
||||||
- CocoaAsyncSocket (7.6.5)
|
- CocoaAsyncSocket (7.6.5)
|
||||||
- DoubleConversion (1.1.6)
|
- DoubleConversion (1.1.6)
|
||||||
- FBLazyVector (0.64.2)
|
- FBLazyVector (0.66.0)
|
||||||
- FBReactNativeSpec (0.64.2):
|
- FBReactNativeSpec (0.66.0):
|
||||||
- RCT-Folly (= 2020.01.13.00)
|
- RCT-Folly (= 2021.06.28.00-v2)
|
||||||
- RCTRequired (= 0.64.2)
|
- RCTRequired (= 0.66.0)
|
||||||
- RCTTypeSafety (= 0.64.2)
|
- RCTTypeSafety (= 0.66.0)
|
||||||
- React-Core (= 0.64.2)
|
- React-Core (= 0.66.0)
|
||||||
- React-jsi (= 0.64.2)
|
- React-jsi (= 0.66.0)
|
||||||
- ReactCommon/turbomodule/core (= 0.64.2)
|
- ReactCommon/turbomodule/core (= 0.66.0)
|
||||||
- Flipper (0.75.1):
|
- Flipper (0.99.0):
|
||||||
- Flipper-Folly (~> 2.5)
|
- Flipper-Folly (~> 2.6)
|
||||||
- Flipper-RSocket (~> 1.3)
|
- Flipper-RSocket (~> 1.4)
|
||||||
- Flipper-DoubleConversion (1.1.7)
|
- Flipper-Boost-iOSX (1.76.0.1.11)
|
||||||
- Flipper-Folly (2.5.3):
|
- Flipper-DoubleConversion (3.1.7)
|
||||||
- boost-for-react-native
|
- Flipper-Fmt (7.1.7)
|
||||||
|
- Flipper-Folly (2.6.7):
|
||||||
|
- Flipper-Boost-iOSX
|
||||||
- Flipper-DoubleConversion
|
- Flipper-DoubleConversion
|
||||||
|
- Flipper-Fmt (= 7.1.7)
|
||||||
- Flipper-Glog
|
- Flipper-Glog
|
||||||
- libevent (~> 2.1.12)
|
- libevent (~> 2.1.12)
|
||||||
- OpenSSL-Universal (= 1.1.180)
|
- 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.3.1):
|
- Flipper-RSocket (1.4.3):
|
||||||
- Flipper-Folly (~> 2.5)
|
- Flipper-Folly (~> 2.6)
|
||||||
- FlipperKit (0.75.1):
|
- FlipperKit (0.99.0):
|
||||||
- FlipperKit/Core (= 0.75.1)
|
- FlipperKit/Core (= 0.99.0)
|
||||||
- FlipperKit/Core (0.75.1):
|
- FlipperKit/Core (0.99.0):
|
||||||
- Flipper (~> 0.75.1)
|
- Flipper (~> 0.99.0)
|
||||||
- FlipperKit/CppBridge
|
- FlipperKit/CppBridge
|
||||||
- FlipperKit/FBCxxFollyDynamicConvert
|
- FlipperKit/FBCxxFollyDynamicConvert
|
||||||
- FlipperKit/FBDefines
|
- FlipperKit/FBDefines
|
||||||
- FlipperKit/FKPortForwarding
|
- FlipperKit/FKPortForwarding
|
||||||
- FlipperKit/CppBridge (0.75.1):
|
- FlipperKit/CppBridge (0.99.0):
|
||||||
- Flipper (~> 0.75.1)
|
- Flipper (~> 0.99.0)
|
||||||
- FlipperKit/FBCxxFollyDynamicConvert (0.75.1):
|
- FlipperKit/FBCxxFollyDynamicConvert (0.99.0):
|
||||||
- Flipper-Folly (~> 2.5)
|
- Flipper-Folly (~> 2.6)
|
||||||
- FlipperKit/FBDefines (0.75.1)
|
- FlipperKit/FBDefines (0.99.0)
|
||||||
- FlipperKit/FKPortForwarding (0.75.1):
|
- FlipperKit/FKPortForwarding (0.99.0):
|
||||||
- CocoaAsyncSocket (~> 7.6)
|
- CocoaAsyncSocket (~> 7.6)
|
||||||
- Flipper-PeerTalk (~> 0.0.4)
|
- Flipper-PeerTalk (~> 0.0.4)
|
||||||
- FlipperKit/FlipperKitHighlightOverlay (0.75.1)
|
- FlipperKit/FlipperKitHighlightOverlay (0.99.0)
|
||||||
- FlipperKit/FlipperKitLayoutPlugin (0.75.1):
|
- FlipperKit/FlipperKitLayoutHelpers (0.99.0):
|
||||||
- FlipperKit/Core
|
- FlipperKit/Core
|
||||||
- FlipperKit/FlipperKitHighlightOverlay
|
- FlipperKit/FlipperKitHighlightOverlay
|
||||||
- FlipperKit/FlipperKitLayoutTextSearchable
|
- FlipperKit/FlipperKitLayoutTextSearchable
|
||||||
|
- FlipperKit/FlipperKitLayoutIOSDescriptors (0.99.0):
|
||||||
|
- FlipperKit/Core
|
||||||
|
- FlipperKit/FlipperKitHighlightOverlay
|
||||||
|
- FlipperKit/FlipperKitLayoutHelpers
|
||||||
- YogaKit (~> 1.18)
|
- YogaKit (~> 1.18)
|
||||||
- FlipperKit/FlipperKitLayoutTextSearchable (0.75.1)
|
- FlipperKit/FlipperKitLayoutPlugin (0.99.0):
|
||||||
- FlipperKit/FlipperKitNetworkPlugin (0.75.1):
|
|
||||||
- FlipperKit/Core
|
- FlipperKit/Core
|
||||||
- FlipperKit/FlipperKitReactPlugin (0.75.1):
|
- FlipperKit/FlipperKitHighlightOverlay
|
||||||
|
- FlipperKit/FlipperKitLayoutHelpers
|
||||||
|
- FlipperKit/FlipperKitLayoutIOSDescriptors
|
||||||
|
- FlipperKit/FlipperKitLayoutTextSearchable
|
||||||
|
- YogaKit (~> 1.18)
|
||||||
|
- FlipperKit/FlipperKitLayoutTextSearchable (0.99.0)
|
||||||
|
- FlipperKit/FlipperKitNetworkPlugin (0.99.0):
|
||||||
- FlipperKit/Core
|
- FlipperKit/Core
|
||||||
- FlipperKit/FlipperKitUserDefaultsPlugin (0.75.1):
|
- FlipperKit/FlipperKitReactPlugin (0.99.0):
|
||||||
- FlipperKit/Core
|
- FlipperKit/Core
|
||||||
- FlipperKit/SKIOSNetworkPlugin (0.75.1):
|
- FlipperKit/FlipperKitUserDefaultsPlugin (0.99.0):
|
||||||
|
- FlipperKit/Core
|
||||||
|
- FlipperKit/SKIOSNetworkPlugin (0.99.0):
|
||||||
- FlipperKit/Core
|
- FlipperKit/Core
|
||||||
- FlipperKit/FlipperKitNetworkPlugin
|
- FlipperKit/FlipperKitNetworkPlugin
|
||||||
|
- fmt (6.2.1)
|
||||||
- glog (0.3.5)
|
- glog (0.3.5)
|
||||||
- libevent (2.1.12)
|
- libevent (2.1.12)
|
||||||
- OpenSSL-Universal (1.1.180)
|
- OpenSSL-Universal (1.1.180)
|
||||||
- RCT-Folly (2020.01.13.00):
|
- RCT-Folly (2021.06.28.00-v2):
|
||||||
- boost-for-react-native
|
- boost
|
||||||
|
- DoubleConversion
|
||||||
|
- fmt (~> 6.2.1)
|
||||||
|
- glog
|
||||||
|
- RCT-Folly/Default (= 2021.06.28.00-v2)
|
||||||
|
- RCT-Folly/Default (2021.06.28.00-v2):
|
||||||
|
- boost
|
||||||
|
- DoubleConversion
|
||||||
|
- fmt (~> 6.2.1)
|
||||||
|
- glog
|
||||||
|
- RCTRequired (0.66.0)
|
||||||
|
- RCTTypeSafety (0.66.0):
|
||||||
|
- FBLazyVector (= 0.66.0)
|
||||||
|
- RCT-Folly (= 2021.06.28.00-v2)
|
||||||
|
- RCTRequired (= 0.66.0)
|
||||||
|
- React-Core (= 0.66.0)
|
||||||
|
- React (0.66.0):
|
||||||
|
- React-Core (= 0.66.0)
|
||||||
|
- React-Core/DevSupport (= 0.66.0)
|
||||||
|
- React-Core/RCTWebSocket (= 0.66.0)
|
||||||
|
- React-RCTActionSheet (= 0.66.0)
|
||||||
|
- React-RCTAnimation (= 0.66.0)
|
||||||
|
- React-RCTBlob (= 0.66.0)
|
||||||
|
- React-RCTImage (= 0.66.0)
|
||||||
|
- React-RCTLinking (= 0.66.0)
|
||||||
|
- React-RCTNetwork (= 0.66.0)
|
||||||
|
- React-RCTSettings (= 0.66.0)
|
||||||
|
- React-RCTText (= 0.66.0)
|
||||||
|
- React-RCTVibration (= 0.66.0)
|
||||||
|
- React-callinvoker (0.66.0)
|
||||||
|
- React-Core (0.66.0):
|
||||||
|
- glog
|
||||||
|
- RCT-Folly (= 2021.06.28.00-v2)
|
||||||
|
- React-Core/Default (= 0.66.0)
|
||||||
|
- React-cxxreact (= 0.66.0)
|
||||||
|
- React-jsi (= 0.66.0)
|
||||||
|
- React-jsiexecutor (= 0.66.0)
|
||||||
|
- React-perflogger (= 0.66.0)
|
||||||
|
- Yoga
|
||||||
|
- React-Core/CoreModulesHeaders (0.66.0):
|
||||||
|
- glog
|
||||||
|
- RCT-Folly (= 2021.06.28.00-v2)
|
||||||
|
- React-Core/Default
|
||||||
|
- React-cxxreact (= 0.66.0)
|
||||||
|
- React-jsi (= 0.66.0)
|
||||||
|
- React-jsiexecutor (= 0.66.0)
|
||||||
|
- React-perflogger (= 0.66.0)
|
||||||
|
- Yoga
|
||||||
|
- React-Core/Default (0.66.0):
|
||||||
|
- glog
|
||||||
|
- RCT-Folly (= 2021.06.28.00-v2)
|
||||||
|
- React-cxxreact (= 0.66.0)
|
||||||
|
- React-jsi (= 0.66.0)
|
||||||
|
- React-jsiexecutor (= 0.66.0)
|
||||||
|
- React-perflogger (= 0.66.0)
|
||||||
|
- Yoga
|
||||||
|
- React-Core/DevSupport (0.66.0):
|
||||||
|
- glog
|
||||||
|
- RCT-Folly (= 2021.06.28.00-v2)
|
||||||
|
- React-Core/Default (= 0.66.0)
|
||||||
|
- React-Core/RCTWebSocket (= 0.66.0)
|
||||||
|
- React-cxxreact (= 0.66.0)
|
||||||
|
- React-jsi (= 0.66.0)
|
||||||
|
- React-jsiexecutor (= 0.66.0)
|
||||||
|
- React-jsinspector (= 0.66.0)
|
||||||
|
- React-perflogger (= 0.66.0)
|
||||||
|
- Yoga
|
||||||
|
- React-Core/RCTActionSheetHeaders (0.66.0):
|
||||||
|
- glog
|
||||||
|
- RCT-Folly (= 2021.06.28.00-v2)
|
||||||
|
- React-Core/Default
|
||||||
|
- React-cxxreact (= 0.66.0)
|
||||||
|
- React-jsi (= 0.66.0)
|
||||||
|
- React-jsiexecutor (= 0.66.0)
|
||||||
|
- React-perflogger (= 0.66.0)
|
||||||
|
- Yoga
|
||||||
|
- React-Core/RCTAnimationHeaders (0.66.0):
|
||||||
|
- glog
|
||||||
|
- RCT-Folly (= 2021.06.28.00-v2)
|
||||||
|
- React-Core/Default
|
||||||
|
- React-cxxreact (= 0.66.0)
|
||||||
|
- React-jsi (= 0.66.0)
|
||||||
|
- React-jsiexecutor (= 0.66.0)
|
||||||
|
- React-perflogger (= 0.66.0)
|
||||||
|
- Yoga
|
||||||
|
- React-Core/RCTBlobHeaders (0.66.0):
|
||||||
|
- glog
|
||||||
|
- RCT-Folly (= 2021.06.28.00-v2)
|
||||||
|
- React-Core/Default
|
||||||
|
- React-cxxreact (= 0.66.0)
|
||||||
|
- React-jsi (= 0.66.0)
|
||||||
|
- React-jsiexecutor (= 0.66.0)
|
||||||
|
- React-perflogger (= 0.66.0)
|
||||||
|
- Yoga
|
||||||
|
- React-Core/RCTImageHeaders (0.66.0):
|
||||||
|
- glog
|
||||||
|
- RCT-Folly (= 2021.06.28.00-v2)
|
||||||
|
- React-Core/Default
|
||||||
|
- React-cxxreact (= 0.66.0)
|
||||||
|
- React-jsi (= 0.66.0)
|
||||||
|
- React-jsiexecutor (= 0.66.0)
|
||||||
|
- React-perflogger (= 0.66.0)
|
||||||
|
- Yoga
|
||||||
|
- React-Core/RCTLinkingHeaders (0.66.0):
|
||||||
|
- glog
|
||||||
|
- RCT-Folly (= 2021.06.28.00-v2)
|
||||||
|
- React-Core/Default
|
||||||
|
- React-cxxreact (= 0.66.0)
|
||||||
|
- React-jsi (= 0.66.0)
|
||||||
|
- React-jsiexecutor (= 0.66.0)
|
||||||
|
- React-perflogger (= 0.66.0)
|
||||||
|
- Yoga
|
||||||
|
- React-Core/RCTNetworkHeaders (0.66.0):
|
||||||
|
- glog
|
||||||
|
- RCT-Folly (= 2021.06.28.00-v2)
|
||||||
|
- React-Core/Default
|
||||||
|
- React-cxxreact (= 0.66.0)
|
||||||
|
- React-jsi (= 0.66.0)
|
||||||
|
- React-jsiexecutor (= 0.66.0)
|
||||||
|
- React-perflogger (= 0.66.0)
|
||||||
|
- Yoga
|
||||||
|
- React-Core/RCTSettingsHeaders (0.66.0):
|
||||||
|
- glog
|
||||||
|
- RCT-Folly (= 2021.06.28.00-v2)
|
||||||
|
- React-Core/Default
|
||||||
|
- React-cxxreact (= 0.66.0)
|
||||||
|
- React-jsi (= 0.66.0)
|
||||||
|
- React-jsiexecutor (= 0.66.0)
|
||||||
|
- React-perflogger (= 0.66.0)
|
||||||
|
- Yoga
|
||||||
|
- React-Core/RCTTextHeaders (0.66.0):
|
||||||
|
- glog
|
||||||
|
- RCT-Folly (= 2021.06.28.00-v2)
|
||||||
|
- React-Core/Default
|
||||||
|
- React-cxxreact (= 0.66.0)
|
||||||
|
- React-jsi (= 0.66.0)
|
||||||
|
- React-jsiexecutor (= 0.66.0)
|
||||||
|
- React-perflogger (= 0.66.0)
|
||||||
|
- Yoga
|
||||||
|
- React-Core/RCTVibrationHeaders (0.66.0):
|
||||||
|
- glog
|
||||||
|
- RCT-Folly (= 2021.06.28.00-v2)
|
||||||
|
- React-Core/Default
|
||||||
|
- React-cxxreact (= 0.66.0)
|
||||||
|
- React-jsi (= 0.66.0)
|
||||||
|
- React-jsiexecutor (= 0.66.0)
|
||||||
|
- React-perflogger (= 0.66.0)
|
||||||
|
- Yoga
|
||||||
|
- React-Core/RCTWebSocket (0.66.0):
|
||||||
|
- glog
|
||||||
|
- RCT-Folly (= 2021.06.28.00-v2)
|
||||||
|
- React-Core/Default (= 0.66.0)
|
||||||
|
- React-cxxreact (= 0.66.0)
|
||||||
|
- React-jsi (= 0.66.0)
|
||||||
|
- React-jsiexecutor (= 0.66.0)
|
||||||
|
- React-perflogger (= 0.66.0)
|
||||||
|
- Yoga
|
||||||
|
- React-CoreModules (0.66.0):
|
||||||
|
- FBReactNativeSpec (= 0.66.0)
|
||||||
|
- RCT-Folly (= 2021.06.28.00-v2)
|
||||||
|
- RCTTypeSafety (= 0.66.0)
|
||||||
|
- React-Core/CoreModulesHeaders (= 0.66.0)
|
||||||
|
- React-jsi (= 0.66.0)
|
||||||
|
- React-RCTImage (= 0.66.0)
|
||||||
|
- ReactCommon/turbomodule/core (= 0.66.0)
|
||||||
|
- React-cxxreact (0.66.0):
|
||||||
|
- boost (= 1.76.0)
|
||||||
- DoubleConversion
|
- DoubleConversion
|
||||||
- glog
|
- glog
|
||||||
- RCT-Folly/Default (= 2020.01.13.00)
|
- RCT-Folly (= 2021.06.28.00-v2)
|
||||||
- RCT-Folly/Default (2020.01.13.00):
|
- React-callinvoker (= 0.66.0)
|
||||||
- boost-for-react-native
|
- React-jsi (= 0.66.0)
|
||||||
|
- React-jsinspector (= 0.66.0)
|
||||||
|
- React-logger (= 0.66.0)
|
||||||
|
- React-perflogger (= 0.66.0)
|
||||||
|
- React-runtimeexecutor (= 0.66.0)
|
||||||
|
- React-jsi (0.66.0):
|
||||||
|
- boost (= 1.76.0)
|
||||||
- DoubleConversion
|
- DoubleConversion
|
||||||
- glog
|
- glog
|
||||||
- RCTRequired (0.64.2)
|
- RCT-Folly (= 2021.06.28.00-v2)
|
||||||
- RCTTypeSafety (0.64.2):
|
- React-jsi/Default (= 0.66.0)
|
||||||
- FBLazyVector (= 0.64.2)
|
- React-jsi/Default (0.66.0):
|
||||||
- RCT-Folly (= 2020.01.13.00)
|
- boost (= 1.76.0)
|
||||||
- RCTRequired (= 0.64.2)
|
|
||||||
- React-Core (= 0.64.2)
|
|
||||||
- React (0.64.2):
|
|
||||||
- React-Core (= 0.64.2)
|
|
||||||
- React-Core/DevSupport (= 0.64.2)
|
|
||||||
- React-Core/RCTWebSocket (= 0.64.2)
|
|
||||||
- React-RCTActionSheet (= 0.64.2)
|
|
||||||
- React-RCTAnimation (= 0.64.2)
|
|
||||||
- React-RCTBlob (= 0.64.2)
|
|
||||||
- React-RCTImage (= 0.64.2)
|
|
||||||
- React-RCTLinking (= 0.64.2)
|
|
||||||
- React-RCTNetwork (= 0.64.2)
|
|
||||||
- React-RCTSettings (= 0.64.2)
|
|
||||||
- React-RCTText (= 0.64.2)
|
|
||||||
- React-RCTVibration (= 0.64.2)
|
|
||||||
- React-callinvoker (0.64.2)
|
|
||||||
- React-Core (0.64.2):
|
|
||||||
- glog
|
|
||||||
- RCT-Folly (= 2020.01.13.00)
|
|
||||||
- React-Core/Default (= 0.64.2)
|
|
||||||
- React-cxxreact (= 0.64.2)
|
|
||||||
- React-jsi (= 0.64.2)
|
|
||||||
- React-jsiexecutor (= 0.64.2)
|
|
||||||
- React-perflogger (= 0.64.2)
|
|
||||||
- Yoga
|
|
||||||
- React-Core/CoreModulesHeaders (0.64.2):
|
|
||||||
- glog
|
|
||||||
- RCT-Folly (= 2020.01.13.00)
|
|
||||||
- React-Core/Default
|
|
||||||
- React-cxxreact (= 0.64.2)
|
|
||||||
- React-jsi (= 0.64.2)
|
|
||||||
- React-jsiexecutor (= 0.64.2)
|
|
||||||
- React-perflogger (= 0.64.2)
|
|
||||||
- Yoga
|
|
||||||
- React-Core/Default (0.64.2):
|
|
||||||
- glog
|
|
||||||
- RCT-Folly (= 2020.01.13.00)
|
|
||||||
- React-cxxreact (= 0.64.2)
|
|
||||||
- React-jsi (= 0.64.2)
|
|
||||||
- React-jsiexecutor (= 0.64.2)
|
|
||||||
- React-perflogger (= 0.64.2)
|
|
||||||
- Yoga
|
|
||||||
- React-Core/DevSupport (0.64.2):
|
|
||||||
- glog
|
|
||||||
- RCT-Folly (= 2020.01.13.00)
|
|
||||||
- React-Core/Default (= 0.64.2)
|
|
||||||
- React-Core/RCTWebSocket (= 0.64.2)
|
|
||||||
- React-cxxreact (= 0.64.2)
|
|
||||||
- React-jsi (= 0.64.2)
|
|
||||||
- React-jsiexecutor (= 0.64.2)
|
|
||||||
- React-jsinspector (= 0.64.2)
|
|
||||||
- React-perflogger (= 0.64.2)
|
|
||||||
- Yoga
|
|
||||||
- React-Core/RCTActionSheetHeaders (0.64.2):
|
|
||||||
- glog
|
|
||||||
- RCT-Folly (= 2020.01.13.00)
|
|
||||||
- React-Core/Default
|
|
||||||
- React-cxxreact (= 0.64.2)
|
|
||||||
- React-jsi (= 0.64.2)
|
|
||||||
- React-jsiexecutor (= 0.64.2)
|
|
||||||
- React-perflogger (= 0.64.2)
|
|
||||||
- Yoga
|
|
||||||
- React-Core/RCTAnimationHeaders (0.64.2):
|
|
||||||
- glog
|
|
||||||
- RCT-Folly (= 2020.01.13.00)
|
|
||||||
- React-Core/Default
|
|
||||||
- React-cxxreact (= 0.64.2)
|
|
||||||
- React-jsi (= 0.64.2)
|
|
||||||
- React-jsiexecutor (= 0.64.2)
|
|
||||||
- React-perflogger (= 0.64.2)
|
|
||||||
- Yoga
|
|
||||||
- React-Core/RCTBlobHeaders (0.64.2):
|
|
||||||
- glog
|
|
||||||
- RCT-Folly (= 2020.01.13.00)
|
|
||||||
- React-Core/Default
|
|
||||||
- React-cxxreact (= 0.64.2)
|
|
||||||
- React-jsi (= 0.64.2)
|
|
||||||
- React-jsiexecutor (= 0.64.2)
|
|
||||||
- React-perflogger (= 0.64.2)
|
|
||||||
- Yoga
|
|
||||||
- React-Core/RCTImageHeaders (0.64.2):
|
|
||||||
- glog
|
|
||||||
- RCT-Folly (= 2020.01.13.00)
|
|
||||||
- React-Core/Default
|
|
||||||
- React-cxxreact (= 0.64.2)
|
|
||||||
- React-jsi (= 0.64.2)
|
|
||||||
- React-jsiexecutor (= 0.64.2)
|
|
||||||
- React-perflogger (= 0.64.2)
|
|
||||||
- Yoga
|
|
||||||
- React-Core/RCTLinkingHeaders (0.64.2):
|
|
||||||
- glog
|
|
||||||
- RCT-Folly (= 2020.01.13.00)
|
|
||||||
- React-Core/Default
|
|
||||||
- React-cxxreact (= 0.64.2)
|
|
||||||
- React-jsi (= 0.64.2)
|
|
||||||
- React-jsiexecutor (= 0.64.2)
|
|
||||||
- React-perflogger (= 0.64.2)
|
|
||||||
- Yoga
|
|
||||||
- React-Core/RCTNetworkHeaders (0.64.2):
|
|
||||||
- glog
|
|
||||||
- RCT-Folly (= 2020.01.13.00)
|
|
||||||
- React-Core/Default
|
|
||||||
- React-cxxreact (= 0.64.2)
|
|
||||||
- React-jsi (= 0.64.2)
|
|
||||||
- React-jsiexecutor (= 0.64.2)
|
|
||||||
- React-perflogger (= 0.64.2)
|
|
||||||
- Yoga
|
|
||||||
- React-Core/RCTSettingsHeaders (0.64.2):
|
|
||||||
- glog
|
|
||||||
- RCT-Folly (= 2020.01.13.00)
|
|
||||||
- React-Core/Default
|
|
||||||
- React-cxxreact (= 0.64.2)
|
|
||||||
- React-jsi (= 0.64.2)
|
|
||||||
- React-jsiexecutor (= 0.64.2)
|
|
||||||
- React-perflogger (= 0.64.2)
|
|
||||||
- Yoga
|
|
||||||
- React-Core/RCTTextHeaders (0.64.2):
|
|
||||||
- glog
|
|
||||||
- RCT-Folly (= 2020.01.13.00)
|
|
||||||
- React-Core/Default
|
|
||||||
- React-cxxreact (= 0.64.2)
|
|
||||||
- React-jsi (= 0.64.2)
|
|
||||||
- React-jsiexecutor (= 0.64.2)
|
|
||||||
- React-perflogger (= 0.64.2)
|
|
||||||
- Yoga
|
|
||||||
- React-Core/RCTVibrationHeaders (0.64.2):
|
|
||||||
- glog
|
|
||||||
- RCT-Folly (= 2020.01.13.00)
|
|
||||||
- React-Core/Default
|
|
||||||
- React-cxxreact (= 0.64.2)
|
|
||||||
- React-jsi (= 0.64.2)
|
|
||||||
- React-jsiexecutor (= 0.64.2)
|
|
||||||
- React-perflogger (= 0.64.2)
|
|
||||||
- Yoga
|
|
||||||
- React-Core/RCTWebSocket (0.64.2):
|
|
||||||
- glog
|
|
||||||
- RCT-Folly (= 2020.01.13.00)
|
|
||||||
- React-Core/Default (= 0.64.2)
|
|
||||||
- React-cxxreact (= 0.64.2)
|
|
||||||
- React-jsi (= 0.64.2)
|
|
||||||
- React-jsiexecutor (= 0.64.2)
|
|
||||||
- React-perflogger (= 0.64.2)
|
|
||||||
- Yoga
|
|
||||||
- React-CoreModules (0.64.2):
|
|
||||||
- FBReactNativeSpec (= 0.64.2)
|
|
||||||
- RCT-Folly (= 2020.01.13.00)
|
|
||||||
- RCTTypeSafety (= 0.64.2)
|
|
||||||
- React-Core/CoreModulesHeaders (= 0.64.2)
|
|
||||||
- React-jsi (= 0.64.2)
|
|
||||||
- React-RCTImage (= 0.64.2)
|
|
||||||
- ReactCommon/turbomodule/core (= 0.64.2)
|
|
||||||
- React-cxxreact (0.64.2):
|
|
||||||
- boost-for-react-native (= 1.63.0)
|
|
||||||
- DoubleConversion
|
- DoubleConversion
|
||||||
- glog
|
- glog
|
||||||
- RCT-Folly (= 2020.01.13.00)
|
- RCT-Folly (= 2021.06.28.00-v2)
|
||||||
- React-callinvoker (= 0.64.2)
|
- React-jsiexecutor (0.66.0):
|
||||||
- React-jsi (= 0.64.2)
|
|
||||||
- React-jsinspector (= 0.64.2)
|
|
||||||
- React-perflogger (= 0.64.2)
|
|
||||||
- React-runtimeexecutor (= 0.64.2)
|
|
||||||
- React-jsi (0.64.2):
|
|
||||||
- boost-for-react-native (= 1.63.0)
|
|
||||||
- DoubleConversion
|
- DoubleConversion
|
||||||
- glog
|
- glog
|
||||||
- RCT-Folly (= 2020.01.13.00)
|
- RCT-Folly (= 2021.06.28.00-v2)
|
||||||
- React-jsi/Default (= 0.64.2)
|
- React-cxxreact (= 0.66.0)
|
||||||
- React-jsi/Default (0.64.2):
|
- React-jsi (= 0.66.0)
|
||||||
- boost-for-react-native (= 1.63.0)
|
- React-perflogger (= 0.66.0)
|
||||||
- DoubleConversion
|
- React-jsinspector (0.66.0)
|
||||||
|
- React-logger (0.66.0):
|
||||||
- glog
|
- glog
|
||||||
- RCT-Folly (= 2020.01.13.00)
|
- react-native-update (6.3.0):
|
||||||
- React-jsiexecutor (0.64.2):
|
|
||||||
- DoubleConversion
|
|
||||||
- glog
|
|
||||||
- RCT-Folly (= 2020.01.13.00)
|
|
||||||
- React-cxxreact (= 0.64.2)
|
|
||||||
- React-jsi (= 0.64.2)
|
|
||||||
- React-perflogger (= 0.64.2)
|
|
||||||
- React-jsinspector (0.64.2)
|
|
||||||
- react-native-update (6.0.5):
|
|
||||||
- React
|
- React
|
||||||
- react-native-update/HDiffPatch (= 6.0.5)
|
- react-native-update/HDiffPatch (= 6.3.0)
|
||||||
- react-native-update/RCTPushy (= 6.0.5)
|
- react-native-update/RCTPushy (= 6.3.0)
|
||||||
- SSZipArchive
|
- SSZipArchive
|
||||||
- react-native-update/HDiffPatch (6.0.5):
|
- react-native-update/HDiffPatch (6.3.0):
|
||||||
- React
|
- React
|
||||||
- SSZipArchive
|
- SSZipArchive
|
||||||
- react-native-update/RCTPushy (6.0.5):
|
- react-native-update/RCTPushy (6.3.0):
|
||||||
- React
|
- React
|
||||||
- SSZipArchive
|
- SSZipArchive
|
||||||
- React-perflogger (0.64.2)
|
- React-perflogger (0.66.0)
|
||||||
- React-RCTActionSheet (0.64.2):
|
- React-RCTActionSheet (0.66.0):
|
||||||
- React-Core/RCTActionSheetHeaders (= 0.64.2)
|
- React-Core/RCTActionSheetHeaders (= 0.66.0)
|
||||||
- React-RCTAnimation (0.64.2):
|
- React-RCTAnimation (0.66.0):
|
||||||
- FBReactNativeSpec (= 0.64.2)
|
- FBReactNativeSpec (= 0.66.0)
|
||||||
- RCT-Folly (= 2020.01.13.00)
|
- RCT-Folly (= 2021.06.28.00-v2)
|
||||||
- RCTTypeSafety (= 0.64.2)
|
- RCTTypeSafety (= 0.66.0)
|
||||||
- React-Core/RCTAnimationHeaders (= 0.64.2)
|
- React-Core/RCTAnimationHeaders (= 0.66.0)
|
||||||
- React-jsi (= 0.64.2)
|
- React-jsi (= 0.66.0)
|
||||||
- ReactCommon/turbomodule/core (= 0.64.2)
|
- ReactCommon/turbomodule/core (= 0.66.0)
|
||||||
- React-RCTBlob (0.64.2):
|
- React-RCTBlob (0.66.0):
|
||||||
- FBReactNativeSpec (= 0.64.2)
|
- FBReactNativeSpec (= 0.66.0)
|
||||||
- RCT-Folly (= 2020.01.13.00)
|
- RCT-Folly (= 2021.06.28.00-v2)
|
||||||
- React-Core/RCTBlobHeaders (= 0.64.2)
|
- React-Core/RCTBlobHeaders (= 0.66.0)
|
||||||
- React-Core/RCTWebSocket (= 0.64.2)
|
- React-Core/RCTWebSocket (= 0.66.0)
|
||||||
- React-jsi (= 0.64.2)
|
- React-jsi (= 0.66.0)
|
||||||
- React-RCTNetwork (= 0.64.2)
|
- React-RCTNetwork (= 0.66.0)
|
||||||
- ReactCommon/turbomodule/core (= 0.64.2)
|
- ReactCommon/turbomodule/core (= 0.66.0)
|
||||||
- React-RCTImage (0.64.2):
|
- React-RCTImage (0.66.0):
|
||||||
- FBReactNativeSpec (= 0.64.2)
|
- FBReactNativeSpec (= 0.66.0)
|
||||||
- RCT-Folly (= 2020.01.13.00)
|
- RCT-Folly (= 2021.06.28.00-v2)
|
||||||
- RCTTypeSafety (= 0.64.2)
|
- RCTTypeSafety (= 0.66.0)
|
||||||
- React-Core/RCTImageHeaders (= 0.64.2)
|
- React-Core/RCTImageHeaders (= 0.66.0)
|
||||||
- React-jsi (= 0.64.2)
|
- React-jsi (= 0.66.0)
|
||||||
- React-RCTNetwork (= 0.64.2)
|
- React-RCTNetwork (= 0.66.0)
|
||||||
- ReactCommon/turbomodule/core (= 0.64.2)
|
- ReactCommon/turbomodule/core (= 0.66.0)
|
||||||
- React-RCTLinking (0.64.2):
|
- React-RCTLinking (0.66.0):
|
||||||
- FBReactNativeSpec (= 0.64.2)
|
- FBReactNativeSpec (= 0.66.0)
|
||||||
- React-Core/RCTLinkingHeaders (= 0.64.2)
|
- React-Core/RCTLinkingHeaders (= 0.66.0)
|
||||||
- React-jsi (= 0.64.2)
|
- React-jsi (= 0.66.0)
|
||||||
- ReactCommon/turbomodule/core (= 0.64.2)
|
- ReactCommon/turbomodule/core (= 0.66.0)
|
||||||
- React-RCTNetwork (0.64.2):
|
- React-RCTNetwork (0.66.0):
|
||||||
- FBReactNativeSpec (= 0.64.2)
|
- FBReactNativeSpec (= 0.66.0)
|
||||||
- RCT-Folly (= 2020.01.13.00)
|
- RCT-Folly (= 2021.06.28.00-v2)
|
||||||
- RCTTypeSafety (= 0.64.2)
|
- RCTTypeSafety (= 0.66.0)
|
||||||
- React-Core/RCTNetworkHeaders (= 0.64.2)
|
- React-Core/RCTNetworkHeaders (= 0.66.0)
|
||||||
- React-jsi (= 0.64.2)
|
- React-jsi (= 0.66.0)
|
||||||
- ReactCommon/turbomodule/core (= 0.64.2)
|
- ReactCommon/turbomodule/core (= 0.66.0)
|
||||||
- React-RCTSettings (0.64.2):
|
- React-RCTSettings (0.66.0):
|
||||||
- FBReactNativeSpec (= 0.64.2)
|
- FBReactNativeSpec (= 0.66.0)
|
||||||
- RCT-Folly (= 2020.01.13.00)
|
- RCT-Folly (= 2021.06.28.00-v2)
|
||||||
- RCTTypeSafety (= 0.64.2)
|
- RCTTypeSafety (= 0.66.0)
|
||||||
- React-Core/RCTSettingsHeaders (= 0.64.2)
|
- React-Core/RCTSettingsHeaders (= 0.66.0)
|
||||||
- React-jsi (= 0.64.2)
|
- React-jsi (= 0.66.0)
|
||||||
- ReactCommon/turbomodule/core (= 0.64.2)
|
- ReactCommon/turbomodule/core (= 0.66.0)
|
||||||
- React-RCTText (0.64.2):
|
- React-RCTText (0.66.0):
|
||||||
- React-Core/RCTTextHeaders (= 0.64.2)
|
- React-Core/RCTTextHeaders (= 0.66.0)
|
||||||
- React-RCTVibration (0.64.2):
|
- React-RCTVibration (0.66.0):
|
||||||
- FBReactNativeSpec (= 0.64.2)
|
- FBReactNativeSpec (= 0.66.0)
|
||||||
- RCT-Folly (= 2020.01.13.00)
|
- RCT-Folly (= 2021.06.28.00-v2)
|
||||||
- React-Core/RCTVibrationHeaders (= 0.64.2)
|
- React-Core/RCTVibrationHeaders (= 0.66.0)
|
||||||
- React-jsi (= 0.64.2)
|
- React-jsi (= 0.66.0)
|
||||||
- ReactCommon/turbomodule/core (= 0.64.2)
|
- ReactCommon/turbomodule/core (= 0.66.0)
|
||||||
- React-runtimeexecutor (0.64.2):
|
- React-runtimeexecutor (0.66.0):
|
||||||
- React-jsi (= 0.64.2)
|
- React-jsi (= 0.66.0)
|
||||||
- ReactCommon/turbomodule/core (0.64.2):
|
- ReactCommon/turbomodule/core (0.66.0):
|
||||||
- DoubleConversion
|
- DoubleConversion
|
||||||
- glog
|
- glog
|
||||||
- RCT-Folly (= 2020.01.13.00)
|
- RCT-Folly (= 2021.06.28.00-v2)
|
||||||
- React-callinvoker (= 0.64.2)
|
- React-callinvoker (= 0.66.0)
|
||||||
- React-Core (= 0.64.2)
|
- React-Core (= 0.66.0)
|
||||||
- React-cxxreact (= 0.64.2)
|
- React-cxxreact (= 0.66.0)
|
||||||
- React-jsi (= 0.64.2)
|
- React-jsi (= 0.66.0)
|
||||||
- React-perflogger (= 0.64.2)
|
- React-logger (= 0.66.0)
|
||||||
|
- React-perflogger (= 0.66.0)
|
||||||
- SSZipArchive (2.4.2)
|
- SSZipArchive (2.4.2)
|
||||||
- Yoga (1.14.0)
|
- Yoga (1.14.0)
|
||||||
- YogaKit (1.18.1):
|
- YogaKit (1.18.1):
|
||||||
- Yoga (~> 1.14)
|
- Yoga (~> 1.14)
|
||||||
|
|
||||||
DEPENDENCIES:
|
DEPENDENCIES:
|
||||||
|
- boost (from `../node_modules/react-native/third-party-podspecs/boost.podspec`)
|
||||||
- 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/React/FBReactNativeSpec`)
|
- FBReactNativeSpec (from `../node_modules/react-native/React/FBReactNativeSpec`)
|
||||||
- Flipper (= 0.75.1)
|
- Flipper (= 0.99.0)
|
||||||
- Flipper-DoubleConversion (= 1.1.7)
|
- Flipper-Boost-iOSX (= 1.76.0.1.11)
|
||||||
- Flipper-Folly (= 2.5.3)
|
- Flipper-DoubleConversion (= 3.1.7)
|
||||||
|
- Flipper-Fmt (= 7.1.7)
|
||||||
|
- Flipper-Folly (= 2.6.7)
|
||||||
- Flipper-Glog (= 0.3.6)
|
- Flipper-Glog (= 0.3.6)
|
||||||
- Flipper-PeerTalk (~> 0.0.4)
|
- Flipper-PeerTalk (= 0.0.4)
|
||||||
- Flipper-RSocket (= 1.3.1)
|
- Flipper-RSocket (= 1.4.3)
|
||||||
- FlipperKit (= 0.75.1)
|
- FlipperKit (= 0.99.0)
|
||||||
- FlipperKit/Core (= 0.75.1)
|
- FlipperKit/Core (= 0.99.0)
|
||||||
- FlipperKit/CppBridge (= 0.75.1)
|
- FlipperKit/CppBridge (= 0.99.0)
|
||||||
- FlipperKit/FBCxxFollyDynamicConvert (= 0.75.1)
|
- FlipperKit/FBCxxFollyDynamicConvert (= 0.99.0)
|
||||||
- FlipperKit/FBDefines (= 0.75.1)
|
- FlipperKit/FBDefines (= 0.99.0)
|
||||||
- FlipperKit/FKPortForwarding (= 0.75.1)
|
- FlipperKit/FKPortForwarding (= 0.99.0)
|
||||||
- FlipperKit/FlipperKitHighlightOverlay (= 0.75.1)
|
- FlipperKit/FlipperKitHighlightOverlay (= 0.99.0)
|
||||||
- FlipperKit/FlipperKitLayoutPlugin (= 0.75.1)
|
- FlipperKit/FlipperKitLayoutPlugin (= 0.99.0)
|
||||||
- FlipperKit/FlipperKitLayoutTextSearchable (= 0.75.1)
|
- FlipperKit/FlipperKitLayoutTextSearchable (= 0.99.0)
|
||||||
- FlipperKit/FlipperKitNetworkPlugin (= 0.75.1)
|
- FlipperKit/FlipperKitNetworkPlugin (= 0.99.0)
|
||||||
- FlipperKit/FlipperKitReactPlugin (= 0.75.1)
|
- FlipperKit/FlipperKitReactPlugin (= 0.99.0)
|
||||||
- FlipperKit/FlipperKitUserDefaultsPlugin (= 0.75.1)
|
- FlipperKit/FlipperKitUserDefaultsPlugin (= 0.99.0)
|
||||||
- FlipperKit/SKIOSNetworkPlugin (= 0.75.1)
|
- FlipperKit/SKIOSNetworkPlugin (= 0.99.0)
|
||||||
- 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`)
|
- 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`)
|
||||||
@ -369,6 +393,7 @@ DEPENDENCIES:
|
|||||||
- React-jsi (from `../node_modules/react-native/ReactCommon/jsi`)
|
- React-jsi (from `../node_modules/react-native/ReactCommon/jsi`)
|
||||||
- React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`)
|
- React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`)
|
||||||
- React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector`)
|
- React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector`)
|
||||||
|
- React-logger (from `../node_modules/react-native/ReactCommon/logger`)
|
||||||
- react-native-update (from `../../..`)
|
- react-native-update (from `../../..`)
|
||||||
- React-perflogger (from `../node_modules/react-native/ReactCommon/reactperflogger`)
|
- 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`)
|
||||||
@ -386,21 +411,25 @@ DEPENDENCIES:
|
|||||||
|
|
||||||
SPEC REPOS:
|
SPEC REPOS:
|
||||||
trunk:
|
trunk:
|
||||||
- boost-for-react-native
|
|
||||||
- CocoaAsyncSocket
|
- CocoaAsyncSocket
|
||||||
- Flipper
|
- Flipper
|
||||||
|
- Flipper-Boost-iOSX
|
||||||
- Flipper-DoubleConversion
|
- Flipper-DoubleConversion
|
||||||
|
- Flipper-Fmt
|
||||||
- Flipper-Folly
|
- Flipper-Folly
|
||||||
- Flipper-Glog
|
- Flipper-Glog
|
||||||
- Flipper-PeerTalk
|
- Flipper-PeerTalk
|
||||||
- Flipper-RSocket
|
- Flipper-RSocket
|
||||||
- FlipperKit
|
- FlipperKit
|
||||||
|
- fmt
|
||||||
- libevent
|
- libevent
|
||||||
- OpenSSL-Universal
|
- OpenSSL-Universal
|
||||||
- SSZipArchive
|
- SSZipArchive
|
||||||
- YogaKit
|
- YogaKit
|
||||||
|
|
||||||
EXTERNAL SOURCES:
|
EXTERNAL SOURCES:
|
||||||
|
boost:
|
||||||
|
:podspec: "../node_modules/react-native/third-party-podspecs/boost.podspec"
|
||||||
DoubleConversion:
|
DoubleConversion:
|
||||||
:podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec"
|
:podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec"
|
||||||
FBLazyVector:
|
FBLazyVector:
|
||||||
@ -431,6 +460,8 @@ EXTERNAL SOURCES:
|
|||||||
:path: "../node_modules/react-native/ReactCommon/jsiexecutor"
|
:path: "../node_modules/react-native/ReactCommon/jsiexecutor"
|
||||||
React-jsinspector:
|
React-jsinspector:
|
||||||
:path: "../node_modules/react-native/ReactCommon/jsinspector"
|
:path: "../node_modules/react-native/ReactCommon/jsinspector"
|
||||||
|
React-logger:
|
||||||
|
:path: "../node_modules/react-native/ReactCommon/logger"
|
||||||
react-native-update:
|
react-native-update:
|
||||||
:path: "../../.."
|
:path: "../../.."
|
||||||
React-perflogger:
|
React-perflogger:
|
||||||
@ -461,49 +492,53 @@ EXTERNAL SOURCES:
|
|||||||
:path: "../node_modules/react-native/ReactCommon/yoga"
|
:path: "../node_modules/react-native/ReactCommon/yoga"
|
||||||
|
|
||||||
SPEC CHECKSUMS:
|
SPEC CHECKSUMS:
|
||||||
boost-for-react-native: 39c7adb57c4e60d6c5479dd8623128eb5b3f0f2c
|
boost: a7c83b31436843459a1961bfd74b96033dc77234
|
||||||
CocoaAsyncSocket: 065fd1e645c7abab64f7a6a2007a48038fdc6a99
|
CocoaAsyncSocket: 065fd1e645c7abab64f7a6a2007a48038fdc6a99
|
||||||
DoubleConversion: cf9b38bf0b2d048436d9a82ad2abe1404f11e7de
|
DoubleConversion: 831926d9b8bf8166fd87886c4abab286c2422662
|
||||||
FBLazyVector: e686045572151edef46010a6f819ade377dfeb4b
|
FBLazyVector: 6816ca39e1cc8beffd2a96783f518296789d1c48
|
||||||
FBReactNativeSpec: a4e8a870ae782beff5646319965896a3a5979664
|
FBReactNativeSpec: 3b1e86618e902743fde35b40cf9ebd100fd655b7
|
||||||
Flipper: d3da1aa199aad94455ae725e9f3aa43f3ec17021
|
Flipper: 30e8eeeed6abdc98edaf32af0cda2f198be4b733
|
||||||
Flipper-DoubleConversion: 38631e41ef4f9b12861c67d17cb5518d06badc41
|
Flipper-Boost-iOSX: fd1e2b8cbef7e662a122412d7ac5f5bea715403c
|
||||||
Flipper-Folly: 755929a4f851b2fb2c347d533a23f191b008554c
|
Flipper-DoubleConversion: 57ffbe81ef95306cc9e69c4aa3aeeeeb58a6a28c
|
||||||
|
Flipper-Fmt: 60cbdd92fc254826e61d669a5d87ef7015396a9b
|
||||||
|
Flipper-Folly: 83af37379faa69497529e414bd43fbfc7cae259a
|
||||||
Flipper-Glog: 1dfd6abf1e922806c52ceb8701a3599a79a200a6
|
Flipper-Glog: 1dfd6abf1e922806c52ceb8701a3599a79a200a6
|
||||||
Flipper-PeerTalk: 116d8f857dc6ef55c7a5a75ea3ceaafe878aadc9
|
Flipper-PeerTalk: 116d8f857dc6ef55c7a5a75ea3ceaafe878aadc9
|
||||||
Flipper-RSocket: 127954abe8b162fcaf68d2134d34dc2bd7076154
|
Flipper-RSocket: d9d9ade67cbecf6ac10730304bf5607266dd2541
|
||||||
FlipperKit: 8a20b5c5fcf9436cac58551dc049867247f64b00
|
FlipperKit: d8d346844eca5d9120c17d441a2f38596e8ed2b9
|
||||||
glog: 73c2498ac6884b13ede40eda8228cb1eee9d9d62
|
fmt: ff9d55029c625d3757ed641535fd4a75fedc7ce9
|
||||||
|
glog: 5337263514dd6f09803962437687240c5dc39aa4
|
||||||
libevent: 4049cae6c81cdb3654a443be001fb9bdceff7913
|
libevent: 4049cae6c81cdb3654a443be001fb9bdceff7913
|
||||||
OpenSSL-Universal: 1aa4f6a6ee7256b83db99ec1ccdaa80d10f9af9b
|
OpenSSL-Universal: 1aa4f6a6ee7256b83db99ec1ccdaa80d10f9af9b
|
||||||
RCT-Folly: ec7a233ccc97cc556cf7237f0db1ff65b986f27c
|
RCT-Folly: a21c126816d8025b547704b777a2ba552f3d9fa9
|
||||||
RCTRequired: 6d3e854f0e7260a648badd0d44fc364bc9da9728
|
RCTRequired: e4a18a90004e0ed97bba9081099104fd0f658dc9
|
||||||
RCTTypeSafety: c1f31d19349c6b53085766359caac425926fafaa
|
RCTTypeSafety: 8a3c31d38de58e1a6a7df6e4e643644a60b00e22
|
||||||
React: bda6b6d7ae912de97d7a61aa5c160db24aa2ad69
|
React: 2b1d0dc3c23e01b754588a74a5b265282d9eb61e
|
||||||
React-callinvoker: 9840ea7e8e88ed73d438edb725574820b29b5baa
|
React-callinvoker: 57c195e780695285fa56e61efdbc0ca0e9204484
|
||||||
React-Core: b5e385da7ce5f16a220fc60fd0749eae2c6120f0
|
React-Core: 45e4b3c57b0b5fdbb24bc6a63a964870c0405955
|
||||||
React-CoreModules: 17071a4e2c5239b01585f4aa8070141168ab298f
|
React-CoreModules: d7bb1ae3436eddd85a7eb6d5e928f8c1655d87db
|
||||||
React-cxxreact: 9be7b6340ed9f7c53e53deca7779f07cd66525ba
|
React-cxxreact: 60c850e9997b21ee302757c36a460efc944183e7
|
||||||
React-jsi: 67747b9722f6dab2ffe15b011bcf6b3f2c3f1427
|
React-jsi: 38d68cb1b53843703100830d530342b32f8e0878
|
||||||
React-jsiexecutor: 80c46bd381fd06e418e0d4f53672dc1d1945c4c3
|
React-jsiexecutor: 6a05173dc0142abc582bd4edd2d23146b8cc218a
|
||||||
React-jsinspector: cc614ec18a9ca96fd275100c16d74d62ee11f0ae
|
React-jsinspector: be95ad424ba9f7b817aff22732eb9b1b810a000a
|
||||||
react-native-update: f5af67d7fdbc0295adaabd974c181b8d1458b17a
|
React-logger: 9a9cd87d4ea681ae929b32ef580638ff1b50fb24
|
||||||
React-perflogger: 25373e382fed75ce768a443822f07098a15ab737
|
react-native-update: 0fc93e720f09bf7b465292dcd2fb8d8db3aef763
|
||||||
React-RCTActionSheet: af7796ba49ffe4ca92e7277a5d992d37203f7da5
|
React-perflogger: 1f554c2b684e2f484f9edcdfdaeedab039fbaca8
|
||||||
React-RCTAnimation: 6a2e76ab50c6f25b428d81b76a5a45351c4d77aa
|
React-RCTActionSheet: 610d5a5d71ab4808734782c8bca6a12ec3563672
|
||||||
React-RCTBlob: 02a2887023e0eed99391b6445b2e23a2a6f9226d
|
React-RCTAnimation: ec6ed97370ace32724c253f29f0586cafcab8126
|
||||||
React-RCTImage: ce5bf8e7438f2286d9b646a05d6ab11f38b0323d
|
React-RCTBlob: b3270d498ff240f49c50e1bc950b6e5fd48886ba
|
||||||
React-RCTLinking: ccd20742de14e020cb5f99d5c7e0bf0383aefbd9
|
React-RCTImage: 23d5e26669b31230bea3fd99eb703af699e5d61a
|
||||||
React-RCTNetwork: dfb9d089ab0753e5e5f55fc4b1210858f7245647
|
React-RCTLinking: edaaee9dee82b79e90e7b903d8913fa72284fbba
|
||||||
React-RCTSettings: b14aef2d83699e48b410fb7c3ba5b66cd3291ae2
|
React-RCTNetwork: e8825053dd1b5c2a0e1aa3cf1127750b624f90c0
|
||||||
React-RCTText: 41a2e952dd9adc5caf6fb68ed46b275194d5da5f
|
React-RCTSettings: 40d7ae987031c5dc561d11cd3a15cc1245a11d42
|
||||||
React-RCTVibration: 24600e3b1aaa77126989bc58b6747509a1ba14f3
|
React-RCTText: 6e104479d4f0bb593b4cf90b6fc6e5390c12ccde
|
||||||
React-runtimeexecutor: a9904c6d0218fb9f8b19d6dd88607225927668f9
|
React-RCTVibration: 53b92d54b923283638cb0186da7a5c2d2b70a49b
|
||||||
ReactCommon: 149906e01aa51142707a10665185db879898e966
|
React-runtimeexecutor: 4bb657a97aa74568d9ed634c8bd478299bb8a3a6
|
||||||
|
ReactCommon: eb059748e842a1a86025ebbd4ac9d99e74492f88
|
||||||
SSZipArchive: e7b4f3d9e780c2acc1764cd88fbf2de28f26e5b2
|
SSZipArchive: e7b4f3d9e780c2acc1764cd88fbf2de28f26e5b2
|
||||||
Yoga: 575c581c63e0d35c9a83f4b46d01d63abc1100ac
|
Yoga: c11abbf5809216c91fcd62f5571078b83d9b6720
|
||||||
YogaKit: f782866e155069a2cca2517aafea43200b01fd5a
|
YogaKit: f782866e155069a2cca2517aafea43200b01fd5a
|
||||||
|
|
||||||
PODFILE CHECKSUM: 84e4a563ad749afa88eb98a303cbbd3476bf71a5
|
PODFILE CHECKSUM: db39328f0de1b565c4d7f4f59801e77ac82fe1f8
|
||||||
|
|
||||||
COCOAPODS: 1.10.1
|
COCOAPODS: 1.10.2
|
||||||
|
@ -17,7 +17,6 @@
|
|||||||
|
|
||||||
/* Begin PBXFileReference section */
|
/* Begin PBXFileReference section */
|
||||||
008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = "<group>"; };
|
008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = "<group>"; };
|
||||||
0583A8BB0D57980C590354CD /* Pods-testHotUpdate-tvOSTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-testHotUpdate-tvOSTests.release.xcconfig"; path = "Target Support Files/Pods-testHotUpdate-tvOSTests/Pods-testHotUpdate-tvOSTests.release.xcconfig"; sourceTree = "<group>"; };
|
|
||||||
13B07F961A680F5B00A75B9A /* testHotUpdate.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = testHotUpdate.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
13B07F961A680F5B00A75B9A /* testHotUpdate.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = testHotUpdate.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||||
13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = testHotUpdate/AppDelegate.h; sourceTree = "<group>"; };
|
13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = testHotUpdate/AppDelegate.h; sourceTree = "<group>"; };
|
||||||
13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = testHotUpdate/AppDelegate.m; sourceTree = "<group>"; };
|
13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = testHotUpdate/AppDelegate.m; sourceTree = "<group>"; };
|
||||||
@ -27,17 +26,8 @@
|
|||||||
13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = testHotUpdate/main.m; sourceTree = "<group>"; };
|
13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = testHotUpdate/main.m; sourceTree = "<group>"; };
|
||||||
1A3E77317B15A5C3816ACE3A /* Pods-testHotUpdate.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-testHotUpdate.release.xcconfig"; path = "Target Support Files/Pods-testHotUpdate/Pods-testHotUpdate.release.xcconfig"; sourceTree = "<group>"; };
|
1A3E77317B15A5C3816ACE3A /* Pods-testHotUpdate.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-testHotUpdate.release.xcconfig"; path = "Target Support Files/Pods-testHotUpdate/Pods-testHotUpdate.release.xcconfig"; sourceTree = "<group>"; };
|
||||||
28C264AEBE1E206870F9D871 /* libPods-testHotUpdate.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-testHotUpdate.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
28C264AEBE1E206870F9D871 /* libPods-testHotUpdate.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-testHotUpdate.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||||
5975B699C3CC54D97D7D17AC /* Pods-testHotUpdate-tvOS.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-testHotUpdate-tvOS.debug.xcconfig"; path = "Target Support Files/Pods-testHotUpdate-tvOS/Pods-testHotUpdate-tvOS.debug.xcconfig"; sourceTree = "<group>"; };
|
|
||||||
84EBA9C1A760F4136B306391 /* Pods-testHotUpdate.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-testHotUpdate.debug.xcconfig"; path = "Target Support Files/Pods-testHotUpdate/Pods-testHotUpdate.debug.xcconfig"; sourceTree = "<group>"; };
|
84EBA9C1A760F4136B306391 /* Pods-testHotUpdate.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-testHotUpdate.debug.xcconfig"; path = "Target Support Files/Pods-testHotUpdate/Pods-testHotUpdate.debug.xcconfig"; sourceTree = "<group>"; };
|
||||||
8D1BC055E138B80CD38184D9 /* libPods-testHotUpdate-tvOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-testHotUpdate-tvOS.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
||||||
95A532A9388B822764C95FE7 /* libPods-testHotUpdateTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-testHotUpdateTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
||||||
9E6234BBCA688ADDFBCB18E0 /* Pods-testHotUpdate-tvOS.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-testHotUpdate-tvOS.release.xcconfig"; path = "Target Support Files/Pods-testHotUpdate-tvOS/Pods-testHotUpdate-tvOS.release.xcconfig"; sourceTree = "<group>"; };
|
|
||||||
A210EF57CA3ECCF4BA22ACD7 /* libPods-testHotUpdate-tvOSTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-testHotUpdate-tvOSTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
||||||
C29B96E519A1834F3DC4E653 /* Pods-testHotUpdateTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-testHotUpdateTests.debug.xcconfig"; path = "Target Support Files/Pods-testHotUpdateTests/Pods-testHotUpdateTests.debug.xcconfig"; sourceTree = "<group>"; };
|
|
||||||
DBD82A01837CBC988265B839 /* Pods-testHotUpdate-tvOSTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-testHotUpdate-tvOSTests.debug.xcconfig"; path = "Target Support Files/Pods-testHotUpdate-tvOSTests/Pods-testHotUpdate-tvOSTests.debug.xcconfig"; sourceTree = "<group>"; };
|
|
||||||
ED1DB2CEADC1A82A43867C0E /* Pods-testHotUpdateTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-testHotUpdateTests.release.xcconfig"; path = "Target Support Files/Pods-testHotUpdateTests/Pods-testHotUpdateTests.release.xcconfig"; sourceTree = "<group>"; };
|
|
||||||
ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
|
ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
|
||||||
ED2971642150620600B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS12.0.sdk/System/Library/Frameworks/JavaScriptCore.framework; sourceTree = DEVELOPER_DIR; };
|
|
||||||
F1CBCFD524FE1CF80019170D /* testHotUpdate-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "testHotUpdate-Bridging-Header.h"; sourceTree = "<group>"; };
|
F1CBCFD524FE1CF80019170D /* testHotUpdate-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "testHotUpdate-Bridging-Header.h"; sourceTree = "<group>"; };
|
||||||
F1CBCFD624FE1CF80019170D /* dummy.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = dummy.swift; sourceTree = "<group>"; };
|
F1CBCFD624FE1CF80019170D /* dummy.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = dummy.swift; sourceTree = "<group>"; };
|
||||||
/* End PBXFileReference section */
|
/* End PBXFileReference section */
|
||||||
@ -59,12 +49,6 @@
|
|||||||
children = (
|
children = (
|
||||||
84EBA9C1A760F4136B306391 /* Pods-testHotUpdate.debug.xcconfig */,
|
84EBA9C1A760F4136B306391 /* Pods-testHotUpdate.debug.xcconfig */,
|
||||||
1A3E77317B15A5C3816ACE3A /* Pods-testHotUpdate.release.xcconfig */,
|
1A3E77317B15A5C3816ACE3A /* Pods-testHotUpdate.release.xcconfig */,
|
||||||
5975B699C3CC54D97D7D17AC /* Pods-testHotUpdate-tvOS.debug.xcconfig */,
|
|
||||||
9E6234BBCA688ADDFBCB18E0 /* Pods-testHotUpdate-tvOS.release.xcconfig */,
|
|
||||||
DBD82A01837CBC988265B839 /* Pods-testHotUpdate-tvOSTests.debug.xcconfig */,
|
|
||||||
0583A8BB0D57980C590354CD /* Pods-testHotUpdate-tvOSTests.release.xcconfig */,
|
|
||||||
C29B96E519A1834F3DC4E653 /* Pods-testHotUpdateTests.debug.xcconfig */,
|
|
||||||
ED1DB2CEADC1A82A43867C0E /* Pods-testHotUpdateTests.release.xcconfig */,
|
|
||||||
);
|
);
|
||||||
path = Pods;
|
path = Pods;
|
||||||
sourceTree = "<group>";
|
sourceTree = "<group>";
|
||||||
@ -89,11 +73,7 @@
|
|||||||
isa = PBXGroup;
|
isa = PBXGroup;
|
||||||
children = (
|
children = (
|
||||||
ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
|
ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
|
||||||
ED2971642150620600B7C4FE /* JavaScriptCore.framework */,
|
|
||||||
28C264AEBE1E206870F9D871 /* libPods-testHotUpdate.a */,
|
28C264AEBE1E206870F9D871 /* libPods-testHotUpdate.a */,
|
||||||
8D1BC055E138B80CD38184D9 /* libPods-testHotUpdate-tvOS.a */,
|
|
||||||
A210EF57CA3ECCF4BA22ACD7 /* libPods-testHotUpdate-tvOSTests.a */,
|
|
||||||
95A532A9388B822764C95FE7 /* libPods-testHotUpdateTests.a */,
|
|
||||||
);
|
);
|
||||||
name = Frameworks;
|
name = Frameworks;
|
||||||
sourceTree = "<group>";
|
sourceTree = "<group>";
|
||||||
@ -262,10 +242,12 @@
|
|||||||
);
|
);
|
||||||
inputPaths = (
|
inputPaths = (
|
||||||
"${PODS_ROOT}/Target Support Files/Pods-testHotUpdate/Pods-testHotUpdate-frameworks.sh",
|
"${PODS_ROOT}/Target Support Files/Pods-testHotUpdate/Pods-testHotUpdate-frameworks.sh",
|
||||||
|
"${PODS_XCFRAMEWORKS_BUILD_DIR}/double-conversion/double-conversion.framework/double-conversion",
|
||||||
"${PODS_XCFRAMEWORKS_BUILD_DIR}/OpenSSL/OpenSSL.framework/OpenSSL",
|
"${PODS_XCFRAMEWORKS_BUILD_DIR}/OpenSSL/OpenSSL.framework/OpenSSL",
|
||||||
);
|
);
|
||||||
name = "[CP] Embed Pods Frameworks";
|
name = "[CP] Embed Pods Frameworks";
|
||||||
outputPaths = (
|
outputPaths = (
|
||||||
|
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/double-conversion.framework",
|
||||||
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/OpenSSL.framework",
|
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/OpenSSL.framework",
|
||||||
);
|
);
|
||||||
runOnlyForDeploymentPostprocessing = 0;
|
runOnlyForDeploymentPostprocessing = 0;
|
||||||
|
@ -11,8 +11,8 @@
|
|||||||
"apk": "(cd android && ./gradlew aR)"
|
"apk": "(cd android && ./gradlew aR)"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"react": "17.0.1",
|
"react": "17.0.2",
|
||||||
"react-native": "0.64.2",
|
"react-native": "0.66.0",
|
||||||
"react-native-update": "link:../.."
|
"react-native-update": "link:../.."
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
@ -22,8 +22,8 @@
|
|||||||
"babel-jest": "^26.6.3",
|
"babel-jest": "^26.6.3",
|
||||||
"eslint": "7.14.0",
|
"eslint": "7.14.0",
|
||||||
"jest": "^26.6.3",
|
"jest": "^26.6.3",
|
||||||
"metro-react-native-babel-preset": "^0.64.0",
|
"metro-react-native-babel-preset": "^0.66.2",
|
||||||
"react-test-renderer": "17.0.1"
|
"react-test-renderer": "17.0.2"
|
||||||
},
|
},
|
||||||
"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