Merge branch 'develop' into single-server
# Conflicts: # ios/RocketChatRN.xcodeproj/project.pbxproj
This commit is contained in:
commit
2bdfdba027
|
@ -144,7 +144,7 @@ android {
|
|||
minSdkVersion rootProject.ext.minSdkVersion
|
||||
targetSdkVersion rootProject.ext.targetSdkVersion
|
||||
versionCode VERSIONCODE as Integer
|
||||
versionName "4.13.0"
|
||||
versionName "4.13.1"
|
||||
vectorDrawables.useSupportLibrary = true
|
||||
if (!isFoss) {
|
||||
manifestPlaceholders = [BugsnagAPIKey: BugsnagAPIKey as String]
|
||||
|
|
|
@ -15,9 +15,6 @@ export const merge = (subscription, room) => {
|
|||
if (room) {
|
||||
if (room._updatedAt) {
|
||||
subscription.lastMessage = normalizeMessage(room.lastMessage);
|
||||
const updatedAt = room?._updatedAt ? new Date(room._updatedAt) : null;
|
||||
const lastMessageTs = subscription?.lastMessage?.ts ? new Date(subscription.lastMessage.ts) : null;
|
||||
subscription.roomUpdatedAt = Math.max(updatedAt, lastMessageTs);
|
||||
subscription.description = room.description;
|
||||
subscription.topic = room.topic;
|
||||
subscription.announcement = room.announcement;
|
||||
|
@ -28,6 +25,9 @@ export const merge = (subscription, room) => {
|
|||
subscription.usernames = room.usernames;
|
||||
subscription.uids = room.uids;
|
||||
}
|
||||
// https://github.com/RocketChat/Rocket.Chat/blob/develop/app/ui-sidenav/client/roomList.js#L180
|
||||
const lastRoomUpdate = room.lm || subscription.ts || subscription._updatedAt;
|
||||
subscription.roomUpdatedAt = subscription.lr ? Math.max(new Date(subscription.lr), new Date(lastRoomUpdate)) : lastRoomUpdate;
|
||||
subscription.ro = room.ro;
|
||||
subscription.broadcast = room.broadcast;
|
||||
subscription.encrypted = room.encrypted;
|
||||
|
|
|
@ -15,7 +15,6 @@ import {
|
|||
} from '../actions/app';
|
||||
import { localAuthenticate } from '../utils/localAuthentication';
|
||||
import { goRoom } from '../utils/goRoom';
|
||||
import callJitsi from '../lib/methods/callJitsi';
|
||||
|
||||
const roomTypes = {
|
||||
channel: 'c', direct: 'd', group: 'p', channels: 'l'
|
||||
|
@ -54,7 +53,7 @@ const navigate = function* navigate({ params }) {
|
|||
yield goRoom({ item, isMasterDetail });
|
||||
|
||||
if (params.isCall) {
|
||||
callJitsi(item.rid);
|
||||
RocketChat.callJitsi(item.rid);
|
||||
}
|
||||
}
|
||||
} else {
|
||||
|
|
|
@ -1,46 +1,50 @@
|
|||
class Upload {
|
||||
constructor() {
|
||||
this.xhr = new XMLHttpRequest();
|
||||
this.formData = new FormData();
|
||||
}
|
||||
|
||||
then = (callback) => {
|
||||
this.xhr.onload = () => callback({ respInfo: this.xhr });
|
||||
this.xhr.send(this.formData);
|
||||
}
|
||||
|
||||
catch = (callback) => {
|
||||
this.xhr.onerror = callback;
|
||||
}
|
||||
|
||||
uploadProgress = (callback) => {
|
||||
this.xhr.upload.onprogress = ({ total, loaded }) => callback(loaded, total);
|
||||
}
|
||||
|
||||
cancel = () => {
|
||||
this.xhr.abort();
|
||||
return Promise.resolve();
|
||||
}
|
||||
}
|
||||
|
||||
class FileUpload {
|
||||
_xhr = new XMLHttpRequest();
|
||||
|
||||
_formData = new FormData();
|
||||
|
||||
fetch = (method, url, headers, data) => {
|
||||
this._xhr.open(method, url);
|
||||
const upload = new Upload();
|
||||
upload.xhr.open(method, url);
|
||||
|
||||
Object.keys(headers).forEach((key) => {
|
||||
this._xhr.setRequestHeader(key, headers[key]);
|
||||
upload.xhr.setRequestHeader(key, headers[key]);
|
||||
});
|
||||
|
||||
data.forEach((item) => {
|
||||
if (item.uri) {
|
||||
this._formData.append(item.name, {
|
||||
upload.formData.append(item.name, {
|
||||
uri: item.uri,
|
||||
type: item.type,
|
||||
name: item.filename
|
||||
});
|
||||
} else {
|
||||
this._formData.append(item.name, item.data);
|
||||
upload.formData.append(item.name, item.data);
|
||||
}
|
||||
});
|
||||
|
||||
return this;
|
||||
}
|
||||
|
||||
then = (callback) => {
|
||||
this._xhr.onload = () => callback({ respInfo: this._xhr });
|
||||
this._xhr.send(this._formData);
|
||||
}
|
||||
|
||||
catch = (callback) => {
|
||||
this._xhr.onerror = callback;
|
||||
}
|
||||
|
||||
uploadProgress = (callback) => {
|
||||
this._xhr.upload.onprogress = ({ total, loaded }) => callback(loaded, total);
|
||||
}
|
||||
|
||||
cancel = () => {
|
||||
this._xhr.abort();
|
||||
return Promise.resolve();
|
||||
return upload;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -119,7 +119,8 @@ class AttachmentView extends React.Component {
|
|||
this.setState({ loading: true });
|
||||
try {
|
||||
const extension = image_url ? `.${ mime.extension(image_type) || 'jpg' }` : `.${ mime.extension(video_type) || 'mp4' }`;
|
||||
const path = `${ RNFetchBlob.fs.dirs.DocumentDir + SHA256(url) + extension }`;
|
||||
const documentDir = `${ RNFetchBlob.fs.dirs.DocumentDir }/`;
|
||||
const path = `${ documentDir + SHA256(url) + extension }`;
|
||||
const file = await RNFetchBlob.config({ path }).fetch('GET', mediaAttachment).then(res => res.path());
|
||||
await CameraRoll.save(file, { album: 'Rocket.Chat' });
|
||||
EventEmitter.emit(LISTENER, { message: I18n.t('saved_to_gallery') });
|
||||
|
|
|
@ -10,11 +10,14 @@ def all_pods
|
|||
use_flipper!
|
||||
end
|
||||
|
||||
target 'RocketChatRN' do
|
||||
abstract_target 'defaults' do
|
||||
# force use our own JitsiMeetSDK
|
||||
pod 'JitsiMeetSDK', :git => 'https://github.com/RocketChat/jitsi-meet-ios-sdk-releases.git'
|
||||
|
||||
all_pods
|
||||
|
||||
target 'RocketChatRN' # Experimental app
|
||||
target 'Rocket.Chat' # Official app
|
||||
end
|
||||
|
||||
target 'ShareRocketChatRN' do
|
||||
|
|
428
ios/Podfile.lock
428
ios/Podfile.lock
|
@ -39,14 +39,14 @@ PODS:
|
|||
- UMFileSystemInterface
|
||||
- EXWebBrowser (8.3.1):
|
||||
- UMCore
|
||||
- FBLazyVector (0.63.2)
|
||||
- FBReactNativeSpec (0.63.2):
|
||||
- FBLazyVector (0.63.4)
|
||||
- FBReactNativeSpec (0.63.4):
|
||||
- Folly (= 2020.01.13.00)
|
||||
- RCTRequired (= 0.63.2)
|
||||
- RCTTypeSafety (= 0.63.2)
|
||||
- React-Core (= 0.63.2)
|
||||
- React-jsi (= 0.63.2)
|
||||
- ReactCommon/turbomodule/core (= 0.63.2)
|
||||
- RCTRequired (= 0.63.4)
|
||||
- RCTTypeSafety (= 0.63.4)
|
||||
- React-Core (= 0.63.4)
|
||||
- React-jsi (= 0.63.4)
|
||||
- ReactCommon/turbomodule/core (= 0.63.4)
|
||||
- Firebase/Analytics (6.27.1):
|
||||
- Firebase/Core
|
||||
- Firebase/Core (6.27.1):
|
||||
|
@ -87,7 +87,7 @@ PODS:
|
|||
- GoogleUtilities/Environment (~> 6.7)
|
||||
- GoogleUtilities/UserDefaults (~> 6.7)
|
||||
- PromisesObjC (~> 1.2)
|
||||
- Flipper (0.41.5):
|
||||
- Flipper (0.54.0):
|
||||
- Flipper-Folly (~> 2.2)
|
||||
- Flipper-RSocket (~> 1.1)
|
||||
- Flipper-DoubleConversion (1.1.7)
|
||||
|
@ -101,36 +101,36 @@ PODS:
|
|||
- Flipper-PeerTalk (0.0.4)
|
||||
- Flipper-RSocket (1.1.0):
|
||||
- Flipper-Folly (~> 2.2)
|
||||
- FlipperKit (0.41.5):
|
||||
- FlipperKit/Core (= 0.41.5)
|
||||
- FlipperKit/Core (0.41.5):
|
||||
- Flipper (~> 0.41.5)
|
||||
- FlipperKit (0.54.0):
|
||||
- FlipperKit/Core (= 0.54.0)
|
||||
- FlipperKit/Core (0.54.0):
|
||||
- Flipper (~> 0.54.0)
|
||||
- FlipperKit/CppBridge
|
||||
- FlipperKit/FBCxxFollyDynamicConvert
|
||||
- FlipperKit/FBDefines
|
||||
- FlipperKit/FKPortForwarding
|
||||
- FlipperKit/CppBridge (0.41.5):
|
||||
- Flipper (~> 0.41.5)
|
||||
- FlipperKit/FBCxxFollyDynamicConvert (0.41.5):
|
||||
- FlipperKit/CppBridge (0.54.0):
|
||||
- Flipper (~> 0.54.0)
|
||||
- FlipperKit/FBCxxFollyDynamicConvert (0.54.0):
|
||||
- Flipper-Folly (~> 2.2)
|
||||
- FlipperKit/FBDefines (0.41.5)
|
||||
- FlipperKit/FKPortForwarding (0.41.5):
|
||||
- FlipperKit/FBDefines (0.54.0)
|
||||
- FlipperKit/FKPortForwarding (0.54.0):
|
||||
- CocoaAsyncSocket (~> 7.6)
|
||||
- Flipper-PeerTalk (~> 0.0.4)
|
||||
- FlipperKit/FlipperKitHighlightOverlay (0.41.5)
|
||||
- FlipperKit/FlipperKitLayoutPlugin (0.41.5):
|
||||
- FlipperKit/FlipperKitHighlightOverlay (0.54.0)
|
||||
- FlipperKit/FlipperKitLayoutPlugin (0.54.0):
|
||||
- FlipperKit/Core
|
||||
- FlipperKit/FlipperKitHighlightOverlay
|
||||
- FlipperKit/FlipperKitLayoutTextSearchable
|
||||
- YogaKit (~> 1.18)
|
||||
- FlipperKit/FlipperKitLayoutTextSearchable (0.41.5)
|
||||
- FlipperKit/FlipperKitNetworkPlugin (0.41.5):
|
||||
- FlipperKit/FlipperKitLayoutTextSearchable (0.54.0)
|
||||
- FlipperKit/FlipperKitNetworkPlugin (0.54.0):
|
||||
- FlipperKit/Core
|
||||
- FlipperKit/FlipperKitReactPlugin (0.41.5):
|
||||
- FlipperKit/FlipperKitReactPlugin (0.54.0):
|
||||
- FlipperKit/Core
|
||||
- FlipperKit/FlipperKitUserDefaultsPlugin (0.41.5):
|
||||
- FlipperKit/FlipperKitUserDefaultsPlugin (0.54.0):
|
||||
- FlipperKit/Core
|
||||
- FlipperKit/SKIOSNetworkPlugin (0.41.5):
|
||||
- FlipperKit/SKIOSNetworkPlugin (0.54.0):
|
||||
- FlipperKit/Core
|
||||
- FlipperKit/FlipperKitNetworkPlugin
|
||||
- Folly (2020.01.13.00):
|
||||
|
@ -196,179 +196,179 @@ PODS:
|
|||
- OpenSSL-Universal/Static (= 1.0.2.19)
|
||||
- OpenSSL-Universal/Static (1.0.2.19)
|
||||
- PromisesObjC (1.2.9)
|
||||
- RCTRequired (0.63.2)
|
||||
- RCTTypeSafety (0.63.2):
|
||||
- FBLazyVector (= 0.63.2)
|
||||
- RCTRequired (0.63.4)
|
||||
- RCTTypeSafety (0.63.4):
|
||||
- FBLazyVector (= 0.63.4)
|
||||
- Folly (= 2020.01.13.00)
|
||||
- RCTRequired (= 0.63.2)
|
||||
- React-Core (= 0.63.2)
|
||||
- React (0.63.2):
|
||||
- React-Core (= 0.63.2)
|
||||
- React-Core/DevSupport (= 0.63.2)
|
||||
- React-Core/RCTWebSocket (= 0.63.2)
|
||||
- React-RCTActionSheet (= 0.63.2)
|
||||
- React-RCTAnimation (= 0.63.2)
|
||||
- React-RCTBlob (= 0.63.2)
|
||||
- React-RCTImage (= 0.63.2)
|
||||
- React-RCTLinking (= 0.63.2)
|
||||
- React-RCTNetwork (= 0.63.2)
|
||||
- React-RCTSettings (= 0.63.2)
|
||||
- React-RCTText (= 0.63.2)
|
||||
- React-RCTVibration (= 0.63.2)
|
||||
- React-callinvoker (0.63.2)
|
||||
- React-Core (0.63.2):
|
||||
- RCTRequired (= 0.63.4)
|
||||
- React-Core (= 0.63.4)
|
||||
- React (0.63.4):
|
||||
- React-Core (= 0.63.4)
|
||||
- React-Core/DevSupport (= 0.63.4)
|
||||
- React-Core/RCTWebSocket (= 0.63.4)
|
||||
- React-RCTActionSheet (= 0.63.4)
|
||||
- React-RCTAnimation (= 0.63.4)
|
||||
- React-RCTBlob (= 0.63.4)
|
||||
- React-RCTImage (= 0.63.4)
|
||||
- React-RCTLinking (= 0.63.4)
|
||||
- React-RCTNetwork (= 0.63.4)
|
||||
- React-RCTSettings (= 0.63.4)
|
||||
- React-RCTText (= 0.63.4)
|
||||
- React-RCTVibration (= 0.63.4)
|
||||
- React-callinvoker (0.63.4)
|
||||
- React-Core (0.63.4):
|
||||
- Folly (= 2020.01.13.00)
|
||||
- glog
|
||||
- React-Core/Default (= 0.63.2)
|
||||
- React-cxxreact (= 0.63.2)
|
||||
- React-jsi (= 0.63.2)
|
||||
- React-jsiexecutor (= 0.63.2)
|
||||
- React-Core/Default (= 0.63.4)
|
||||
- React-cxxreact (= 0.63.4)
|
||||
- React-jsi (= 0.63.4)
|
||||
- React-jsiexecutor (= 0.63.4)
|
||||
- Yoga
|
||||
- React-Core/CoreModulesHeaders (0.63.2):
|
||||
- React-Core/CoreModulesHeaders (0.63.4):
|
||||
- Folly (= 2020.01.13.00)
|
||||
- glog
|
||||
- React-Core/Default
|
||||
- React-cxxreact (= 0.63.2)
|
||||
- React-jsi (= 0.63.2)
|
||||
- React-jsiexecutor (= 0.63.2)
|
||||
- React-cxxreact (= 0.63.4)
|
||||
- React-jsi (= 0.63.4)
|
||||
- React-jsiexecutor (= 0.63.4)
|
||||
- Yoga
|
||||
- React-Core/Default (0.63.2):
|
||||
- React-Core/Default (0.63.4):
|
||||
- Folly (= 2020.01.13.00)
|
||||
- glog
|
||||
- React-cxxreact (= 0.63.2)
|
||||
- React-jsi (= 0.63.2)
|
||||
- React-jsiexecutor (= 0.63.2)
|
||||
- React-cxxreact (= 0.63.4)
|
||||
- React-jsi (= 0.63.4)
|
||||
- React-jsiexecutor (= 0.63.4)
|
||||
- Yoga
|
||||
- React-Core/DevSupport (0.63.2):
|
||||
- React-Core/DevSupport (0.63.4):
|
||||
- Folly (= 2020.01.13.00)
|
||||
- glog
|
||||
- React-Core/Default (= 0.63.2)
|
||||
- React-Core/RCTWebSocket (= 0.63.2)
|
||||
- React-cxxreact (= 0.63.2)
|
||||
- React-jsi (= 0.63.2)
|
||||
- React-jsiexecutor (= 0.63.2)
|
||||
- React-jsinspector (= 0.63.2)
|
||||
- React-Core/Default (= 0.63.4)
|
||||
- React-Core/RCTWebSocket (= 0.63.4)
|
||||
- React-cxxreact (= 0.63.4)
|
||||
- React-jsi (= 0.63.4)
|
||||
- React-jsiexecutor (= 0.63.4)
|
||||
- React-jsinspector (= 0.63.4)
|
||||
- Yoga
|
||||
- React-Core/RCTActionSheetHeaders (0.63.2):
|
||||
- React-Core/RCTActionSheetHeaders (0.63.4):
|
||||
- Folly (= 2020.01.13.00)
|
||||
- glog
|
||||
- React-Core/Default
|
||||
- React-cxxreact (= 0.63.2)
|
||||
- React-jsi (= 0.63.2)
|
||||
- React-jsiexecutor (= 0.63.2)
|
||||
- React-cxxreact (= 0.63.4)
|
||||
- React-jsi (= 0.63.4)
|
||||
- React-jsiexecutor (= 0.63.4)
|
||||
- Yoga
|
||||
- React-Core/RCTAnimationHeaders (0.63.2):
|
||||
- React-Core/RCTAnimationHeaders (0.63.4):
|
||||
- Folly (= 2020.01.13.00)
|
||||
- glog
|
||||
- React-Core/Default
|
||||
- React-cxxreact (= 0.63.2)
|
||||
- React-jsi (= 0.63.2)
|
||||
- React-jsiexecutor (= 0.63.2)
|
||||
- React-cxxreact (= 0.63.4)
|
||||
- React-jsi (= 0.63.4)
|
||||
- React-jsiexecutor (= 0.63.4)
|
||||
- Yoga
|
||||
- React-Core/RCTBlobHeaders (0.63.2):
|
||||
- React-Core/RCTBlobHeaders (0.63.4):
|
||||
- Folly (= 2020.01.13.00)
|
||||
- glog
|
||||
- React-Core/Default
|
||||
- React-cxxreact (= 0.63.2)
|
||||
- React-jsi (= 0.63.2)
|
||||
- React-jsiexecutor (= 0.63.2)
|
||||
- React-cxxreact (= 0.63.4)
|
||||
- React-jsi (= 0.63.4)
|
||||
- React-jsiexecutor (= 0.63.4)
|
||||
- Yoga
|
||||
- React-Core/RCTImageHeaders (0.63.2):
|
||||
- React-Core/RCTImageHeaders (0.63.4):
|
||||
- Folly (= 2020.01.13.00)
|
||||
- glog
|
||||
- React-Core/Default
|
||||
- React-cxxreact (= 0.63.2)
|
||||
- React-jsi (= 0.63.2)
|
||||
- React-jsiexecutor (= 0.63.2)
|
||||
- React-cxxreact (= 0.63.4)
|
||||
- React-jsi (= 0.63.4)
|
||||
- React-jsiexecutor (= 0.63.4)
|
||||
- Yoga
|
||||
- React-Core/RCTLinkingHeaders (0.63.2):
|
||||
- React-Core/RCTLinkingHeaders (0.63.4):
|
||||
- Folly (= 2020.01.13.00)
|
||||
- glog
|
||||
- React-Core/Default
|
||||
- React-cxxreact (= 0.63.2)
|
||||
- React-jsi (= 0.63.2)
|
||||
- React-jsiexecutor (= 0.63.2)
|
||||
- React-cxxreact (= 0.63.4)
|
||||
- React-jsi (= 0.63.4)
|
||||
- React-jsiexecutor (= 0.63.4)
|
||||
- Yoga
|
||||
- React-Core/RCTNetworkHeaders (0.63.2):
|
||||
- React-Core/RCTNetworkHeaders (0.63.4):
|
||||
- Folly (= 2020.01.13.00)
|
||||
- glog
|
||||
- React-Core/Default
|
||||
- React-cxxreact (= 0.63.2)
|
||||
- React-jsi (= 0.63.2)
|
||||
- React-jsiexecutor (= 0.63.2)
|
||||
- React-cxxreact (= 0.63.4)
|
||||
- React-jsi (= 0.63.4)
|
||||
- React-jsiexecutor (= 0.63.4)
|
||||
- Yoga
|
||||
- React-Core/RCTSettingsHeaders (0.63.2):
|
||||
- React-Core/RCTSettingsHeaders (0.63.4):
|
||||
- Folly (= 2020.01.13.00)
|
||||
- glog
|
||||
- React-Core/Default
|
||||
- React-cxxreact (= 0.63.2)
|
||||
- React-jsi (= 0.63.2)
|
||||
- React-jsiexecutor (= 0.63.2)
|
||||
- React-cxxreact (= 0.63.4)
|
||||
- React-jsi (= 0.63.4)
|
||||
- React-jsiexecutor (= 0.63.4)
|
||||
- Yoga
|
||||
- React-Core/RCTTextHeaders (0.63.2):
|
||||
- React-Core/RCTTextHeaders (0.63.4):
|
||||
- Folly (= 2020.01.13.00)
|
||||
- glog
|
||||
- React-Core/Default
|
||||
- React-cxxreact (= 0.63.2)
|
||||
- React-jsi (= 0.63.2)
|
||||
- React-jsiexecutor (= 0.63.2)
|
||||
- React-cxxreact (= 0.63.4)
|
||||
- React-jsi (= 0.63.4)
|
||||
- React-jsiexecutor (= 0.63.4)
|
||||
- Yoga
|
||||
- React-Core/RCTVibrationHeaders (0.63.2):
|
||||
- React-Core/RCTVibrationHeaders (0.63.4):
|
||||
- Folly (= 2020.01.13.00)
|
||||
- glog
|
||||
- React-Core/Default
|
||||
- React-cxxreact (= 0.63.2)
|
||||
- React-jsi (= 0.63.2)
|
||||
- React-jsiexecutor (= 0.63.2)
|
||||
- React-cxxreact (= 0.63.4)
|
||||
- React-jsi (= 0.63.4)
|
||||
- React-jsiexecutor (= 0.63.4)
|
||||
- Yoga
|
||||
- React-Core/RCTWebSocket (0.63.2):
|
||||
- React-Core/RCTWebSocket (0.63.4):
|
||||
- Folly (= 2020.01.13.00)
|
||||
- glog
|
||||
- React-Core/Default (= 0.63.2)
|
||||
- React-cxxreact (= 0.63.2)
|
||||
- React-jsi (= 0.63.2)
|
||||
- React-jsiexecutor (= 0.63.2)
|
||||
- React-Core/Default (= 0.63.4)
|
||||
- React-cxxreact (= 0.63.4)
|
||||
- React-jsi (= 0.63.4)
|
||||
- React-jsiexecutor (= 0.63.4)
|
||||
- Yoga
|
||||
- React-CoreModules (0.63.2):
|
||||
- FBReactNativeSpec (= 0.63.2)
|
||||
- React-CoreModules (0.63.4):
|
||||
- FBReactNativeSpec (= 0.63.4)
|
||||
- Folly (= 2020.01.13.00)
|
||||
- RCTTypeSafety (= 0.63.2)
|
||||
- React-Core/CoreModulesHeaders (= 0.63.2)
|
||||
- React-jsi (= 0.63.2)
|
||||
- React-RCTImage (= 0.63.2)
|
||||
- ReactCommon/turbomodule/core (= 0.63.2)
|
||||
- React-cxxreact (0.63.2):
|
||||
- RCTTypeSafety (= 0.63.4)
|
||||
- React-Core/CoreModulesHeaders (= 0.63.4)
|
||||
- React-jsi (= 0.63.4)
|
||||
- React-RCTImage (= 0.63.4)
|
||||
- ReactCommon/turbomodule/core (= 0.63.4)
|
||||
- React-cxxreact (0.63.4):
|
||||
- boost-for-react-native (= 1.63.0)
|
||||
- DoubleConversion
|
||||
- Folly (= 2020.01.13.00)
|
||||
- glog
|
||||
- React-callinvoker (= 0.63.2)
|
||||
- React-jsinspector (= 0.63.2)
|
||||
- React-jsi (0.63.2):
|
||||
- React-callinvoker (= 0.63.4)
|
||||
- React-jsinspector (= 0.63.4)
|
||||
- React-jsi (0.63.4):
|
||||
- boost-for-react-native (= 1.63.0)
|
||||
- DoubleConversion
|
||||
- Folly (= 2020.01.13.00)
|
||||
- glog
|
||||
- React-jsi/Default (= 0.63.2)
|
||||
- React-jsi/Default (0.63.2):
|
||||
- React-jsi/Default (= 0.63.4)
|
||||
- React-jsi/Default (0.63.4):
|
||||
- boost-for-react-native (= 1.63.0)
|
||||
- DoubleConversion
|
||||
- Folly (= 2020.01.13.00)
|
||||
- glog
|
||||
- React-jsiexecutor (0.63.2):
|
||||
- React-jsiexecutor (0.63.4):
|
||||
- DoubleConversion
|
||||
- Folly (= 2020.01.13.00)
|
||||
- glog
|
||||
- React-cxxreact (= 0.63.2)
|
||||
- React-jsi (= 0.63.2)
|
||||
- React-jsinspector (0.63.2)
|
||||
- React-cxxreact (= 0.63.4)
|
||||
- React-jsi (= 0.63.4)
|
||||
- React-jsinspector (0.63.4)
|
||||
- react-native-appearance (0.3.4):
|
||||
- React
|
||||
- react-native-background-timer (2.2.0):
|
||||
- React
|
||||
- react-native-blur (0.8.0):
|
||||
- React
|
||||
- react-native-cameraroll (4.0.0):
|
||||
- react-native-cameraroll (4.0.1):
|
||||
- React
|
||||
- react-native-cookies (4.0.0):
|
||||
- React
|
||||
|
@ -397,66 +397,66 @@ PODS:
|
|||
- React
|
||||
- react-native-webview (10.3.2):
|
||||
- React
|
||||
- React-RCTActionSheet (0.63.2):
|
||||
- React-Core/RCTActionSheetHeaders (= 0.63.2)
|
||||
- React-RCTAnimation (0.63.2):
|
||||
- FBReactNativeSpec (= 0.63.2)
|
||||
- React-RCTActionSheet (0.63.4):
|
||||
- React-Core/RCTActionSheetHeaders (= 0.63.4)
|
||||
- React-RCTAnimation (0.63.4):
|
||||
- FBReactNativeSpec (= 0.63.4)
|
||||
- Folly (= 2020.01.13.00)
|
||||
- RCTTypeSafety (= 0.63.2)
|
||||
- React-Core/RCTAnimationHeaders (= 0.63.2)
|
||||
- React-jsi (= 0.63.2)
|
||||
- ReactCommon/turbomodule/core (= 0.63.2)
|
||||
- React-RCTBlob (0.63.2):
|
||||
- FBReactNativeSpec (= 0.63.2)
|
||||
- RCTTypeSafety (= 0.63.4)
|
||||
- React-Core/RCTAnimationHeaders (= 0.63.4)
|
||||
- React-jsi (= 0.63.4)
|
||||
- ReactCommon/turbomodule/core (= 0.63.4)
|
||||
- React-RCTBlob (0.63.4):
|
||||
- FBReactNativeSpec (= 0.63.4)
|
||||
- Folly (= 2020.01.13.00)
|
||||
- React-Core/RCTBlobHeaders (= 0.63.2)
|
||||
- React-Core/RCTWebSocket (= 0.63.2)
|
||||
- React-jsi (= 0.63.2)
|
||||
- React-RCTNetwork (= 0.63.2)
|
||||
- ReactCommon/turbomodule/core (= 0.63.2)
|
||||
- React-RCTImage (0.63.2):
|
||||
- FBReactNativeSpec (= 0.63.2)
|
||||
- React-Core/RCTBlobHeaders (= 0.63.4)
|
||||
- React-Core/RCTWebSocket (= 0.63.4)
|
||||
- React-jsi (= 0.63.4)
|
||||
- React-RCTNetwork (= 0.63.4)
|
||||
- ReactCommon/turbomodule/core (= 0.63.4)
|
||||
- React-RCTImage (0.63.4):
|
||||
- FBReactNativeSpec (= 0.63.4)
|
||||
- Folly (= 2020.01.13.00)
|
||||
- RCTTypeSafety (= 0.63.2)
|
||||
- React-Core/RCTImageHeaders (= 0.63.2)
|
||||
- React-jsi (= 0.63.2)
|
||||
- React-RCTNetwork (= 0.63.2)
|
||||
- ReactCommon/turbomodule/core (= 0.63.2)
|
||||
- React-RCTLinking (0.63.2):
|
||||
- FBReactNativeSpec (= 0.63.2)
|
||||
- React-Core/RCTLinkingHeaders (= 0.63.2)
|
||||
- React-jsi (= 0.63.2)
|
||||
- ReactCommon/turbomodule/core (= 0.63.2)
|
||||
- React-RCTNetwork (0.63.2):
|
||||
- FBReactNativeSpec (= 0.63.2)
|
||||
- RCTTypeSafety (= 0.63.4)
|
||||
- React-Core/RCTImageHeaders (= 0.63.4)
|
||||
- React-jsi (= 0.63.4)
|
||||
- React-RCTNetwork (= 0.63.4)
|
||||
- ReactCommon/turbomodule/core (= 0.63.4)
|
||||
- React-RCTLinking (0.63.4):
|
||||
- FBReactNativeSpec (= 0.63.4)
|
||||
- React-Core/RCTLinkingHeaders (= 0.63.4)
|
||||
- React-jsi (= 0.63.4)
|
||||
- ReactCommon/turbomodule/core (= 0.63.4)
|
||||
- React-RCTNetwork (0.63.4):
|
||||
- FBReactNativeSpec (= 0.63.4)
|
||||
- Folly (= 2020.01.13.00)
|
||||
- RCTTypeSafety (= 0.63.2)
|
||||
- React-Core/RCTNetworkHeaders (= 0.63.2)
|
||||
- React-jsi (= 0.63.2)
|
||||
- ReactCommon/turbomodule/core (= 0.63.2)
|
||||
- React-RCTSettings (0.63.2):
|
||||
- FBReactNativeSpec (= 0.63.2)
|
||||
- RCTTypeSafety (= 0.63.4)
|
||||
- React-Core/RCTNetworkHeaders (= 0.63.4)
|
||||
- React-jsi (= 0.63.4)
|
||||
- ReactCommon/turbomodule/core (= 0.63.4)
|
||||
- React-RCTSettings (0.63.4):
|
||||
- FBReactNativeSpec (= 0.63.4)
|
||||
- Folly (= 2020.01.13.00)
|
||||
- RCTTypeSafety (= 0.63.2)
|
||||
- React-Core/RCTSettingsHeaders (= 0.63.2)
|
||||
- React-jsi (= 0.63.2)
|
||||
- ReactCommon/turbomodule/core (= 0.63.2)
|
||||
- React-RCTText (0.63.2):
|
||||
- React-Core/RCTTextHeaders (= 0.63.2)
|
||||
- React-RCTVibration (0.63.2):
|
||||
- FBReactNativeSpec (= 0.63.2)
|
||||
- RCTTypeSafety (= 0.63.4)
|
||||
- React-Core/RCTSettingsHeaders (= 0.63.4)
|
||||
- React-jsi (= 0.63.4)
|
||||
- ReactCommon/turbomodule/core (= 0.63.4)
|
||||
- React-RCTText (0.63.4):
|
||||
- React-Core/RCTTextHeaders (= 0.63.4)
|
||||
- React-RCTVibration (0.63.4):
|
||||
- FBReactNativeSpec (= 0.63.4)
|
||||
- Folly (= 2020.01.13.00)
|
||||
- React-Core/RCTVibrationHeaders (= 0.63.2)
|
||||
- React-jsi (= 0.63.2)
|
||||
- ReactCommon/turbomodule/core (= 0.63.2)
|
||||
- ReactCommon/turbomodule/core (0.63.2):
|
||||
- React-Core/RCTVibrationHeaders (= 0.63.4)
|
||||
- React-jsi (= 0.63.4)
|
||||
- ReactCommon/turbomodule/core (= 0.63.4)
|
||||
- ReactCommon/turbomodule/core (0.63.4):
|
||||
- DoubleConversion
|
||||
- Folly (= 2020.01.13.00)
|
||||
- glog
|
||||
- React-callinvoker (= 0.63.2)
|
||||
- React-Core (= 0.63.2)
|
||||
- React-cxxreact (= 0.63.2)
|
||||
- React-jsi (= 0.63.2)
|
||||
- React-callinvoker (= 0.63.4)
|
||||
- React-Core (= 0.63.4)
|
||||
- React-cxxreact (= 0.63.4)
|
||||
- React-jsi (= 0.63.4)
|
||||
- ReactNativeART (1.2.0):
|
||||
- React
|
||||
- ReactNativeUiLib (3.0.4):
|
||||
|
@ -560,25 +560,25 @@ DEPENDENCIES:
|
|||
- EXWebBrowser (from `../node_modules/expo-web-browser/ios`)
|
||||
- FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`)
|
||||
- FBReactNativeSpec (from `../node_modules/react-native/Libraries/FBReactNativeSpec`)
|
||||
- Flipper (~> 0.41.1)
|
||||
- Flipper (~> 0.54.0)
|
||||
- Flipper-DoubleConversion (= 1.1.7)
|
||||
- Flipper-Folly (~> 2.2)
|
||||
- Flipper-Glog (= 0.3.6)
|
||||
- Flipper-PeerTalk (~> 0.0.4)
|
||||
- Flipper-RSocket (~> 1.1)
|
||||
- FlipperKit (~> 0.41.1)
|
||||
- FlipperKit/Core (~> 0.41.1)
|
||||
- FlipperKit/CppBridge (~> 0.41.1)
|
||||
- FlipperKit/FBCxxFollyDynamicConvert (~> 0.41.1)
|
||||
- FlipperKit/FBDefines (~> 0.41.1)
|
||||
- FlipperKit/FKPortForwarding (~> 0.41.1)
|
||||
- FlipperKit/FlipperKitHighlightOverlay (~> 0.41.1)
|
||||
- FlipperKit/FlipperKitLayoutPlugin (~> 0.41.1)
|
||||
- FlipperKit/FlipperKitLayoutTextSearchable (~> 0.41.1)
|
||||
- FlipperKit/FlipperKitNetworkPlugin (~> 0.41.1)
|
||||
- FlipperKit/FlipperKitReactPlugin (~> 0.41.1)
|
||||
- FlipperKit/FlipperKitUserDefaultsPlugin (~> 0.41.1)
|
||||
- FlipperKit/SKIOSNetworkPlugin (~> 0.41.1)
|
||||
- FlipperKit (~> 0.54.0)
|
||||
- FlipperKit/Core (~> 0.54.0)
|
||||
- FlipperKit/CppBridge (~> 0.54.0)
|
||||
- FlipperKit/FBCxxFollyDynamicConvert (~> 0.54.0)
|
||||
- FlipperKit/FBDefines (~> 0.54.0)
|
||||
- FlipperKit/FKPortForwarding (~> 0.54.0)
|
||||
- FlipperKit/FlipperKitHighlightOverlay (~> 0.54.0)
|
||||
- FlipperKit/FlipperKitLayoutPlugin (~> 0.54.0)
|
||||
- FlipperKit/FlipperKitLayoutTextSearchable (~> 0.54.0)
|
||||
- FlipperKit/FlipperKitNetworkPlugin (~> 0.54.0)
|
||||
- FlipperKit/FlipperKitReactPlugin (~> 0.54.0)
|
||||
- FlipperKit/FlipperKitUserDefaultsPlugin (~> 0.54.0)
|
||||
- FlipperKit/SKIOSNetworkPlugin (~> 0.54.0)
|
||||
- Folly (from `../node_modules/react-native/third-party-podspecs/Folly.podspec`)
|
||||
- glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`)
|
||||
- JitsiMeetSDK (from `https://github.com/RocketChat/jitsi-meet-ios-sdk-releases.git`)
|
||||
|
@ -897,21 +897,21 @@ SPEC CHECKSUMS:
|
|||
EXPermissions: 80ac3acbdb145930079810fe5b08c022b3428aa8
|
||||
EXVideoThumbnails: f70bdc5511749f3181028f5000bcb7be203c631d
|
||||
EXWebBrowser: d37a5ffdea1b65947352bc001dd9f732463725d4
|
||||
FBLazyVector: 3ef4a7f62e7db01092f9d517d2ebc0d0677c4a37
|
||||
FBReactNativeSpec: dc7fa9088f0f2a998503a352b0554d69a4391c5a
|
||||
FBLazyVector: 3bb422f41b18121b71783a905c10e58606f7dc3e
|
||||
FBReactNativeSpec: f2c97f2529dd79c083355182cc158c9f98f4bd6e
|
||||
Firebase: 919186c8e119dd9372a45fd1dd17a8a942bc1892
|
||||
FirebaseAnalytics: 5fa308e1b13f838d0f6dc74719ac2a72e8c5afc4
|
||||
FirebaseCore: 8cd4f8ea22075e0ee582849b1cf79d8816506085
|
||||
FirebaseCoreDiagnostics: 4505e4d4009b1d93f605088ee7d7764d5f0d1c84
|
||||
FirebaseCrashlytics: 7d0fa02ea8842cc4b2ab07b0735edafde1ad77d6
|
||||
FirebaseInstallations: 3c520c951305cbf9ca54eb891ff9e6d1fd384881
|
||||
Flipper: 33585e2d9810fe5528346be33bcf71b37bb7ae13
|
||||
Flipper: be611d4b742d8c87fbae2ca5f44603a02539e365
|
||||
Flipper-DoubleConversion: 38631e41ef4f9b12861c67d17cb5518d06badc41
|
||||
Flipper-Folly: c12092ea368353b58e992843a990a3225d4533c3
|
||||
Flipper-Glog: 1dfd6abf1e922806c52ceb8701a3599a79a200a6
|
||||
Flipper-PeerTalk: 116d8f857dc6ef55c7a5a75ea3ceaafe878aadc9
|
||||
Flipper-RSocket: 64e7431a55835eb953b0bf984ef3b90ae9fdddd7
|
||||
FlipperKit: bc68102cd4952a258a23c9c1b316c7bec1fecf83
|
||||
FlipperKit: ab353d41aea8aae2ea6daaf813e67496642f3d7d
|
||||
Folly: b73c3869541e86821df3c387eb0af5f65addfab4
|
||||
glog: 40a13f7840415b9a77023fbcae0f1e6f43192af3
|
||||
GoogleAppMeasurement: 8cd1f289d60e629cf16ab03363b9e89c776b9651
|
||||
|
@ -926,20 +926,20 @@ SPEC CHECKSUMS:
|
|||
nanopb: c43f40fadfe79e8b8db116583945847910cbabc9
|
||||
OpenSSL-Universal: 8b48cc0d10c1b2923617dfe5c178aa9ed2689355
|
||||
PromisesObjC: b48e0338dbbac2207e611750777895f7a5811b75
|
||||
RCTRequired: f13f25e7b12f925f1f6a6a8c69d929a03c0129fe
|
||||
RCTTypeSafety: 44982c5c8e43ff4141eb519a8ddc88059acd1f3a
|
||||
React: e1c65dd41cb9db13b99f24608e47dd595f28ca9a
|
||||
React-callinvoker: 552a6a6bc8b3bb794cf108ad59e5a9e2e3b4fc98
|
||||
React-Core: 9d341e725dc9cd2f49e4c49ad1fc4e8776aa2639
|
||||
React-CoreModules: 5335e168165da7f7083ce7147768d36d3e292318
|
||||
React-cxxreact: d3261ec5f7d11743fbf21e263a34ea51d1f13ebc
|
||||
React-jsi: 54245e1d5f4b690dec614a73a3795964eeef13a8
|
||||
React-jsiexecutor: 8ca588cc921e70590820ce72b8789b02c67cce38
|
||||
React-jsinspector: b14e62ebe7a66e9231e9581279909f2fc3db6606
|
||||
RCTRequired: 082f10cd3f905d6c124597fd1c14f6f2655ff65e
|
||||
RCTTypeSafety: 8c9c544ecbf20337d069e4ae7fd9a377aadf504b
|
||||
React: b0a957a2c44da4113b0c4c9853d8387f8e64e615
|
||||
React-callinvoker: c3f44dd3cb195b6aa46621fff95ded79d59043fe
|
||||
React-Core: d3b2a1ac9a2c13c3bcde712d9281fc1c8a5b315b
|
||||
React-CoreModules: 0581ff36cb797da0943d424f69e7098e43e9be60
|
||||
React-cxxreact: c1480d4fda5720086c90df537ee7d285d4c57ac3
|
||||
React-jsi: a0418934cf48f25b485631deb27c64dc40fb4c31
|
||||
React-jsiexecutor: 93bd528844ad21dc07aab1c67cb10abae6df6949
|
||||
React-jsinspector: 58aef7155bc9a9683f5b60b35eccea8722a4f53a
|
||||
react-native-appearance: 0f0e5fc2fcef70e03d48c8fe6b00b9158c2ba8aa
|
||||
react-native-background-timer: 1f7d560647b40e6a60b01c452ba29c54bf581fc4
|
||||
react-native-blur: cad4d93b364f91e7b7931b3fa935455487e5c33c
|
||||
react-native-cameraroll: ae0a7c0cc8462508855707ff623b1e789b692865
|
||||
react-native-cameraroll: 60ba0068826eab1c8d43146191bafd4363ea58a7
|
||||
react-native-cookies: d79e5015a5d3a38e08f5cb39c4948532be7e9c2b
|
||||
react-native-document-picker: 825552b827012282baf4b7cbf119d3b37a280c90
|
||||
react-native-jitsi-meet: f2407aca85566e031ee7b222e497ee5ecb6623de
|
||||
|
@ -952,16 +952,16 @@ SPEC CHECKSUMS:
|
|||
react-native-simple-crypto: 564740fd8124827d82e9e8ded4a0de8c695c8a4d
|
||||
react-native-slider: 0221b417686c5957f6e77cd9ac22c1478a165355
|
||||
react-native-webview: 679b6f400176e2ea8a785acf7ae16cf282e7d1eb
|
||||
React-RCTActionSheet: 910163b6b09685a35c4ebbc52b66d1bfbbe39fc5
|
||||
React-RCTAnimation: 9a883bbe1e9d2e158d4fb53765ed64c8dc2200c6
|
||||
React-RCTBlob: 39cf0ece1927996c4466510e25d2105f67010e13
|
||||
React-RCTImage: de355d738727b09ad3692f2a979affbd54b5f378
|
||||
React-RCTLinking: 8122f221d395a63364b2c0078ce284214bd04575
|
||||
React-RCTNetwork: 8f96c7b49ea6a0f28f98258f347b6ad218bc0830
|
||||
React-RCTSettings: 8a49622aff9c1925f5455fa340b6fe4853d64ab6
|
||||
React-RCTText: 1b6773e776e4b33f90468c20fe3b16ca3e224bb8
|
||||
React-RCTVibration: 4d2e726957f4087449739b595f107c0d4b6c2d2d
|
||||
ReactCommon: a0a1edbebcac5e91338371b72ffc66aa822792ce
|
||||
React-RCTActionSheet: 89a0ca9f4a06c1f93c26067af074ccdce0f40336
|
||||
React-RCTAnimation: 1bde3ecc0c104c55df246eda516e0deb03c4e49b
|
||||
React-RCTBlob: a97d378b527740cc667e03ebfa183a75231ab0f0
|
||||
React-RCTImage: c1b1f2d3f43a4a528c8946d6092384b5c880d2f0
|
||||
React-RCTLinking: 35ae4ab9dc0410d1fcbdce4d7623194a27214fb2
|
||||
React-RCTNetwork: 29ec2696f8d8cfff7331fac83d3e893c95ef43ae
|
||||
React-RCTSettings: 60f0691bba2074ef394f95d4c2265ec284e0a46a
|
||||
React-RCTText: 5c51df3f08cb9dedc6e790161195d12bac06101c
|
||||
React-RCTVibration: ae4f914cfe8de7d4de95ae1ea6cc8f6315d73d9d
|
||||
ReactCommon: 73d79c7039f473b76db6ff7c6b159c478acbbb3b
|
||||
ReactNativeART: 78edc68dd4a1e675338cd0cd113319cf3a65f2ab
|
||||
ReactNativeUiLib: cde7263a7d308b60161cd286f95c9433e79f2f7d
|
||||
rn-extensions-share: 8db79372089567cbc5aefe8444869bbc808578d3
|
||||
|
@ -1000,9 +1000,9 @@ SPEC CHECKSUMS:
|
|||
UMReactNativeAdapter: 538efe92e781b5d7678cf95b34c46f2d0989a557
|
||||
UMSensorsInterface: cb5bf31d52c4349f0ff9e3c049bbe4df0d80d383
|
||||
UMTaskManagerInterface: 80653f25c55d9e6d79d6a0a65589fa213feaee11
|
||||
Yoga: 7740b94929bbacbddda59bf115b5317e9a161598
|
||||
Yoga: 4bd86afe9883422a7c4028c00e34790f560923d6
|
||||
YogaKit: f782866e155069a2cca2517aafea43200b01fd5a
|
||||
|
||||
PODFILE CHECKSUM: c38f9a91b5c154453863a4ee1ccc203da58ad2f2
|
||||
PODFILE CHECKSUM: 8477bd3277dec7b3190105d922512e3791bc026f
|
||||
|
||||
COCOAPODS: 1.9.3
|
||||
|
|
|
@ -1,8 +1,26 @@
|
|||
# Flipper [![Build Status](https://travis-ci.org/facebook/flipper.svg?branch=master)](https://travis-ci.org/facebook/flipper) [![Android Maven Badge](https://img.shields.io/maven-metadata/v/https/jcenter.bintray.com/com/facebook/flipper/flipper/maven-metadata.xml.svg?color=green&label=android)](https://bintray.com/facebook/maven/com.facebook.flipper%3Aflipper) [![iOS](https://img.shields.io/cocoapods/v/FlipperKit.svg?label=iOS&color=blue)](https://cocoapods.org/pods/Flipper) [![Greenkeeper badge](https://badges.greenkeeper.io/facebook/flipper.svg)](https://greenkeeper.io/)
|
||||
<p align="center">
|
||||
<img src="https://fbflipper.com/img/icon.png" alt="logo" width="20%"/>
|
||||
</p>
|
||||
<h1 align="center">
|
||||
Flipper
|
||||
</h1>
|
||||
<p align="center">
|
||||
<a href="https://travis-ci.org/facebook/flipper">
|
||||
<img src="https://travis-ci.org/facebook/flipper.svg?branch=master" alt="Build Status" />
|
||||
</a>
|
||||
<a href="https://bintray.com/facebook/maven/com.facebook.flipper%3Aflipper">
|
||||
<img src="https://img.shields.io/maven-metadata/v/https/jcenter.bintray.com/com/facebook/flipper/flipper/maven-metadata.xml.svg?color=green&label=android" alt="Android Maven Badge" />
|
||||
</a>
|
||||
<a href="https://cocoapods.org/pods/Flipper">
|
||||
<img src="https://img.shields.io/cocoapods/v/FlipperKit.svg?label=iOS&color=blue" alt="iOS" />
|
||||
</a>
|
||||
</p>
|
||||
|
||||
Flipper (formerly Sonar) is a platform for debugging mobile apps on iOS and Android. Visualize, inspect, and control your apps from a simple desktop interface. Use Flipper as is or extend it using the plugin API.
|
||||
<p align="center">
|
||||
Flipper (formerly Sonar) is a platform for debugging mobile apps on iOS and Android. Visualize, inspect, and control your apps from a simple desktop interface. Use Flipper as is or extend it using the plugin API.
|
||||
</p>
|
||||
|
||||
![Flipper](/docs/assets/layout.png)
|
||||
![Flipper](/website/static/img/layout.png)
|
||||
|
||||
## Table of Contents
|
||||
|
||||
|
@ -32,7 +50,7 @@ Flipper is built as a platform. In addition to using the tools already included,
|
|||
|
||||
## Contributing to Flipper
|
||||
|
||||
Both Flipper's desktop app and native mobile SDKs are open-source and MIT licensed. This enables you to see and understand how we are building plugins, and of course, join the community and help improve Flipper. We are excited to see what you will build on this platform.
|
||||
Both Flipper's desktop app and native mobile SDKs are open-source and MIT licensed. This enables you to see and understand how we are building plugins, and of course, join the community and help to improve Flipper. We are excited to see what you will build on this platform.
|
||||
|
||||
# In this repo
|
||||
|
||||
|
|
|
@ -8,12 +8,10 @@
|
|||
#include "ConnectionContextStore.h"
|
||||
#include <folly/json.h>
|
||||
#include <folly/portability/SysStat.h>
|
||||
#include <stdio.h>
|
||||
#include <fstream>
|
||||
#include <iostream>
|
||||
#include "CertificateUtils.h"
|
||||
#include "Log.h"
|
||||
|
||||
using namespace facebook::flipper;
|
||||
|
||||
static constexpr auto CSR_FILE_NAME = "app.csr";
|
||||
|
|
|
@ -0,0 +1,8 @@
|
|||
/*
|
||||
* Copyright (c) Facebook, Inc. and its affiliates.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*/
|
||||
|
||||
enum FlipperCertificateExchangeMedium { FS_ACCESS = 1, WWW = 2 };
|
|
@ -0,0 +1,58 @@
|
|||
/*
|
||||
* Copyright (c) Facebook, Inc. and its affiliates.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <functional>
|
||||
#include <string>
|
||||
#include "FlipperCertificateExchangeMedium.h"
|
||||
#include "FlipperState.h"
|
||||
#include "FlipperStep.h"
|
||||
namespace facebook {
|
||||
namespace flipper {
|
||||
|
||||
/**
|
||||
* Represents a FlipperCertificateProvider which is responsible for obtaining
|
||||
* Flipper TLS certificates.
|
||||
*/
|
||||
class FlipperCertificateProvider {
|
||||
public:
|
||||
virtual ~FlipperCertificateProvider() {}
|
||||
|
||||
/**
|
||||
* Gets certificates downloaded at a path, which is passed as an argument.
|
||||
*/
|
||||
virtual void getCertificates(
|
||||
const std::string& path,
|
||||
const std::string& deviceID) = 0;
|
||||
|
||||
/**
|
||||
* Sets certificate exchange medium
|
||||
*/
|
||||
virtual void setCertificateExchangeMedium(
|
||||
const FlipperCertificateExchangeMedium medium) = 0;
|
||||
|
||||
/**
|
||||
* Gets certificate exchange medium
|
||||
*/
|
||||
virtual FlipperCertificateExchangeMedium getCertificateExchangeMedium() = 0;
|
||||
|
||||
/**
|
||||
* This lets the Client know if it should reset the connection folder when
|
||||
* `stop` is called.
|
||||
*/
|
||||
virtual bool shouldResetCertificateFolder() = 0;
|
||||
|
||||
/**
|
||||
* Sets the FlipperState, so that Cert Provider can send debuggin information
|
||||
* to troubleshoot screen.
|
||||
*/
|
||||
virtual void setFlipperState(std::shared_ptr<FlipperState> state) = 0;
|
||||
};
|
||||
|
||||
} // namespace flipper
|
||||
} // namespace facebook
|
|
@ -73,6 +73,17 @@ void FlipperClient::addPlugin(std::shared_ptr<FlipperPlugin> plugin) {
|
|||
});
|
||||
}
|
||||
|
||||
void FlipperClient::setCertificateProvider(
|
||||
const std::shared_ptr<FlipperCertificateProvider> provider) {
|
||||
socket_->setCertificateProvider(provider);
|
||||
log("cpp setCertificateProvider called");
|
||||
}
|
||||
|
||||
std::shared_ptr<FlipperCertificateProvider>
|
||||
FlipperClient::getCertificateProvider() {
|
||||
return socket_->getCertificateProvider();
|
||||
}
|
||||
|
||||
void FlipperClient::removePlugin(std::shared_ptr<FlipperPlugin> plugin) {
|
||||
performAndReportError([this, plugin]() {
|
||||
log("FlipperClient::removePlugin " + plugin->identifier());
|
||||
|
|
|
@ -10,6 +10,7 @@
|
|||
#include <map>
|
||||
#include <mutex>
|
||||
#include <vector>
|
||||
#include "FlipperCertificateProvider.h"
|
||||
#include "FlipperConnectionImpl.h"
|
||||
#include "FlipperConnectionManager.h"
|
||||
#include "FlipperInitConfig.h"
|
||||
|
@ -85,6 +86,10 @@ class FlipperClient : public FlipperConnectionManager::Callbacks {
|
|||
void setStateListener(
|
||||
std::shared_ptr<FlipperStateUpdateListener> stateListener);
|
||||
|
||||
void setCertificateProvider(
|
||||
const std::shared_ptr<FlipperCertificateProvider> provider);
|
||||
std::shared_ptr<FlipperCertificateProvider> getCertificateProvider();
|
||||
|
||||
std::shared_ptr<FlipperPlugin> getPlugin(const std::string& identifier);
|
||||
|
||||
std::string getState();
|
||||
|
|
|
@ -8,6 +8,7 @@
|
|||
#pragma once
|
||||
|
||||
#include <folly/json.h>
|
||||
#include "FlipperCertificateProvider.h"
|
||||
#include "FlipperResponder.h"
|
||||
|
||||
namespace facebook {
|
||||
|
@ -30,6 +31,18 @@ class FlipperConnectionManager {
|
|||
*/
|
||||
virtual void stop() = 0;
|
||||
|
||||
/**
|
||||
Sets the Auth token to be used for hitting an Intern end point
|
||||
*/
|
||||
virtual void setCertificateProvider(
|
||||
const std::shared_ptr<FlipperCertificateProvider> provider) = 0;
|
||||
|
||||
/**
|
||||
Gets the certificate provider
|
||||
*/
|
||||
virtual std::shared_ptr<FlipperCertificateProvider>
|
||||
getCertificateProvider() = 0;
|
||||
|
||||
/**
|
||||
True if there's an open connection.
|
||||
This method may block if the connection is busy.
|
||||
|
|
|
@ -90,6 +90,16 @@ FlipperConnectionManagerImpl::~FlipperConnectionManagerImpl() {
|
|||
stop();
|
||||
}
|
||||
|
||||
void FlipperConnectionManagerImpl::setCertificateProvider(
|
||||
const std::shared_ptr<FlipperCertificateProvider> provider) {
|
||||
certProvider_ = provider;
|
||||
};
|
||||
|
||||
std::shared_ptr<FlipperCertificateProvider>
|
||||
FlipperConnectionManagerImpl::getCertificateProvider() {
|
||||
return certProvider_;
|
||||
};
|
||||
|
||||
void FlipperConnectionManagerImpl::start() {
|
||||
if (isStarted_) {
|
||||
log("Already started");
|
||||
|
@ -169,10 +179,13 @@ void FlipperConnectionManagerImpl::startSync() {
|
|||
bool FlipperConnectionManagerImpl::doCertificateExchange() {
|
||||
rsocket::SetupParameters parameters;
|
||||
folly::SocketAddress address;
|
||||
int medium = certProvider_ != nullptr
|
||||
? certProvider_->getCertificateExchangeMedium()
|
||||
: FlipperCertificateExchangeMedium::FS_ACCESS;
|
||||
|
||||
parameters.payload = rsocket::Payload(folly::toJson(folly::dynamic::object(
|
||||
"os", deviceData_.os)("device", deviceData_.device)(
|
||||
"app", deviceData_.app)("sdk_version", sdkVersion)));
|
||||
"app", deviceData_.app)("sdk_version", sdkVersion)("medium", medium)));
|
||||
address.setFromHostPort(deviceData_.host, insecurePort);
|
||||
|
||||
auto connectingInsecurely = flipperState_->start("Connect insecurely");
|
||||
|
@ -198,6 +211,7 @@ bool FlipperConnectionManagerImpl::doCertificateExchange() {
|
|||
.get();
|
||||
|
||||
if (newClient.get() == nullptr) {
|
||||
connectingInsecurely->fail("Failed to connect");
|
||||
return false;
|
||||
}
|
||||
|
||||
|
@ -221,12 +235,15 @@ bool FlipperConnectionManagerImpl::connectSecurely() {
|
|||
if (deviceId.compare("unknown")) {
|
||||
loadingDeviceId->complete();
|
||||
}
|
||||
int medium = certProvider_ != nullptr
|
||||
? certProvider_->getCertificateExchangeMedium()
|
||||
: FlipperCertificateExchangeMedium::FS_ACCESS;
|
||||
|
||||
parameters.payload = rsocket::Payload(folly::toJson(folly::dynamic::object(
|
||||
"csr", contextStore_->getCertificateSigningRequest().c_str())(
|
||||
"csr_path", contextStore_->getCertificateDirectoryPath().c_str())(
|
||||
"os", deviceData_.os)("device", deviceData_.device)(
|
||||
"device_id", deviceId)("app", deviceData_.app)(
|
||||
"device_id", deviceId)("app", deviceData_.app)("medium", medium)(
|
||||
"sdk_version", sdkVersion)));
|
||||
address.setFromHostPort(deviceData_.host, securePort);
|
||||
|
||||
|
@ -257,6 +274,7 @@ bool FlipperConnectionManagerImpl::connectSecurely() {
|
|||
})
|
||||
.get();
|
||||
if (newClient.get() == nullptr) {
|
||||
connectingSecurely->fail("Failed to connect");
|
||||
return false;
|
||||
}
|
||||
|
||||
|
@ -278,6 +296,9 @@ void FlipperConnectionManagerImpl::reconnect() {
|
|||
}
|
||||
|
||||
void FlipperConnectionManagerImpl::stop() {
|
||||
if (certProvider_ && certProvider_->shouldResetCertificateFolder()) {
|
||||
contextStore_->resetState();
|
||||
}
|
||||
if (!isStarted_) {
|
||||
log("Not started");
|
||||
return;
|
||||
|
@ -338,10 +359,13 @@ void FlipperConnectionManagerImpl::requestSignedCertFromFlipper() {
|
|||
auto generatingCSR = flipperState_->start("Generate CSR");
|
||||
std::string csr = contextStore_->getCertificateSigningRequest();
|
||||
generatingCSR->complete();
|
||||
|
||||
int medium = certProvider_ != nullptr
|
||||
? certProvider_->getCertificateExchangeMedium()
|
||||
: FlipperCertificateExchangeMedium::FS_ACCESS;
|
||||
folly::dynamic message =
|
||||
folly::dynamic::object("method", "signCertificate")("csr", csr.c_str())(
|
||||
"destination", contextStore_->getCertificateDirectoryPath().c_str());
|
||||
"destination", contextStore_->getCertificateDirectoryPath().c_str())(
|
||||
"medium", medium);
|
||||
auto gettingCert = flipperState_->start("Getting cert from desktop");
|
||||
|
||||
flipperEventBase_->add([this, message, gettingCert]() {
|
||||
|
@ -354,8 +378,34 @@ void FlipperConnectionManagerImpl::requestSignedCertFromFlipper() {
|
|||
folly::dynamic config = folly::parseJson(response);
|
||||
contextStore_->storeConnectionConfig(config);
|
||||
}
|
||||
gettingCert->complete();
|
||||
if (certProvider_) {
|
||||
certProvider_->setFlipperState(flipperState_);
|
||||
auto gettingCertFromProvider =
|
||||
flipperState_->start("Getting cert from Cert Provider");
|
||||
|
||||
try {
|
||||
// Certificates should be present in app's sandbox after it is
|
||||
// returned. The reason we can't have a completion block here
|
||||
// is because if the certs are not present after it returns
|
||||
// then the flipper tries to reconnect on insecured channel
|
||||
// and recreates the app.csr. By the time completion block is
|
||||
// called the DeviceCA cert doesn't match app's csr and it
|
||||
// throws an SSL error.
|
||||
certProvider_->getCertificates(
|
||||
contextStore_->getCertificateDirectoryPath(),
|
||||
contextStore_->getDeviceId());
|
||||
gettingCertFromProvider->complete();
|
||||
} catch (std::exception& e) {
|
||||
gettingCertFromProvider->fail(e.what());
|
||||
gettingCert->fail(e.what());
|
||||
} catch (...) {
|
||||
gettingCertFromProvider->fail("Exception from certProvider");
|
||||
gettingCert->fail("Exception from certProvider");
|
||||
}
|
||||
}
|
||||
log("Certificate exchange complete.");
|
||||
gettingCert->complete();
|
||||
|
||||
// Disconnect after message sending is complete.
|
||||
// This will trigger a reconnect which should use the secure
|
||||
// channel.
|
||||
|
|
|
@ -50,10 +50,14 @@ class FlipperConnectionManagerImpl : public FlipperConnectionManager {
|
|||
std::unique_ptr<FlipperResponder> responder) override;
|
||||
|
||||
void reconnect();
|
||||
void setCertificateProvider(
|
||||
const std::shared_ptr<FlipperCertificateProvider> provider) override;
|
||||
std::shared_ptr<FlipperCertificateProvider> getCertificateProvider() override;
|
||||
|
||||
private:
|
||||
bool isOpen_ = false;
|
||||
bool isStarted_ = false;
|
||||
std::shared_ptr<FlipperCertificateProvider> certProvider_ = nullptr;
|
||||
Callbacks* callbacks_;
|
||||
DeviceData deviceData_;
|
||||
std::shared_ptr<FlipperState> flipperState_;
|
||||
|
|
|
@ -1,8 +1,26 @@
|
|||
# Flipper [![Build Status](https://travis-ci.org/facebook/flipper.svg?branch=master)](https://travis-ci.org/facebook/flipper) [![Android Maven Badge](https://img.shields.io/maven-metadata/v/https/jcenter.bintray.com/com/facebook/flipper/flipper/maven-metadata.xml.svg?color=green&label=android)](https://bintray.com/facebook/maven/com.facebook.flipper%3Aflipper) [![iOS](https://img.shields.io/cocoapods/v/FlipperKit.svg?label=iOS&color=blue)](https://cocoapods.org/pods/Flipper) [![Greenkeeper badge](https://badges.greenkeeper.io/facebook/flipper.svg)](https://greenkeeper.io/)
|
||||
<p align="center">
|
||||
<img src="https://fbflipper.com/img/icon.png" alt="logo" width="20%"/>
|
||||
</p>
|
||||
<h1 align="center">
|
||||
Flipper
|
||||
</h1>
|
||||
<p align="center">
|
||||
<a href="https://travis-ci.org/facebook/flipper">
|
||||
<img src="https://travis-ci.org/facebook/flipper.svg?branch=master" alt="Build Status" />
|
||||
</a>
|
||||
<a href="https://bintray.com/facebook/maven/com.facebook.flipper%3Aflipper">
|
||||
<img src="https://img.shields.io/maven-metadata/v/https/jcenter.bintray.com/com/facebook/flipper/flipper/maven-metadata.xml.svg?color=green&label=android" alt="Android Maven Badge" />
|
||||
</a>
|
||||
<a href="https://cocoapods.org/pods/Flipper">
|
||||
<img src="https://img.shields.io/cocoapods/v/FlipperKit.svg?label=iOS&color=blue" alt="iOS" />
|
||||
</a>
|
||||
</p>
|
||||
|
||||
Flipper (formerly Sonar) is a platform for debugging mobile apps on iOS and Android. Visualize, inspect, and control your apps from a simple desktop interface. Use Flipper as is or extend it using the plugin API.
|
||||
<p align="center">
|
||||
Flipper (formerly Sonar) is a platform for debugging mobile apps on iOS and Android. Visualize, inspect, and control your apps from a simple desktop interface. Use Flipper as is or extend it using the plugin API.
|
||||
</p>
|
||||
|
||||
![Flipper](/docs/assets/layout.png)
|
||||
![Flipper](/website/static/img/layout.png)
|
||||
|
||||
## Table of Contents
|
||||
|
||||
|
@ -32,7 +50,7 @@ Flipper is built as a platform. In addition to using the tools already included,
|
|||
|
||||
## Contributing to Flipper
|
||||
|
||||
Both Flipper's desktop app and native mobile SDKs are open-source and MIT licensed. This enables you to see and understand how we are building plugins, and of course, join the community and help improve Flipper. We are excited to see what you will build on this platform.
|
||||
Both Flipper's desktop app and native mobile SDKs are open-source and MIT licensed. This enables you to see and understand how we are building plugins, and of course, join the community and help to improve Flipper. We are excited to see what you will build on this platform.
|
||||
|
||||
# In this repo
|
||||
|
||||
|
|
|
@ -8,6 +8,7 @@
|
|||
#ifdef FB_SONARKIT_ENABLED
|
||||
|
||||
#import <Foundation/Foundation.h>
|
||||
#import "FlipperKitCertificateProvider.h"
|
||||
#import "FlipperPlugin.h"
|
||||
#import "FlipperStateUpdateListener.h"
|
||||
|
||||
|
@ -64,6 +65,16 @@ Subscribe a ViewController to state update change notifications
|
|||
*/
|
||||
- (void)subscribeForUpdates:(id<FlipperStateUpdateListener>)controller;
|
||||
|
||||
/**
|
||||
Sets the certificate provider responsible for obtaining certificates
|
||||
*/
|
||||
- (void)setCertificateProvider:(id<FlipperKitCertificateProvider>)provider;
|
||||
|
||||
/**
|
||||
Get the certificate provider of Flipper Client
|
||||
*/
|
||||
- (id<FlipperKitCertificateProvider>)getCertificateProvider;
|
||||
|
||||
// initializers are disabled. You must use `+[FlipperClient sharedClient]`
|
||||
// instance.
|
||||
- (instancetype)init NS_UNAVAILABLE;
|
||||
|
|
|
@ -8,15 +8,17 @@
|
|||
#if FB_SONARKIT_ENABLED
|
||||
|
||||
#import "FlipperClient.h"
|
||||
#import <Flipper/FlipperCertificateProvider.h>
|
||||
#import <Flipper/FlipperClient.h>
|
||||
#import <UIKit/UIKit.h>
|
||||
#include <folly/io/async/EventBase.h>
|
||||
#include <folly/io/async/ScopedEventBaseThread.h>
|
||||
#include <memory>
|
||||
#import "FlipperClient+Testing.h"
|
||||
#import "FlipperCppWrapperPlugin.h"
|
||||
#import "FlipperKitCertificateProvider.h"
|
||||
#import "SKEnvironmentVariables.h"
|
||||
#include "SKStateUpdateCPPWrapper.h"
|
||||
|
||||
#if !TARGET_OS_SIMULATOR
|
||||
#import <FKPortForwarding/FKPortForwardingServer.h>
|
||||
#endif
|
||||
|
@ -27,6 +29,7 @@ using WrapperPlugin = facebook::flipper::FlipperCppWrapperPlugin;
|
|||
facebook::flipper::FlipperClient* _cppClient;
|
||||
folly::ScopedEventBaseThread sonarThread;
|
||||
folly::ScopedEventBaseThread connectionThread;
|
||||
id<FlipperKitCertificateProvider> _certProvider;
|
||||
#if !TARGET_OS_SIMULATOR
|
||||
FKPortForwardingServer* _secureServer;
|
||||
FKPortForwardingServer* _insecureServer;
|
||||
|
@ -46,7 +49,6 @@ using WrapperPlugin = facebook::flipper::FlipperCppWrapperPlugin;
|
|||
});
|
||||
return sharedClient;
|
||||
}
|
||||
|
||||
- (instancetype)init {
|
||||
if (self = [super init]) {
|
||||
UIDevice* device = [UIDevice currentDevice];
|
||||
|
@ -57,9 +59,7 @@ using WrapperPlugin = facebook::flipper::FlipperCppWrapperPlugin;
|
|||
NSString* appId = [bundle bundleIdentifier];
|
||||
NSString* privateAppDirectory = NSSearchPathForDirectoriesInDomains(
|
||||
NSApplicationSupportDirectory, NSUserDomainMask, YES)[0];
|
||||
|
||||
NSFileManager* manager = [NSFileManager defaultManager];
|
||||
|
||||
if ([manager fileExistsAtPath:privateAppDirectory isDirectory:NULL] == NO &&
|
||||
![manager createDirectoryAtPath:privateAppDirectory
|
||||
withIntermediateDirectories:YES
|
||||
|
@ -99,6 +99,19 @@ using WrapperPlugin = facebook::flipper::FlipperCppWrapperPlugin;
|
|||
return self;
|
||||
}
|
||||
|
||||
- (void)setCertificateProvider:(id<FlipperKitCertificateProvider>)provider {
|
||||
_certProvider = provider;
|
||||
std::shared_ptr<facebook::flipper::FlipperCertificateProvider>* prov =
|
||||
static_cast<
|
||||
std::shared_ptr<facebook::flipper::FlipperCertificateProvider>*>(
|
||||
[provider getCPPCertificateProvider]);
|
||||
_cppClient->setCertificateProvider(*prov);
|
||||
}
|
||||
|
||||
- (id<FlipperKitCertificateProvider>)getCertificateProvider {
|
||||
return _certProvider;
|
||||
}
|
||||
|
||||
- (void)refreshPlugins {
|
||||
_cppClient->refreshPlugins();
|
||||
}
|
||||
|
|
|
@ -0,0 +1,33 @@
|
|||
/*
|
||||
* Copyright (c) Facebook, Inc. and its affiliates.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*/
|
||||
|
||||
#ifdef FB_SONARKIT_ENABLED
|
||||
|
||||
#import <Flipper/FlipperCertificateExchangeMedium.h>
|
||||
|
||||
typedef enum FlipperCertificateExchangeMedium
|
||||
FlipperKitCertificateExchangeMedium;
|
||||
/**
|
||||
Represents a CPP Certificate Provider to be used by FlipperClient
|
||||
*/
|
||||
@protocol FlipperKitCertificateProvider<NSObject>
|
||||
|
||||
- (_Nonnull instancetype)initCPPCertificateProvider;
|
||||
|
||||
- (void* _Nonnull)
|
||||
getCPPCertificateProvider; // Returning it as void* as the file needs to
|
||||
// have no cpp for it to be compatible with
|
||||
// Swift. The pointer returned should point to
|
||||
// std::shared_ptr<FlipperCertificateProvider>
|
||||
- (void)setCertificateExchangeMedium:
|
||||
(FlipperKitCertificateExchangeMedium)medium;
|
||||
|
||||
@optional
|
||||
- (void)setAuthToken:(nullable NSString*)authToken;
|
||||
@end
|
||||
|
||||
#endif
|
|
@ -164,10 +164,15 @@
|
|||
}
|
||||
|
||||
- (void)didDisconnect {
|
||||
// Clear the last highlight if there is any
|
||||
[self onCallSetHighlighted:nil withResponder:nil];
|
||||
// Disable search if it is active
|
||||
[self onCallSetSearchActive:NO withConnection:nil];
|
||||
// removeFromSuperlayer (SKHighlightOverlay) needs to be called on main thread
|
||||
FlipperPerformBlockOnMainThread(
|
||||
^{
|
||||
// Clear the last highlight if there is any
|
||||
[self onCallSetHighlighted:nil withResponder:nil];
|
||||
// Disable search if it is active
|
||||
[self onCallSetSearchActive:NO withConnection:nil];
|
||||
},
|
||||
nil);
|
||||
}
|
||||
|
||||
- (void)onCallGetRoot:(id<FlipperResponder>)responder {
|
||||
|
@ -321,17 +326,30 @@
|
|||
__block id<NSObject> rootNode = _rootNode;
|
||||
|
||||
[_tapListener listenForTapWithBlock:^(CGPoint touchPoint) {
|
||||
SKTouch* touch = [[SKTouch alloc]
|
||||
initWithTouchPoint:touchPoint
|
||||
withRootNode:rootNode
|
||||
withDescriptorMapper:self->_descriptorMapper
|
||||
finishWithBlock:^(NSArray<NSString*>* path) {
|
||||
[connection send:@"select" withParams:@{@"path" : path}];
|
||||
}];
|
||||
SKTouch* touch =
|
||||
[[SKTouch alloc] initWithTouchPoint:touchPoint
|
||||
withRootNode:rootNode
|
||||
withDescriptorMapper:self->_descriptorMapper
|
||||
finishWithBlock:^(id<NSObject> node) {
|
||||
[self updateNodeReference:node];
|
||||
}];
|
||||
|
||||
SKNodeDescriptor* descriptor =
|
||||
[self->_descriptorMapper descriptorForClass:[rootNode class]];
|
||||
[descriptor hitTest:touch forNode:rootNode];
|
||||
[touch retrieveSelectTree:^(NSDictionary* tree) {
|
||||
NSMutableArray* path = [NSMutableArray new];
|
||||
NSDictionary* subtree = tree;
|
||||
NSEnumerator* enumerator = [tree keyEnumerator];
|
||||
id nodeId;
|
||||
while ((nodeId = [enumerator nextObject])) {
|
||||
subtree = subtree[nodeId];
|
||||
[path addObject:nodeId];
|
||||
enumerator = [subtree keyEnumerator];
|
||||
}
|
||||
[connection send:@"select"
|
||||
withParams:@{@"path" : path, @"tree" : tree}];
|
||||
}];
|
||||
}];
|
||||
} else {
|
||||
[_tapListener unmount];
|
||||
|
@ -371,10 +389,6 @@
|
|||
});
|
||||
}
|
||||
|
||||
- (void)invalidateRootNode {
|
||||
[self invalidateNode:_rootNode];
|
||||
}
|
||||
|
||||
- (void)_reportInvalidatedObjects {
|
||||
NSMutableArray* nodes = [NSMutableArray new];
|
||||
{ // scope mutex acquisition
|
||||
|
@ -470,6 +484,7 @@
|
|||
|
||||
NSMutableArray* attributes = [NSMutableArray new];
|
||||
NSMutableDictionary* data = [NSMutableDictionary new];
|
||||
NSMutableDictionary* extraInfo = [NSMutableDictionary new];
|
||||
|
||||
const auto* nodeAttributes = [nodeDescriptor attributesForNode:node];
|
||||
for (const SKNamed<NSString*>* namedPair in nodeAttributes) {
|
||||
|
@ -488,6 +503,11 @@
|
|||
data[namedPair.name] = namedPair.value;
|
||||
}
|
||||
|
||||
const auto* nodeExtraInfo = [nodeDescriptor extraInfoForNode:node];
|
||||
for (const SKNamed<NSDictionary*>* namedPair in nodeExtraInfo) {
|
||||
extraInfo[namedPair.name] = namedPair.value;
|
||||
}
|
||||
|
||||
NSMutableArray* children = [self getChildrenForNode:node
|
||||
withDescriptor:nodeDescriptor];
|
||||
|
||||
|
@ -500,6 +520,7 @@
|
|||
@"attributes" : attributes,
|
||||
@"data" : data,
|
||||
@"decoration" : [nodeDescriptor decorationForNode:node] ?: @"(unknown)",
|
||||
@"extraInfo" : extraInfo,
|
||||
};
|
||||
|
||||
return nodeDic;
|
||||
|
|
|
@ -10,7 +10,6 @@
|
|||
@protocol SKInvalidationDelegate
|
||||
|
||||
- (void)invalidateNode:(id<NSObject>)node;
|
||||
- (void)invalidateRootNode;
|
||||
- (void)updateNodeReference:(id<NSObject>)node;
|
||||
|
||||
@end
|
||||
|
|
|
@ -77,6 +77,12 @@ typedef void (^SKNodeUpdateData)(id value);
|
|||
*/
|
||||
- (NSArray<SKNamed<NSDictionary*>*>*)dataForNode:(T)node;
|
||||
|
||||
/**
|
||||
Get the extra info to pass it back to Sonar application without showing them in
|
||||
the sidebar.
|
||||
*/
|
||||
- (NSArray<SKNamed<NSDictionary*>*>*)extraInfoForNode:(T)node;
|
||||
|
||||
/**
|
||||
Get the attributes for this node. Attributes will be showed in the Sonar
|
||||
application right next to the name of the node.
|
||||
|
|
|
@ -59,6 +59,10 @@
|
|||
return @[];
|
||||
}
|
||||
|
||||
- (NSArray<SKNamed<NSDictionary*>*>*)extraInfoForNode:(id)node {
|
||||
return @[];
|
||||
}
|
||||
|
||||
- (NSArray<SKNamed<NSString*>*>*)attributesForNode:(id)node {
|
||||
return @[];
|
||||
}
|
||||
|
|
|
@ -9,7 +9,8 @@
|
|||
|
||||
#import "SKDescriptorMapper.h"
|
||||
|
||||
typedef void (^SKTouchFinishDelegate)(NSArray<NSString*>* path);
|
||||
typedef void (^SKTouchFinishDelegate)(id<NSObject> currentNode);
|
||||
typedef void (^SKProcessFinishDelegate)(NSDictionary* tree);
|
||||
|
||||
@interface SKTouch : NSObject
|
||||
|
||||
|
@ -23,6 +24,8 @@ typedef void (^SKTouchFinishDelegate)(NSArray<NSString*>* path);
|
|||
|
||||
- (void)finish;
|
||||
|
||||
- (void)retrieveSelectTree:(SKProcessFinishDelegate)callback;
|
||||
|
||||
- (BOOL)containedIn:(CGRect)bounds;
|
||||
|
||||
@end
|
||||
|
|
|
@ -12,12 +12,13 @@
|
|||
|
||||
@implementation SKTouch {
|
||||
SKTouchFinishDelegate _onFinish;
|
||||
NSMutableArray<NSString*>* _path;
|
||||
|
||||
CGPoint _currentTouchPoint;
|
||||
id<NSObject> _currentNode;
|
||||
|
||||
SKDescriptorMapper* _descriptorMapper;
|
||||
|
||||
NSMutableArray<id<NSObject>>* _nodeStack;
|
||||
NSMutableArray<NSMutableDictionary*>* _treeStack;
|
||||
}
|
||||
|
||||
- (instancetype)initWithTouchPoint:(CGPoint)touchPoint
|
||||
|
@ -27,9 +28,11 @@
|
|||
if (self = [super init]) {
|
||||
_onFinish = finishBlock;
|
||||
_currentTouchPoint = touchPoint;
|
||||
_currentNode = node;
|
||||
_descriptorMapper = mapper;
|
||||
_path = [NSMutableArray new];
|
||||
_nodeStack = [NSMutableArray new];
|
||||
[_nodeStack addObject:node];
|
||||
_treeStack = [NSMutableArray new];
|
||||
[_treeStack addObject:[[NSMutableDictionary alloc] init]];
|
||||
}
|
||||
|
||||
return self;
|
||||
|
@ -40,18 +43,34 @@
|
|||
_currentTouchPoint.x -= offset.x;
|
||||
_currentTouchPoint.y -= offset.y;
|
||||
|
||||
id<NSObject> currentNode = _nodeStack.lastObject;
|
||||
SKNodeDescriptor* descriptor =
|
||||
[_descriptorMapper descriptorForClass:[_currentNode class]];
|
||||
_currentNode = [descriptor childForNode:_currentNode atIndex:childIndex];
|
||||
[_descriptorMapper descriptorForClass:[currentNode class]];
|
||||
id<NSObject> nextNode = [descriptor childForNode:currentNode
|
||||
atIndex:childIndex];
|
||||
[_nodeStack addObject:nextNode];
|
||||
[_treeStack addObject:[[NSMutableDictionary alloc] init]];
|
||||
|
||||
descriptor = [_descriptorMapper descriptorForClass:[_currentNode class]];
|
||||
[_path addObject:[descriptor identifierForNode:_currentNode]];
|
||||
descriptor = [_descriptorMapper descriptorForClass:[nextNode class]];
|
||||
NSString* currentId = [descriptor identifierForNode:nextNode];
|
||||
[descriptor hitTest:self forNode:nextNode];
|
||||
|
||||
[descriptor hitTest:self forNode:_currentNode];
|
||||
// After finish this component
|
||||
_currentTouchPoint.x += offset.x;
|
||||
_currentTouchPoint.y += offset.y;
|
||||
[_nodeStack removeLastObject];
|
||||
NSDictionary* currentDict = _treeStack.lastObject;
|
||||
[_treeStack removeLastObject];
|
||||
[_treeStack.lastObject setObject:currentDict forKey:currentId];
|
||||
}
|
||||
|
||||
- (void)finish {
|
||||
_onFinish(_path);
|
||||
_onFinish(_nodeStack.lastObject);
|
||||
}
|
||||
|
||||
- (void)retrieveSelectTree:(SKProcessFinishDelegate)callback {
|
||||
callback(_treeStack.lastObject);
|
||||
[_treeStack removeAllObjects];
|
||||
}
|
||||
|
||||
- (BOOL)containedIn:(CGRect)bounds {
|
||||
|
|
|
@ -23,6 +23,30 @@ FB_LINKABLE(UIView_SKInvalidation)
|
|||
[self class], @selector(setHidden:), @selector(swizzle_setHidden:));
|
||||
swizzleMethods(
|
||||
[self class], @selector(addSubview:), @selector(swizzle_addSubview:));
|
||||
swizzleMethods(
|
||||
[self class],
|
||||
@selector(bringSubviewToFront:),
|
||||
@selector(swizzle_bringSubviewToFront:));
|
||||
swizzleMethods(
|
||||
[self class],
|
||||
@selector(sendSubviewToBack:),
|
||||
@selector(swizzle_sendSubviewToBack:));
|
||||
swizzleMethods(
|
||||
[self class],
|
||||
@selector(insertSubview:atIndex:),
|
||||
@selector(swizzle_insertSubview:atIndex:));
|
||||
swizzleMethods(
|
||||
[self class],
|
||||
@selector(insertSubview:aboveSubview:),
|
||||
@selector(swizzle_insertSubview:aboveSubview:));
|
||||
swizzleMethods(
|
||||
[self class],
|
||||
@selector(insertSubview:belowSubview:),
|
||||
@selector(swizzle_insertSubview:belowSubview:));
|
||||
swizzleMethods(
|
||||
[self class],
|
||||
@selector(exchangeSubviewAtIndex:withSubviewAtIndex:),
|
||||
@selector(swizzle_exchangeSubviewAtIndex:withSubviewAtIndex:));
|
||||
swizzleMethods(
|
||||
[self class],
|
||||
@selector(removeFromSuperview),
|
||||
|
@ -30,14 +54,6 @@ FB_LINKABLE(UIView_SKInvalidation)
|
|||
});
|
||||
}
|
||||
|
||||
/**
|
||||
This function takes in a view and returns true if the view is a UIWindow and its
|
||||
windowLevel is an alert one otherwise it returns false.
|
||||
*/
|
||||
static auto shouldInvalidateRootNode(UIView* view) -> bool {
|
||||
return [view isKindOfClass:[UIWindow class]];
|
||||
}
|
||||
|
||||
- (void)swizzle_setHidden:(BOOL)hidden {
|
||||
[self swizzle_setHidden:hidden];
|
||||
|
||||
|
@ -50,30 +66,51 @@ static auto shouldInvalidateRootNode(UIView* view) -> bool {
|
|||
|
||||
- (void)swizzle_addSubview:(UIView*)view {
|
||||
[self swizzle_addSubview:view];
|
||||
[[SKInvalidation sharedInstance].delegate invalidateNode:self];
|
||||
}
|
||||
|
||||
id<SKInvalidationDelegate> delegate =
|
||||
[SKInvalidation sharedInstance].delegate;
|
||||
if (delegate != nil) {
|
||||
if (shouldInvalidateRootNode(view.superview)) {
|
||||
[delegate invalidateRootNode];
|
||||
return;
|
||||
}
|
||||
[delegate invalidateNode:view.superview];
|
||||
}
|
||||
- (void)swizzle_bringSubviewToFront:(UIView*)subview {
|
||||
[self swizzle_bringSubviewToFront:subview];
|
||||
[[SKInvalidation sharedInstance].delegate invalidateNode:self];
|
||||
}
|
||||
|
||||
- (void)swizzle_sendSubviewToBack:(UIView*)subview {
|
||||
[self swizzle_sendSubviewToBack:subview];
|
||||
[[SKInvalidation sharedInstance].delegate invalidateNode:self];
|
||||
}
|
||||
|
||||
- (void)swizzle_insertSubview:(UIView*)subview atIndex:(NSInteger)index {
|
||||
[self swizzle_insertSubview:subview atIndex:index];
|
||||
[[SKInvalidation sharedInstance].delegate invalidateNode:self];
|
||||
}
|
||||
|
||||
- (void)swizzle_insertSubview:(UIView*)subview
|
||||
aboveSubview:(UIView*)siblingSubview {
|
||||
[self swizzle_insertSubview:subview aboveSubview:siblingSubview];
|
||||
[[SKInvalidation sharedInstance].delegate invalidateNode:self];
|
||||
}
|
||||
|
||||
- (void)swizzle_insertSubview:(UIView*)subview
|
||||
belowSubview:(UIView*)siblingSubview {
|
||||
[self swizzle_insertSubview:subview belowSubview:siblingSubview];
|
||||
[[SKInvalidation sharedInstance].delegate invalidateNode:self];
|
||||
}
|
||||
|
||||
- (void)swizzle_exchangeSubviewAtIndex:(NSInteger)index1
|
||||
withSubviewAtIndex:(NSInteger)index2 {
|
||||
[self swizzle_exchangeSubviewAtIndex:index1 withSubviewAtIndex:index2];
|
||||
[[SKInvalidation sharedInstance].delegate invalidateNode:self];
|
||||
}
|
||||
|
||||
- (void)swizzle_removeFromSuperview {
|
||||
id<SKInvalidationDelegate> delegate =
|
||||
[SKInvalidation sharedInstance].delegate;
|
||||
if (delegate != nil && self.superview != nil) {
|
||||
if (shouldInvalidateRootNode(self.superview)) {
|
||||
[delegate invalidateRootNode];
|
||||
return;
|
||||
}
|
||||
[delegate invalidateNode:self.superview];
|
||||
}
|
||||
|
||||
UIView* oldSuperview = self.superview;
|
||||
// Be careful that we always call the swizzled implementation
|
||||
// before any early returns or mischief below!
|
||||
[self swizzle_removeFromSuperview];
|
||||
|
||||
if (oldSuperview) {
|
||||
[[SKInvalidation sharedInstance].delegate invalidateNode:oldSuperview];
|
||||
}
|
||||
}
|
||||
|
||||
@end
|
||||
|
|
|
@ -34,6 +34,7 @@
|
|||
}
|
||||
|
||||
- (void)hitTest:(SKTouch*)touch forNode:(UIApplication*)node {
|
||||
bool finish = true;
|
||||
for (NSInteger index = [self childCountForNode:node] - 1; index >= 0;
|
||||
index--) {
|
||||
UIWindow* child = [self childForNode:node atIndex:index];
|
||||
|
@ -43,11 +44,12 @@
|
|||
|
||||
if ([touch containedIn:child.frame]) {
|
||||
[touch continueWithChildIndex:index withOffset:child.frame.origin];
|
||||
return;
|
||||
finish = false;
|
||||
}
|
||||
}
|
||||
|
||||
[touch finish];
|
||||
if (finish) {
|
||||
[touch finish];
|
||||
}
|
||||
}
|
||||
|
||||
- (NSArray<UIWindow*>*)visibleChildrenForNode:(UIApplication*)node {
|
||||
|
|
|
@ -49,6 +49,7 @@
|
|||
}
|
||||
|
||||
- (void)hitTest:(SKTouch*)touch forNode:(UIScrollView*)node {
|
||||
bool finish = true;
|
||||
for (NSInteger index = [self childCountForNode:node] - 1; index >= 0;
|
||||
index--) {
|
||||
id<NSObject> childNode = [self childForNode:node atIndex:index];
|
||||
|
@ -75,11 +76,13 @@
|
|||
|
||||
if ([touch containedIn:frame]) {
|
||||
[touch continueWithChildIndex:index withOffset:frame.origin];
|
||||
return;
|
||||
finish = false;
|
||||
}
|
||||
}
|
||||
|
||||
[touch finish];
|
||||
if (finish) {
|
||||
[touch finish];
|
||||
}
|
||||
}
|
||||
|
||||
@end
|
||||
|
|
|
@ -497,6 +497,7 @@ return dataMutations;
|
|||
}
|
||||
|
||||
- (void)hitTest:(SKTouch*)touch forNode:(UIView*)node {
|
||||
bool finish = true;
|
||||
for (NSInteger index = [self childCountForNode:node] - 1; index >= 0;
|
||||
index--) {
|
||||
id<NSObject> childNode = [self childForNode:node atIndex:index];
|
||||
|
@ -518,11 +519,13 @@ return dataMutations;
|
|||
|
||||
if ([touch containedIn:viewForNode.frame]) {
|
||||
[touch continueWithChildIndex:index withOffset:viewForNode.frame.origin];
|
||||
return;
|
||||
finish = false;
|
||||
}
|
||||
}
|
||||
|
||||
[touch finish];
|
||||
if (finish) {
|
||||
[touch finish];
|
||||
}
|
||||
}
|
||||
|
||||
static void initEnumDictionaries() {
|
||||
|
|
|
@ -59,7 +59,9 @@
|
|||
NSString* originalStr =
|
||||
[@"comfacebookFlipperKit_" stringByAppendingString:selStr];
|
||||
[invocation setSelector:NSSelectorFromString(originalStr)];
|
||||
block(invocation);
|
||||
if (block != nil) {
|
||||
block(invocation);
|
||||
}
|
||||
} else {
|
||||
((void (*)(id, SEL, NSInvocation*))orig)(this, fwdSel, invocation);
|
||||
}
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
../../../Flipper/xplat/Flipper/FlipperCertificateExchangeMedium.h
|
|
@ -0,0 +1 @@
|
|||
../../../Flipper/xplat/Flipper/FlipperCertificateProvider.h
|
|
@ -0,0 +1 @@
|
|||
../../../FlipperKit/iOS/FlipperKit/FlipperKitCertificateProvider.h
|
|
@ -0,0 +1 @@
|
|||
../../../../../../node_modules/react-native/React/CoreModules/RCTAlertController.h
|
|
@ -0,0 +1 @@
|
|||
../../../Flipper/xplat/Flipper/FlipperCertificateExchangeMedium.h
|
|
@ -0,0 +1 @@
|
|||
../../../Flipper/xplat/Flipper/FlipperCertificateProvider.h
|
|
@ -0,0 +1 @@
|
|||
../../../FlipperKit/iOS/FlipperKit/FlipperKitCertificateProvider.h
|
|
@ -0,0 +1 @@
|
|||
../../../../../../node_modules/react-native/React/CoreModules/RCTAlertController.h
|
|
@ -0,0 +1 @@
|
|||
../../../Target Support Files/React-Core/React-Core-umbrella.h
|
|
@ -0,0 +1 @@
|
|||
../../../Target Support Files/React-Core/React-Core.modulemap
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "FBLazyVector",
|
||||
"version": "0.63.2",
|
||||
"version": "0.63.4",
|
||||
"summary": "-",
|
||||
"homepage": "https://reactnative.dev/",
|
||||
"license": "MIT",
|
||||
|
@ -11,7 +11,7 @@
|
|||
},
|
||||
"source": {
|
||||
"git": "https://github.com/facebook/react-native.git",
|
||||
"tag": "v0.63.2"
|
||||
"tag": "v0.63.4"
|
||||
},
|
||||
"source_files": "**/*.{c,h,m,mm,cpp}",
|
||||
"header_dir": "FBLazyVector"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "FBReactNativeSpec",
|
||||
"version": "0.63.2",
|
||||
"version": "0.63.4",
|
||||
"summary": "-",
|
||||
"homepage": "https://reactnative.dev/",
|
||||
"license": "MIT",
|
||||
|
@ -12,7 +12,7 @@
|
|||
"compiler_flags": "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness",
|
||||
"source": {
|
||||
"git": "https://github.com/facebook/react-native.git",
|
||||
"tag": "v0.63.2"
|
||||
"tag": "v0.63.4"
|
||||
},
|
||||
"source_files": "**/*.{c,h,m,mm,cpp}",
|
||||
"header_dir": "FBReactNativeSpec",
|
||||
|
@ -26,19 +26,19 @@
|
|||
"2020.01.13.00"
|
||||
],
|
||||
"RCTRequired": [
|
||||
"0.63.2"
|
||||
"0.63.4"
|
||||
],
|
||||
"RCTTypeSafety": [
|
||||
"0.63.2"
|
||||
"0.63.4"
|
||||
],
|
||||
"React-Core": [
|
||||
"0.63.2"
|
||||
"0.63.4"
|
||||
],
|
||||
"React-jsi": [
|
||||
"0.63.2"
|
||||
"0.63.4"
|
||||
],
|
||||
"ReactCommon/turbomodule/core": [
|
||||
"0.63.2"
|
||||
"0.63.4"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "RCTRequired",
|
||||
"version": "0.63.2",
|
||||
"version": "0.63.4",
|
||||
"summary": "-",
|
||||
"homepage": "https://reactnative.dev/",
|
||||
"license": "MIT",
|
||||
|
@ -11,7 +11,7 @@
|
|||
},
|
||||
"source": {
|
||||
"git": "https://github.com/facebook/react-native.git",
|
||||
"tag": "v0.63.2"
|
||||
"tag": "v0.63.4"
|
||||
},
|
||||
"source_files": "**/*.{c,h,m,mm,cpp}",
|
||||
"header_dir": "RCTRequired"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "RCTTypeSafety",
|
||||
"version": "0.63.2",
|
||||
"version": "0.63.4",
|
||||
"summary": "-",
|
||||
"homepage": "https://reactnative.dev/",
|
||||
"license": "MIT",
|
||||
|
@ -12,7 +12,7 @@
|
|||
"compiler_flags": "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32",
|
||||
"source": {
|
||||
"git": "https://github.com/facebook/react-native.git",
|
||||
"tag": "v0.63.2"
|
||||
"tag": "v0.63.4"
|
||||
},
|
||||
"source_files": "**/*.{c,h,m,mm,cpp}",
|
||||
"header_dir": "RCTTypeSafety",
|
||||
|
@ -23,16 +23,16 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"FBLazyVector": [
|
||||
"0.63.2"
|
||||
"0.63.4"
|
||||
],
|
||||
"Folly": [
|
||||
"2020.01.13.00"
|
||||
],
|
||||
"RCTRequired": [
|
||||
"0.63.2"
|
||||
"0.63.4"
|
||||
],
|
||||
"React-Core": [
|
||||
"0.63.2"
|
||||
"0.63.4"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "React-Core",
|
||||
"version": "0.63.2",
|
||||
"version": "0.63.4",
|
||||
"summary": "The core of React Native.",
|
||||
"homepage": "https://reactnative.dev/",
|
||||
"license": "MIT",
|
||||
|
@ -11,7 +11,7 @@
|
|||
},
|
||||
"source": {
|
||||
"git": "https://github.com/facebook/react-native.git",
|
||||
"tag": "v0.63.2"
|
||||
"tag": "v0.63.4"
|
||||
},
|
||||
"resource_bundles": {
|
||||
"AccessibilityResources": [
|
||||
|
@ -23,7 +23,8 @@
|
|||
"frameworks": "JavaScriptCore",
|
||||
"libraries": "stdc++",
|
||||
"pod_target_xcconfig": {
|
||||
"HEADER_SEARCH_PATHS": "\"$(PODS_TARGET_SRCROOT)/ReactCommon\" \"$(PODS_ROOT)/boost-for-react-native\" \"$(PODS_ROOT)/DoubleConversion\" \"$(PODS_ROOT)/Folly\""
|
||||
"HEADER_SEARCH_PATHS": "\"$(PODS_TARGET_SRCROOT)/ReactCommon\" \"$(PODS_ROOT)/boost-for-react-native\" \"$(PODS_ROOT)/DoubleConversion\" \"$(PODS_ROOT)/Folly\"",
|
||||
"DEFINES_MODULE": "YES"
|
||||
},
|
||||
"user_target_xcconfig": {
|
||||
"HEADER_SEARCH_PATHS": "\"$(PODS_ROOT)/Headers/Private/React-Core\""
|
||||
|
@ -34,13 +35,13 @@
|
|||
"2020.01.13.00"
|
||||
],
|
||||
"React-cxxreact": [
|
||||
"0.63.2"
|
||||
"0.63.4"
|
||||
],
|
||||
"React-jsi": [
|
||||
"0.63.2"
|
||||
"0.63.4"
|
||||
],
|
||||
"React-jsiexecutor": [
|
||||
"0.63.2"
|
||||
"0.63.4"
|
||||
],
|
||||
"Yoga": [
|
||||
|
||||
|
@ -83,13 +84,13 @@
|
|||
],
|
||||
"dependencies": {
|
||||
"React-Core/Default": [
|
||||
"0.63.2"
|
||||
"0.63.4"
|
||||
],
|
||||
"React-Core/RCTWebSocket": [
|
||||
"0.63.2"
|
||||
"0.63.4"
|
||||
],
|
||||
"React-jsinspector": [
|
||||
"0.63.2"
|
||||
"0.63.4"
|
||||
]
|
||||
}
|
||||
},
|
||||
|
@ -98,7 +99,7 @@
|
|||
"source_files": "Libraries/WebSocket/*.{h,m}",
|
||||
"dependencies": {
|
||||
"React-Core/Default": [
|
||||
"0.63.2"
|
||||
"0.63.4"
|
||||
]
|
||||
}
|
||||
},
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "React-CoreModules",
|
||||
"version": "0.63.2",
|
||||
"version": "0.63.4",
|
||||
"summary": "-",
|
||||
"homepage": "https://reactnative.dev/",
|
||||
"license": "MIT",
|
||||
|
@ -12,7 +12,7 @@
|
|||
"compiler_flags": "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness",
|
||||
"source": {
|
||||
"git": "https://github.com/facebook/react-native.git",
|
||||
"tag": "v0.63.2"
|
||||
"tag": "v0.63.4"
|
||||
},
|
||||
"source_files": "**/*.{c,m,mm,cpp}",
|
||||
"header_dir": "CoreModules",
|
||||
|
@ -23,25 +23,25 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"FBReactNativeSpec": [
|
||||
"0.63.2"
|
||||
"0.63.4"
|
||||
],
|
||||
"Folly": [
|
||||
"2020.01.13.00"
|
||||
],
|
||||
"RCTTypeSafety": [
|
||||
"0.63.2"
|
||||
"0.63.4"
|
||||
],
|
||||
"React-Core/CoreModulesHeaders": [
|
||||
"0.63.2"
|
||||
"0.63.4"
|
||||
],
|
||||
"React-RCTImage": [
|
||||
"0.63.2"
|
||||
"0.63.4"
|
||||
],
|
||||
"ReactCommon/turbomodule/core": [
|
||||
"0.63.2"
|
||||
"0.63.4"
|
||||
],
|
||||
"React-jsi": [
|
||||
"0.63.2"
|
||||
"0.63.4"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "React-RCTActionSheet",
|
||||
"version": "0.63.2",
|
||||
"version": "0.63.4",
|
||||
"summary": "An API for displaying iOS action sheets and share sheets.",
|
||||
"homepage": "https://reactnative.dev/",
|
||||
"documentation_url": "https://reactnative.dev/docs/actionsheetios",
|
||||
|
@ -12,7 +12,7 @@
|
|||
},
|
||||
"source": {
|
||||
"git": "https://github.com/facebook/react-native.git",
|
||||
"tag": "v0.63.2"
|
||||
"tag": "v0.63.4"
|
||||
},
|
||||
"source_files": "*.{m}",
|
||||
"preserve_paths": [
|
||||
|
@ -23,7 +23,7 @@
|
|||
"header_dir": "RCTActionSheet",
|
||||
"dependencies": {
|
||||
"React-Core/RCTActionSheetHeaders": [
|
||||
"0.63.2"
|
||||
"0.63.4"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "React-RCTAnimation",
|
||||
"version": "0.63.2",
|
||||
"version": "0.63.4",
|
||||
"summary": "A native driver for the Animated API.",
|
||||
"homepage": "https://reactnative.dev/",
|
||||
"license": "MIT",
|
||||
|
@ -12,7 +12,7 @@
|
|||
"compiler_flags": "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness",
|
||||
"source": {
|
||||
"git": "https://github.com/facebook/react-native.git",
|
||||
"tag": "v0.63.2"
|
||||
"tag": "v0.63.4"
|
||||
},
|
||||
"source_files": "{Drivers/*,Nodes/*,*}.{m,mm}",
|
||||
"preserve_paths": [
|
||||
|
@ -31,19 +31,19 @@
|
|||
"2020.01.13.00"
|
||||
],
|
||||
"RCTTypeSafety": [
|
||||
"0.63.2"
|
||||
"0.63.4"
|
||||
],
|
||||
"ReactCommon/turbomodule/core": [
|
||||
"0.63.2"
|
||||
"0.63.4"
|
||||
],
|
||||
"React-jsi": [
|
||||
"0.63.2"
|
||||
"0.63.4"
|
||||
],
|
||||
"FBReactNativeSpec": [
|
||||
"0.63.2"
|
||||
"0.63.4"
|
||||
],
|
||||
"React-Core/RCTAnimationHeaders": [
|
||||
"0.63.2"
|
||||
"0.63.4"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "React-RCTBlob",
|
||||
"version": "0.63.2",
|
||||
"version": "0.63.4",
|
||||
"summary": "An API for displaying iOS action sheets and share sheets.",
|
||||
"homepage": "https://reactnative.dev/",
|
||||
"license": "MIT",
|
||||
|
@ -12,7 +12,7 @@
|
|||
"compiler_flags": "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness",
|
||||
"source": {
|
||||
"git": "https://github.com/facebook/react-native.git",
|
||||
"tag": "v0.63.2"
|
||||
"tag": "v0.63.4"
|
||||
},
|
||||
"source_files": "*.{m,mm}",
|
||||
"preserve_paths": [
|
||||
|
@ -31,22 +31,22 @@
|
|||
"2020.01.13.00"
|
||||
],
|
||||
"FBReactNativeSpec": [
|
||||
"0.63.2"
|
||||
"0.63.4"
|
||||
],
|
||||
"ReactCommon/turbomodule/core": [
|
||||
"0.63.2"
|
||||
"0.63.4"
|
||||
],
|
||||
"React-jsi": [
|
||||
"0.63.2"
|
||||
"0.63.4"
|
||||
],
|
||||
"React-Core/RCTBlobHeaders": [
|
||||
"0.63.2"
|
||||
"0.63.4"
|
||||
],
|
||||
"React-Core/RCTWebSocket": [
|
||||
"0.63.2"
|
||||
"0.63.4"
|
||||
],
|
||||
"React-RCTNetwork": [
|
||||
"0.63.2"
|
||||
"0.63.4"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "React-RCTImage",
|
||||
"version": "0.63.2",
|
||||
"version": "0.63.4",
|
||||
"summary": "A React component for displaying different types of images.",
|
||||
"homepage": "https://reactnative.dev/",
|
||||
"documentation_url": "https://reactnative.dev/docs/image",
|
||||
|
@ -13,7 +13,7 @@
|
|||
"compiler_flags": "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness",
|
||||
"source": {
|
||||
"git": "https://github.com/facebook/react-native.git",
|
||||
"tag": "v0.63.2"
|
||||
"tag": "v0.63.4"
|
||||
},
|
||||
"source_files": "*.{m,mm}",
|
||||
"preserve_paths": [
|
||||
|
@ -32,22 +32,22 @@
|
|||
"2020.01.13.00"
|
||||
],
|
||||
"FBReactNativeSpec": [
|
||||
"0.63.2"
|
||||
"0.63.4"
|
||||
],
|
||||
"RCTTypeSafety": [
|
||||
"0.63.2"
|
||||
"0.63.4"
|
||||
],
|
||||
"ReactCommon/turbomodule/core": [
|
||||
"0.63.2"
|
||||
"0.63.4"
|
||||
],
|
||||
"React-jsi": [
|
||||
"0.63.2"
|
||||
"0.63.4"
|
||||
],
|
||||
"React-Core/RCTImageHeaders": [
|
||||
"0.63.2"
|
||||
"0.63.4"
|
||||
],
|
||||
"React-RCTNetwork": [
|
||||
"0.63.2"
|
||||
"0.63.4"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "React-RCTLinking",
|
||||
"version": "0.63.2",
|
||||
"version": "0.63.4",
|
||||
"summary": "A general interface to interact with both incoming and outgoing app links.",
|
||||
"homepage": "https://reactnative.dev/",
|
||||
"documentation_url": "https://reactnative.dev/docs/linking",
|
||||
|
@ -13,7 +13,7 @@
|
|||
"compiler_flags": "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness",
|
||||
"source": {
|
||||
"git": "https://github.com/facebook/react-native.git",
|
||||
"tag": "v0.63.2"
|
||||
"tag": "v0.63.4"
|
||||
},
|
||||
"source_files": "*.{m,mm}",
|
||||
"preserve_paths": [
|
||||
|
@ -29,16 +29,16 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"FBReactNativeSpec": [
|
||||
"0.63.2"
|
||||
"0.63.4"
|
||||
],
|
||||
"React-Core/RCTLinkingHeaders": [
|
||||
"0.63.2"
|
||||
"0.63.4"
|
||||
],
|
||||
"ReactCommon/turbomodule/core": [
|
||||
"0.63.2"
|
||||
"0.63.4"
|
||||
],
|
||||
"React-jsi": [
|
||||
"0.63.2"
|
||||
"0.63.4"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "React-RCTNetwork",
|
||||
"version": "0.63.2",
|
||||
"version": "0.63.4",
|
||||
"summary": "The networking library of React Native.",
|
||||
"homepage": "https://reactnative.dev/",
|
||||
"license": "MIT",
|
||||
|
@ -12,7 +12,7 @@
|
|||
"compiler_flags": "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness",
|
||||
"source": {
|
||||
"git": "https://github.com/facebook/react-native.git",
|
||||
"tag": "v0.63.2"
|
||||
"tag": "v0.63.4"
|
||||
},
|
||||
"source_files": "*.{m,mm}",
|
||||
"preserve_paths": [
|
||||
|
@ -32,19 +32,19 @@
|
|||
"2020.01.13.00"
|
||||
],
|
||||
"FBReactNativeSpec": [
|
||||
"0.63.2"
|
||||
"0.63.4"
|
||||
],
|
||||
"RCTTypeSafety": [
|
||||
"0.63.2"
|
||||
"0.63.4"
|
||||
],
|
||||
"ReactCommon/turbomodule/core": [
|
||||
"0.63.2"
|
||||
"0.63.4"
|
||||
],
|
||||
"React-jsi": [
|
||||
"0.63.2"
|
||||
"0.63.4"
|
||||
],
|
||||
"React-Core/RCTNetworkHeaders": [
|
||||
"0.63.2"
|
||||
"0.63.4"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "React-RCTSettings",
|
||||
"version": "0.63.2",
|
||||
"version": "0.63.4",
|
||||
"summary": "A wrapper for NSUserDefaults, a persistent key-value store available only on iOS.",
|
||||
"homepage": "https://reactnative.dev/",
|
||||
"documentation_url": "https://reactnative.dev/docs/settings",
|
||||
|
@ -13,7 +13,7 @@
|
|||
"compiler_flags": "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness",
|
||||
"source": {
|
||||
"git": "https://github.com/facebook/react-native.git",
|
||||
"tag": "v0.63.2"
|
||||
"tag": "v0.63.4"
|
||||
},
|
||||
"source_files": "*.{m,mm}",
|
||||
"preserve_paths": [
|
||||
|
@ -32,19 +32,19 @@
|
|||
"2020.01.13.00"
|
||||
],
|
||||
"FBReactNativeSpec": [
|
||||
"0.63.2"
|
||||
"0.63.4"
|
||||
],
|
||||
"RCTTypeSafety": [
|
||||
"0.63.2"
|
||||
"0.63.4"
|
||||
],
|
||||
"ReactCommon/turbomodule/core": [
|
||||
"0.63.2"
|
||||
"0.63.4"
|
||||
],
|
||||
"React-jsi": [
|
||||
"0.63.2"
|
||||
"0.63.4"
|
||||
],
|
||||
"React-Core/RCTSettingsHeaders": [
|
||||
"0.63.2"
|
||||
"0.63.4"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "React-RCTText",
|
||||
"version": "0.63.2",
|
||||
"version": "0.63.4",
|
||||
"summary": "A React component for displaying text.",
|
||||
"homepage": "https://reactnative.dev/",
|
||||
"documentation_url": "https://reactnative.dev/docs/text",
|
||||
|
@ -12,7 +12,7 @@
|
|||
},
|
||||
"source": {
|
||||
"git": "https://github.com/facebook/react-native.git",
|
||||
"tag": "v0.63.2"
|
||||
"tag": "v0.63.4"
|
||||
},
|
||||
"source_files": "**/*.{h,m}",
|
||||
"preserve_paths": [
|
||||
|
@ -23,7 +23,7 @@
|
|||
"header_dir": "RCTText",
|
||||
"dependencies": {
|
||||
"React-Core/RCTTextHeaders": [
|
||||
"0.63.2"
|
||||
"0.63.4"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "React-RCTVibration",
|
||||
"version": "0.63.2",
|
||||
"version": "0.63.4",
|
||||
"summary": "An API for controlling the vibration hardware of the device.",
|
||||
"homepage": "https://reactnative.dev/",
|
||||
"documentation_url": "https://reactnative.dev/docs/vibration",
|
||||
|
@ -13,7 +13,7 @@
|
|||
"compiler_flags": "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness",
|
||||
"source": {
|
||||
"git": "https://github.com/facebook/react-native.git",
|
||||
"tag": "v0.63.2"
|
||||
"tag": "v0.63.4"
|
||||
},
|
||||
"source_files": "*.{m,mm}",
|
||||
"preserve_paths": [
|
||||
|
@ -33,16 +33,16 @@
|
|||
"2020.01.13.00"
|
||||
],
|
||||
"FBReactNativeSpec": [
|
||||
"0.63.2"
|
||||
"0.63.4"
|
||||
],
|
||||
"ReactCommon/turbomodule/core": [
|
||||
"0.63.2"
|
||||
"0.63.4"
|
||||
],
|
||||
"React-jsi": [
|
||||
"0.63.2"
|
||||
"0.63.4"
|
||||
],
|
||||
"React-Core/RCTVibrationHeaders": [
|
||||
"0.63.2"
|
||||
"0.63.4"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "React-callinvoker",
|
||||
"version": "0.63.2",
|
||||
"version": "0.63.4",
|
||||
"summary": "-",
|
||||
"homepage": "https://reactnative.dev/",
|
||||
"license": "MIT",
|
||||
|
@ -11,7 +11,7 @@
|
|||
},
|
||||
"source": {
|
||||
"git": "https://github.com/facebook/react-native.git",
|
||||
"tag": "v0.63.2"
|
||||
"tag": "v0.63.4"
|
||||
},
|
||||
"source_files": "**/*.{cpp,h}",
|
||||
"header_dir": "ReactCommon"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "React-cxxreact",
|
||||
"version": "0.63.2",
|
||||
"version": "0.63.4",
|
||||
"summary": "-",
|
||||
"homepage": "https://reactnative.dev/",
|
||||
"license": "MIT",
|
||||
|
@ -11,7 +11,7 @@
|
|||
},
|
||||
"source": {
|
||||
"git": "https://github.com/facebook/react-native.git",
|
||||
"tag": "v0.63.2"
|
||||
"tag": "v0.63.4"
|
||||
},
|
||||
"source_files": "*.{cpp,h}",
|
||||
"exclude_files": "SampleCxxModule.*",
|
||||
|
@ -34,10 +34,10 @@
|
|||
|
||||
],
|
||||
"React-jsinspector": [
|
||||
"0.63.2"
|
||||
"0.63.4"
|
||||
],
|
||||
"React-callinvoker": [
|
||||
"0.63.2"
|
||||
"0.63.4"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "React-jsi",
|
||||
"version": "0.63.2",
|
||||
"version": "0.63.4",
|
||||
"summary": "-",
|
||||
"homepage": "https://reactnative.dev/",
|
||||
"license": "MIT",
|
||||
|
@ -11,7 +11,7 @@
|
|||
},
|
||||
"source": {
|
||||
"git": "https://github.com/facebook/react-native.git",
|
||||
"tag": "v0.63.2"
|
||||
"tag": "v0.63.4"
|
||||
},
|
||||
"source_files": "**/*.{cpp,h}",
|
||||
"exclude_files": "**/test/*",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "React-jsiexecutor",
|
||||
"version": "0.63.2",
|
||||
"version": "0.63.4",
|
||||
"summary": "-",
|
||||
"homepage": "https://reactnative.dev/",
|
||||
"license": "MIT",
|
||||
|
@ -11,7 +11,7 @@
|
|||
},
|
||||
"source": {
|
||||
"git": "https://github.com/facebook/react-native.git",
|
||||
"tag": "v0.63.2"
|
||||
"tag": "v0.63.4"
|
||||
},
|
||||
"source_files": "jsireact/*.{cpp,h}",
|
||||
"compiler_flags": "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation",
|
||||
|
@ -21,10 +21,10 @@
|
|||
"header_dir": "jsireact",
|
||||
"dependencies": {
|
||||
"React-cxxreact": [
|
||||
"0.63.2"
|
||||
"0.63.4"
|
||||
],
|
||||
"React-jsi": [
|
||||
"0.63.2"
|
||||
"0.63.4"
|
||||
],
|
||||
"Folly": [
|
||||
"2020.01.13.00"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "React-jsinspector",
|
||||
"version": "0.63.2",
|
||||
"version": "0.63.4",
|
||||
"summary": "-",
|
||||
"homepage": "https://reactnative.dev/",
|
||||
"license": "MIT",
|
||||
|
@ -11,7 +11,7 @@
|
|||
},
|
||||
"source": {
|
||||
"git": "https://github.com/facebook/react-native.git",
|
||||
"tag": "v0.63.2"
|
||||
"tag": "v0.63.4"
|
||||
},
|
||||
"source_files": "*.{cpp,h}",
|
||||
"header_dir": "jsinspector"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "React",
|
||||
"version": "0.63.2",
|
||||
"version": "0.63.4",
|
||||
"summary": "A framework for building native apps using React",
|
||||
"description": "React Native apps are built using the React JS\nframework, and render directly to native UIKit\nelements using a fully asynchronous architecture.\nThere is no browser and no HTML. We have picked what\nwe think is the best set of features from these and\nother technologies to build what we hope to become\nthe best product development framework available,\nwith an emphasis on iteration speed, developer\ndelight, continuity of technology, and absolutely\nbeautiful and fast products with no compromises in\nquality or capability.",
|
||||
"homepage": "https://reactnative.dev/",
|
||||
|
@ -12,7 +12,7 @@
|
|||
},
|
||||
"source": {
|
||||
"git": "https://github.com/facebook/react-native.git",
|
||||
"tag": "v0.63.2"
|
||||
"tag": "v0.63.4"
|
||||
},
|
||||
"preserve_paths": [
|
||||
"package.json",
|
||||
|
@ -22,40 +22,40 @@
|
|||
"cocoapods_version": ">= 1.2.0",
|
||||
"dependencies": {
|
||||
"React-Core": [
|
||||
"0.63.2"
|
||||
"0.63.4"
|
||||
],
|
||||
"React-Core/DevSupport": [
|
||||
"0.63.2"
|
||||
"0.63.4"
|
||||
],
|
||||
"React-Core/RCTWebSocket": [
|
||||
"0.63.2"
|
||||
"0.63.4"
|
||||
],
|
||||
"React-RCTActionSheet": [
|
||||
"0.63.2"
|
||||
"0.63.4"
|
||||
],
|
||||
"React-RCTAnimation": [
|
||||
"0.63.2"
|
||||
"0.63.4"
|
||||
],
|
||||
"React-RCTBlob": [
|
||||
"0.63.2"
|
||||
"0.63.4"
|
||||
],
|
||||
"React-RCTImage": [
|
||||
"0.63.2"
|
||||
"0.63.4"
|
||||
],
|
||||
"React-RCTLinking": [
|
||||
"0.63.2"
|
||||
"0.63.4"
|
||||
],
|
||||
"React-RCTNetwork": [
|
||||
"0.63.2"
|
||||
"0.63.4"
|
||||
],
|
||||
"React-RCTSettings": [
|
||||
"0.63.2"
|
||||
"0.63.4"
|
||||
],
|
||||
"React-RCTText": [
|
||||
"0.63.2"
|
||||
"0.63.4"
|
||||
],
|
||||
"React-RCTVibration": [
|
||||
"0.63.2"
|
||||
"0.63.4"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "ReactCommon",
|
||||
"module_name": "ReactCommon",
|
||||
"version": "0.63.2",
|
||||
"version": "0.63.4",
|
||||
"summary": "-",
|
||||
"homepage": "https://reactnative.dev/",
|
||||
"license": "MIT",
|
||||
|
@ -12,7 +12,7 @@
|
|||
},
|
||||
"source": {
|
||||
"git": "https://github.com/facebook/react-native.git",
|
||||
"tag": "v0.63.2"
|
||||
"tag": "v0.63.4"
|
||||
},
|
||||
"header_dir": "ReactCommon",
|
||||
"compiler_flags": "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation",
|
||||
|
@ -26,16 +26,16 @@
|
|||
"name": "turbomodule",
|
||||
"dependencies": {
|
||||
"React-callinvoker": [
|
||||
"0.63.2"
|
||||
"0.63.4"
|
||||
],
|
||||
"React-Core": [
|
||||
"0.63.2"
|
||||
"0.63.4"
|
||||
],
|
||||
"React-cxxreact": [
|
||||
"0.63.2"
|
||||
"0.63.4"
|
||||
],
|
||||
"React-jsi": [
|
||||
"0.63.2"
|
||||
"0.63.4"
|
||||
],
|
||||
"Folly": [
|
||||
"2020.01.13.00"
|
||||
|
@ -63,7 +63,7 @@
|
|||
],
|
||||
"dependencies": {
|
||||
"ReactCommon/turbomodule/core": [
|
||||
"0.63.2"
|
||||
"0.63.4"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
"authors": "Facebook",
|
||||
"source": {
|
||||
"git": "https://github.com/facebook/react-native.git",
|
||||
"tag": "v0.63.2"
|
||||
"tag": "v0.63.4"
|
||||
},
|
||||
"module_name": "yoga",
|
||||
"header_dir": "yoga",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "react-native-cameraroll",
|
||||
"version": "4.0.0",
|
||||
"version": "4.0.1",
|
||||
"summary": "React Native Camera Roll for iOS & Android",
|
||||
"license": "MIT",
|
||||
"authors": "Bartol Karuza <bartol.k@gmail.com>",
|
||||
|
@ -10,7 +10,7 @@
|
|||
},
|
||||
"source": {
|
||||
"git": "https://github.com/react-native-community/react-native-cameraroll.git",
|
||||
"tag": "v4.0.0"
|
||||
"tag": "v4.0.1"
|
||||
},
|
||||
"source_files": "ios/**/*.{h,m}",
|
||||
"dependencies": {
|
||||
|
|
|
@ -39,14 +39,14 @@ PODS:
|
|||
- UMFileSystemInterface
|
||||
- EXWebBrowser (8.3.1):
|
||||
- UMCore
|
||||
- FBLazyVector (0.63.2)
|
||||
- FBReactNativeSpec (0.63.2):
|
||||
- FBLazyVector (0.63.4)
|
||||
- FBReactNativeSpec (0.63.4):
|
||||
- Folly (= 2020.01.13.00)
|
||||
- RCTRequired (= 0.63.2)
|
||||
- RCTTypeSafety (= 0.63.2)
|
||||
- React-Core (= 0.63.2)
|
||||
- React-jsi (= 0.63.2)
|
||||
- ReactCommon/turbomodule/core (= 0.63.2)
|
||||
- RCTRequired (= 0.63.4)
|
||||
- RCTTypeSafety (= 0.63.4)
|
||||
- React-Core (= 0.63.4)
|
||||
- React-jsi (= 0.63.4)
|
||||
- ReactCommon/turbomodule/core (= 0.63.4)
|
||||
- Firebase/Analytics (6.27.1):
|
||||
- Firebase/Core
|
||||
- Firebase/Core (6.27.1):
|
||||
|
@ -87,7 +87,7 @@ PODS:
|
|||
- GoogleUtilities/Environment (~> 6.7)
|
||||
- GoogleUtilities/UserDefaults (~> 6.7)
|
||||
- PromisesObjC (~> 1.2)
|
||||
- Flipper (0.41.5):
|
||||
- Flipper (0.54.0):
|
||||
- Flipper-Folly (~> 2.2)
|
||||
- Flipper-RSocket (~> 1.1)
|
||||
- Flipper-DoubleConversion (1.1.7)
|
||||
|
@ -101,36 +101,36 @@ PODS:
|
|||
- Flipper-PeerTalk (0.0.4)
|
||||
- Flipper-RSocket (1.1.0):
|
||||
- Flipper-Folly (~> 2.2)
|
||||
- FlipperKit (0.41.5):
|
||||
- FlipperKit/Core (= 0.41.5)
|
||||
- FlipperKit/Core (0.41.5):
|
||||
- Flipper (~> 0.41.5)
|
||||
- FlipperKit (0.54.0):
|
||||
- FlipperKit/Core (= 0.54.0)
|
||||
- FlipperKit/Core (0.54.0):
|
||||
- Flipper (~> 0.54.0)
|
||||
- FlipperKit/CppBridge
|
||||
- FlipperKit/FBCxxFollyDynamicConvert
|
||||
- FlipperKit/FBDefines
|
||||
- FlipperKit/FKPortForwarding
|
||||
- FlipperKit/CppBridge (0.41.5):
|
||||
- Flipper (~> 0.41.5)
|
||||
- FlipperKit/FBCxxFollyDynamicConvert (0.41.5):
|
||||
- FlipperKit/CppBridge (0.54.0):
|
||||
- Flipper (~> 0.54.0)
|
||||
- FlipperKit/FBCxxFollyDynamicConvert (0.54.0):
|
||||
- Flipper-Folly (~> 2.2)
|
||||
- FlipperKit/FBDefines (0.41.5)
|
||||
- FlipperKit/FKPortForwarding (0.41.5):
|
||||
- FlipperKit/FBDefines (0.54.0)
|
||||
- FlipperKit/FKPortForwarding (0.54.0):
|
||||
- CocoaAsyncSocket (~> 7.6)
|
||||
- Flipper-PeerTalk (~> 0.0.4)
|
||||
- FlipperKit/FlipperKitHighlightOverlay (0.41.5)
|
||||
- FlipperKit/FlipperKitLayoutPlugin (0.41.5):
|
||||
- FlipperKit/FlipperKitHighlightOverlay (0.54.0)
|
||||
- FlipperKit/FlipperKitLayoutPlugin (0.54.0):
|
||||
- FlipperKit/Core
|
||||
- FlipperKit/FlipperKitHighlightOverlay
|
||||
- FlipperKit/FlipperKitLayoutTextSearchable
|
||||
- YogaKit (~> 1.18)
|
||||
- FlipperKit/FlipperKitLayoutTextSearchable (0.41.5)
|
||||
- FlipperKit/FlipperKitNetworkPlugin (0.41.5):
|
||||
- FlipperKit/FlipperKitLayoutTextSearchable (0.54.0)
|
||||
- FlipperKit/FlipperKitNetworkPlugin (0.54.0):
|
||||
- FlipperKit/Core
|
||||
- FlipperKit/FlipperKitReactPlugin (0.41.5):
|
||||
- FlipperKit/FlipperKitReactPlugin (0.54.0):
|
||||
- FlipperKit/Core
|
||||
- FlipperKit/FlipperKitUserDefaultsPlugin (0.41.5):
|
||||
- FlipperKit/FlipperKitUserDefaultsPlugin (0.54.0):
|
||||
- FlipperKit/Core
|
||||
- FlipperKit/SKIOSNetworkPlugin (0.41.5):
|
||||
- FlipperKit/SKIOSNetworkPlugin (0.54.0):
|
||||
- FlipperKit/Core
|
||||
- FlipperKit/FlipperKitNetworkPlugin
|
||||
- Folly (2020.01.13.00):
|
||||
|
@ -196,179 +196,179 @@ PODS:
|
|||
- OpenSSL-Universal/Static (= 1.0.2.19)
|
||||
- OpenSSL-Universal/Static (1.0.2.19)
|
||||
- PromisesObjC (1.2.9)
|
||||
- RCTRequired (0.63.2)
|
||||
- RCTTypeSafety (0.63.2):
|
||||
- FBLazyVector (= 0.63.2)
|
||||
- RCTRequired (0.63.4)
|
||||
- RCTTypeSafety (0.63.4):
|
||||
- FBLazyVector (= 0.63.4)
|
||||
- Folly (= 2020.01.13.00)
|
||||
- RCTRequired (= 0.63.2)
|
||||
- React-Core (= 0.63.2)
|
||||
- React (0.63.2):
|
||||
- React-Core (= 0.63.2)
|
||||
- React-Core/DevSupport (= 0.63.2)
|
||||
- React-Core/RCTWebSocket (= 0.63.2)
|
||||
- React-RCTActionSheet (= 0.63.2)
|
||||
- React-RCTAnimation (= 0.63.2)
|
||||
- React-RCTBlob (= 0.63.2)
|
||||
- React-RCTImage (= 0.63.2)
|
||||
- React-RCTLinking (= 0.63.2)
|
||||
- React-RCTNetwork (= 0.63.2)
|
||||
- React-RCTSettings (= 0.63.2)
|
||||
- React-RCTText (= 0.63.2)
|
||||
- React-RCTVibration (= 0.63.2)
|
||||
- React-callinvoker (0.63.2)
|
||||
- React-Core (0.63.2):
|
||||
- RCTRequired (= 0.63.4)
|
||||
- React-Core (= 0.63.4)
|
||||
- React (0.63.4):
|
||||
- React-Core (= 0.63.4)
|
||||
- React-Core/DevSupport (= 0.63.4)
|
||||
- React-Core/RCTWebSocket (= 0.63.4)
|
||||
- React-RCTActionSheet (= 0.63.4)
|
||||
- React-RCTAnimation (= 0.63.4)
|
||||
- React-RCTBlob (= 0.63.4)
|
||||
- React-RCTImage (= 0.63.4)
|
||||
- React-RCTLinking (= 0.63.4)
|
||||
- React-RCTNetwork (= 0.63.4)
|
||||
- React-RCTSettings (= 0.63.4)
|
||||
- React-RCTText (= 0.63.4)
|
||||
- React-RCTVibration (= 0.63.4)
|
||||
- React-callinvoker (0.63.4)
|
||||
- React-Core (0.63.4):
|
||||
- Folly (= 2020.01.13.00)
|
||||
- glog
|
||||
- React-Core/Default (= 0.63.2)
|
||||
- React-cxxreact (= 0.63.2)
|
||||
- React-jsi (= 0.63.2)
|
||||
- React-jsiexecutor (= 0.63.2)
|
||||
- React-Core/Default (= 0.63.4)
|
||||
- React-cxxreact (= 0.63.4)
|
||||
- React-jsi (= 0.63.4)
|
||||
- React-jsiexecutor (= 0.63.4)
|
||||
- Yoga
|
||||
- React-Core/CoreModulesHeaders (0.63.2):
|
||||
- React-Core/CoreModulesHeaders (0.63.4):
|
||||
- Folly (= 2020.01.13.00)
|
||||
- glog
|
||||
- React-Core/Default
|
||||
- React-cxxreact (= 0.63.2)
|
||||
- React-jsi (= 0.63.2)
|
||||
- React-jsiexecutor (= 0.63.2)
|
||||
- React-cxxreact (= 0.63.4)
|
||||
- React-jsi (= 0.63.4)
|
||||
- React-jsiexecutor (= 0.63.4)
|
||||
- Yoga
|
||||
- React-Core/Default (0.63.2):
|
||||
- React-Core/Default (0.63.4):
|
||||
- Folly (= 2020.01.13.00)
|
||||
- glog
|
||||
- React-cxxreact (= 0.63.2)
|
||||
- React-jsi (= 0.63.2)
|
||||
- React-jsiexecutor (= 0.63.2)
|
||||
- React-cxxreact (= 0.63.4)
|
||||
- React-jsi (= 0.63.4)
|
||||
- React-jsiexecutor (= 0.63.4)
|
||||
- Yoga
|
||||
- React-Core/DevSupport (0.63.2):
|
||||
- React-Core/DevSupport (0.63.4):
|
||||
- Folly (= 2020.01.13.00)
|
||||
- glog
|
||||
- React-Core/Default (= 0.63.2)
|
||||
- React-Core/RCTWebSocket (= 0.63.2)
|
||||
- React-cxxreact (= 0.63.2)
|
||||
- React-jsi (= 0.63.2)
|
||||
- React-jsiexecutor (= 0.63.2)
|
||||
- React-jsinspector (= 0.63.2)
|
||||
- React-Core/Default (= 0.63.4)
|
||||
- React-Core/RCTWebSocket (= 0.63.4)
|
||||
- React-cxxreact (= 0.63.4)
|
||||
- React-jsi (= 0.63.4)
|
||||
- React-jsiexecutor (= 0.63.4)
|
||||
- React-jsinspector (= 0.63.4)
|
||||
- Yoga
|
||||
- React-Core/RCTActionSheetHeaders (0.63.2):
|
||||
- React-Core/RCTActionSheetHeaders (0.63.4):
|
||||
- Folly (= 2020.01.13.00)
|
||||
- glog
|
||||
- React-Core/Default
|
||||
- React-cxxreact (= 0.63.2)
|
||||
- React-jsi (= 0.63.2)
|
||||
- React-jsiexecutor (= 0.63.2)
|
||||
- React-cxxreact (= 0.63.4)
|
||||
- React-jsi (= 0.63.4)
|
||||
- React-jsiexecutor (= 0.63.4)
|
||||
- Yoga
|
||||
- React-Core/RCTAnimationHeaders (0.63.2):
|
||||
- React-Core/RCTAnimationHeaders (0.63.4):
|
||||
- Folly (= 2020.01.13.00)
|
||||
- glog
|
||||
- React-Core/Default
|
||||
- React-cxxreact (= 0.63.2)
|
||||
- React-jsi (= 0.63.2)
|
||||
- React-jsiexecutor (= 0.63.2)
|
||||
- React-cxxreact (= 0.63.4)
|
||||
- React-jsi (= 0.63.4)
|
||||
- React-jsiexecutor (= 0.63.4)
|
||||
- Yoga
|
||||
- React-Core/RCTBlobHeaders (0.63.2):
|
||||
- React-Core/RCTBlobHeaders (0.63.4):
|
||||
- Folly (= 2020.01.13.00)
|
||||
- glog
|
||||
- React-Core/Default
|
||||
- React-cxxreact (= 0.63.2)
|
||||
- React-jsi (= 0.63.2)
|
||||
- React-jsiexecutor (= 0.63.2)
|
||||
- React-cxxreact (= 0.63.4)
|
||||
- React-jsi (= 0.63.4)
|
||||
- React-jsiexecutor (= 0.63.4)
|
||||
- Yoga
|
||||
- React-Core/RCTImageHeaders (0.63.2):
|
||||
- React-Core/RCTImageHeaders (0.63.4):
|
||||
- Folly (= 2020.01.13.00)
|
||||
- glog
|
||||
- React-Core/Default
|
||||
- React-cxxreact (= 0.63.2)
|
||||
- React-jsi (= 0.63.2)
|
||||
- React-jsiexecutor (= 0.63.2)
|
||||
- React-cxxreact (= 0.63.4)
|
||||
- React-jsi (= 0.63.4)
|
||||
- React-jsiexecutor (= 0.63.4)
|
||||
- Yoga
|
||||
- React-Core/RCTLinkingHeaders (0.63.2):
|
||||
- React-Core/RCTLinkingHeaders (0.63.4):
|
||||
- Folly (= 2020.01.13.00)
|
||||
- glog
|
||||
- React-Core/Default
|
||||
- React-cxxreact (= 0.63.2)
|
||||
- React-jsi (= 0.63.2)
|
||||
- React-jsiexecutor (= 0.63.2)
|
||||
- React-cxxreact (= 0.63.4)
|
||||
- React-jsi (= 0.63.4)
|
||||
- React-jsiexecutor (= 0.63.4)
|
||||
- Yoga
|
||||
- React-Core/RCTNetworkHeaders (0.63.2):
|
||||
- React-Core/RCTNetworkHeaders (0.63.4):
|
||||
- Folly (= 2020.01.13.00)
|
||||
- glog
|
||||
- React-Core/Default
|
||||
- React-cxxreact (= 0.63.2)
|
||||
- React-jsi (= 0.63.2)
|
||||
- React-jsiexecutor (= 0.63.2)
|
||||
- React-cxxreact (= 0.63.4)
|
||||
- React-jsi (= 0.63.4)
|
||||
- React-jsiexecutor (= 0.63.4)
|
||||
- Yoga
|
||||
- React-Core/RCTSettingsHeaders (0.63.2):
|
||||
- React-Core/RCTSettingsHeaders (0.63.4):
|
||||
- Folly (= 2020.01.13.00)
|
||||
- glog
|
||||
- React-Core/Default
|
||||
- React-cxxreact (= 0.63.2)
|
||||
- React-jsi (= 0.63.2)
|
||||
- React-jsiexecutor (= 0.63.2)
|
||||
- React-cxxreact (= 0.63.4)
|
||||
- React-jsi (= 0.63.4)
|
||||
- React-jsiexecutor (= 0.63.4)
|
||||
- Yoga
|
||||
- React-Core/RCTTextHeaders (0.63.2):
|
||||
- React-Core/RCTTextHeaders (0.63.4):
|
||||
- Folly (= 2020.01.13.00)
|
||||
- glog
|
||||
- React-Core/Default
|
||||
- React-cxxreact (= 0.63.2)
|
||||
- React-jsi (= 0.63.2)
|
||||
- React-jsiexecutor (= 0.63.2)
|
||||
- React-cxxreact (= 0.63.4)
|
||||
- React-jsi (= 0.63.4)
|
||||
- React-jsiexecutor (= 0.63.4)
|
||||
- Yoga
|
||||
- React-Core/RCTVibrationHeaders (0.63.2):
|
||||
- React-Core/RCTVibrationHeaders (0.63.4):
|
||||
- Folly (= 2020.01.13.00)
|
||||
- glog
|
||||
- React-Core/Default
|
||||
- React-cxxreact (= 0.63.2)
|
||||
- React-jsi (= 0.63.2)
|
||||
- React-jsiexecutor (= 0.63.2)
|
||||
- React-cxxreact (= 0.63.4)
|
||||
- React-jsi (= 0.63.4)
|
||||
- React-jsiexecutor (= 0.63.4)
|
||||
- Yoga
|
||||
- React-Core/RCTWebSocket (0.63.2):
|
||||
- React-Core/RCTWebSocket (0.63.4):
|
||||
- Folly (= 2020.01.13.00)
|
||||
- glog
|
||||
- React-Core/Default (= 0.63.2)
|
||||
- React-cxxreact (= 0.63.2)
|
||||
- React-jsi (= 0.63.2)
|
||||
- React-jsiexecutor (= 0.63.2)
|
||||
- React-Core/Default (= 0.63.4)
|
||||
- React-cxxreact (= 0.63.4)
|
||||
- React-jsi (= 0.63.4)
|
||||
- React-jsiexecutor (= 0.63.4)
|
||||
- Yoga
|
||||
- React-CoreModules (0.63.2):
|
||||
- FBReactNativeSpec (= 0.63.2)
|
||||
- React-CoreModules (0.63.4):
|
||||
- FBReactNativeSpec (= 0.63.4)
|
||||
- Folly (= 2020.01.13.00)
|
||||
- RCTTypeSafety (= 0.63.2)
|
||||
- React-Core/CoreModulesHeaders (= 0.63.2)
|
||||
- React-jsi (= 0.63.2)
|
||||
- React-RCTImage (= 0.63.2)
|
||||
- ReactCommon/turbomodule/core (= 0.63.2)
|
||||
- React-cxxreact (0.63.2):
|
||||
- RCTTypeSafety (= 0.63.4)
|
||||
- React-Core/CoreModulesHeaders (= 0.63.4)
|
||||
- React-jsi (= 0.63.4)
|
||||
- React-RCTImage (= 0.63.4)
|
||||
- ReactCommon/turbomodule/core (= 0.63.4)
|
||||
- React-cxxreact (0.63.4):
|
||||
- boost-for-react-native (= 1.63.0)
|
||||
- DoubleConversion
|
||||
- Folly (= 2020.01.13.00)
|
||||
- glog
|
||||
- React-callinvoker (= 0.63.2)
|
||||
- React-jsinspector (= 0.63.2)
|
||||
- React-jsi (0.63.2):
|
||||
- React-callinvoker (= 0.63.4)
|
||||
- React-jsinspector (= 0.63.4)
|
||||
- React-jsi (0.63.4):
|
||||
- boost-for-react-native (= 1.63.0)
|
||||
- DoubleConversion
|
||||
- Folly (= 2020.01.13.00)
|
||||
- glog
|
||||
- React-jsi/Default (= 0.63.2)
|
||||
- React-jsi/Default (0.63.2):
|
||||
- React-jsi/Default (= 0.63.4)
|
||||
- React-jsi/Default (0.63.4):
|
||||
- boost-for-react-native (= 1.63.0)
|
||||
- DoubleConversion
|
||||
- Folly (= 2020.01.13.00)
|
||||
- glog
|
||||
- React-jsiexecutor (0.63.2):
|
||||
- React-jsiexecutor (0.63.4):
|
||||
- DoubleConversion
|
||||
- Folly (= 2020.01.13.00)
|
||||
- glog
|
||||
- React-cxxreact (= 0.63.2)
|
||||
- React-jsi (= 0.63.2)
|
||||
- React-jsinspector (0.63.2)
|
||||
- React-cxxreact (= 0.63.4)
|
||||
- React-jsi (= 0.63.4)
|
||||
- React-jsinspector (0.63.4)
|
||||
- react-native-appearance (0.3.4):
|
||||
- React
|
||||
- react-native-background-timer (2.2.0):
|
||||
- React
|
||||
- react-native-blur (0.8.0):
|
||||
- React
|
||||
- react-native-cameraroll (4.0.0):
|
||||
- react-native-cameraroll (4.0.1):
|
||||
- React
|
||||
- react-native-cookies (4.0.0):
|
||||
- React
|
||||
|
@ -397,66 +397,66 @@ PODS:
|
|||
- React
|
||||
- react-native-webview (10.3.2):
|
||||
- React
|
||||
- React-RCTActionSheet (0.63.2):
|
||||
- React-Core/RCTActionSheetHeaders (= 0.63.2)
|
||||
- React-RCTAnimation (0.63.2):
|
||||
- FBReactNativeSpec (= 0.63.2)
|
||||
- React-RCTActionSheet (0.63.4):
|
||||
- React-Core/RCTActionSheetHeaders (= 0.63.4)
|
||||
- React-RCTAnimation (0.63.4):
|
||||
- FBReactNativeSpec (= 0.63.4)
|
||||
- Folly (= 2020.01.13.00)
|
||||
- RCTTypeSafety (= 0.63.2)
|
||||
- React-Core/RCTAnimationHeaders (= 0.63.2)
|
||||
- React-jsi (= 0.63.2)
|
||||
- ReactCommon/turbomodule/core (= 0.63.2)
|
||||
- React-RCTBlob (0.63.2):
|
||||
- FBReactNativeSpec (= 0.63.2)
|
||||
- RCTTypeSafety (= 0.63.4)
|
||||
- React-Core/RCTAnimationHeaders (= 0.63.4)
|
||||
- React-jsi (= 0.63.4)
|
||||
- ReactCommon/turbomodule/core (= 0.63.4)
|
||||
- React-RCTBlob (0.63.4):
|
||||
- FBReactNativeSpec (= 0.63.4)
|
||||
- Folly (= 2020.01.13.00)
|
||||
- React-Core/RCTBlobHeaders (= 0.63.2)
|
||||
- React-Core/RCTWebSocket (= 0.63.2)
|
||||
- React-jsi (= 0.63.2)
|
||||
- React-RCTNetwork (= 0.63.2)
|
||||
- ReactCommon/turbomodule/core (= 0.63.2)
|
||||
- React-RCTImage (0.63.2):
|
||||
- FBReactNativeSpec (= 0.63.2)
|
||||
- React-Core/RCTBlobHeaders (= 0.63.4)
|
||||
- React-Core/RCTWebSocket (= 0.63.4)
|
||||
- React-jsi (= 0.63.4)
|
||||
- React-RCTNetwork (= 0.63.4)
|
||||
- ReactCommon/turbomodule/core (= 0.63.4)
|
||||
- React-RCTImage (0.63.4):
|
||||
- FBReactNativeSpec (= 0.63.4)
|
||||
- Folly (= 2020.01.13.00)
|
||||
- RCTTypeSafety (= 0.63.2)
|
||||
- React-Core/RCTImageHeaders (= 0.63.2)
|
||||
- React-jsi (= 0.63.2)
|
||||
- React-RCTNetwork (= 0.63.2)
|
||||
- ReactCommon/turbomodule/core (= 0.63.2)
|
||||
- React-RCTLinking (0.63.2):
|
||||
- FBReactNativeSpec (= 0.63.2)
|
||||
- React-Core/RCTLinkingHeaders (= 0.63.2)
|
||||
- React-jsi (= 0.63.2)
|
||||
- ReactCommon/turbomodule/core (= 0.63.2)
|
||||
- React-RCTNetwork (0.63.2):
|
||||
- FBReactNativeSpec (= 0.63.2)
|
||||
- RCTTypeSafety (= 0.63.4)
|
||||
- React-Core/RCTImageHeaders (= 0.63.4)
|
||||
- React-jsi (= 0.63.4)
|
||||
- React-RCTNetwork (= 0.63.4)
|
||||
- ReactCommon/turbomodule/core (= 0.63.4)
|
||||
- React-RCTLinking (0.63.4):
|
||||
- FBReactNativeSpec (= 0.63.4)
|
||||
- React-Core/RCTLinkingHeaders (= 0.63.4)
|
||||
- React-jsi (= 0.63.4)
|
||||
- ReactCommon/turbomodule/core (= 0.63.4)
|
||||
- React-RCTNetwork (0.63.4):
|
||||
- FBReactNativeSpec (= 0.63.4)
|
||||
- Folly (= 2020.01.13.00)
|
||||
- RCTTypeSafety (= 0.63.2)
|
||||
- React-Core/RCTNetworkHeaders (= 0.63.2)
|
||||
- React-jsi (= 0.63.2)
|
||||
- ReactCommon/turbomodule/core (= 0.63.2)
|
||||
- React-RCTSettings (0.63.2):
|
||||
- FBReactNativeSpec (= 0.63.2)
|
||||
- RCTTypeSafety (= 0.63.4)
|
||||
- React-Core/RCTNetworkHeaders (= 0.63.4)
|
||||
- React-jsi (= 0.63.4)
|
||||
- ReactCommon/turbomodule/core (= 0.63.4)
|
||||
- React-RCTSettings (0.63.4):
|
||||
- FBReactNativeSpec (= 0.63.4)
|
||||
- Folly (= 2020.01.13.00)
|
||||
- RCTTypeSafety (= 0.63.2)
|
||||
- React-Core/RCTSettingsHeaders (= 0.63.2)
|
||||
- React-jsi (= 0.63.2)
|
||||
- ReactCommon/turbomodule/core (= 0.63.2)
|
||||
- React-RCTText (0.63.2):
|
||||
- React-Core/RCTTextHeaders (= 0.63.2)
|
||||
- React-RCTVibration (0.63.2):
|
||||
- FBReactNativeSpec (= 0.63.2)
|
||||
- RCTTypeSafety (= 0.63.4)
|
||||
- React-Core/RCTSettingsHeaders (= 0.63.4)
|
||||
- React-jsi (= 0.63.4)
|
||||
- ReactCommon/turbomodule/core (= 0.63.4)
|
||||
- React-RCTText (0.63.4):
|
||||
- React-Core/RCTTextHeaders (= 0.63.4)
|
||||
- React-RCTVibration (0.63.4):
|
||||
- FBReactNativeSpec (= 0.63.4)
|
||||
- Folly (= 2020.01.13.00)
|
||||
- React-Core/RCTVibrationHeaders (= 0.63.2)
|
||||
- React-jsi (= 0.63.2)
|
||||
- ReactCommon/turbomodule/core (= 0.63.2)
|
||||
- ReactCommon/turbomodule/core (0.63.2):
|
||||
- React-Core/RCTVibrationHeaders (= 0.63.4)
|
||||
- React-jsi (= 0.63.4)
|
||||
- ReactCommon/turbomodule/core (= 0.63.4)
|
||||
- ReactCommon/turbomodule/core (0.63.4):
|
||||
- DoubleConversion
|
||||
- Folly (= 2020.01.13.00)
|
||||
- glog
|
||||
- React-callinvoker (= 0.63.2)
|
||||
- React-Core (= 0.63.2)
|
||||
- React-cxxreact (= 0.63.2)
|
||||
- React-jsi (= 0.63.2)
|
||||
- React-callinvoker (= 0.63.4)
|
||||
- React-Core (= 0.63.4)
|
||||
- React-cxxreact (= 0.63.4)
|
||||
- React-jsi (= 0.63.4)
|
||||
- ReactNativeART (1.2.0):
|
||||
- React
|
||||
- ReactNativeUiLib (3.0.4):
|
||||
|
@ -560,25 +560,25 @@ DEPENDENCIES:
|
|||
- EXWebBrowser (from `../node_modules/expo-web-browser/ios`)
|
||||
- FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`)
|
||||
- FBReactNativeSpec (from `../node_modules/react-native/Libraries/FBReactNativeSpec`)
|
||||
- Flipper (~> 0.41.1)
|
||||
- Flipper (~> 0.54.0)
|
||||
- Flipper-DoubleConversion (= 1.1.7)
|
||||
- Flipper-Folly (~> 2.2)
|
||||
- Flipper-Glog (= 0.3.6)
|
||||
- Flipper-PeerTalk (~> 0.0.4)
|
||||
- Flipper-RSocket (~> 1.1)
|
||||
- FlipperKit (~> 0.41.1)
|
||||
- FlipperKit/Core (~> 0.41.1)
|
||||
- FlipperKit/CppBridge (~> 0.41.1)
|
||||
- FlipperKit/FBCxxFollyDynamicConvert (~> 0.41.1)
|
||||
- FlipperKit/FBDefines (~> 0.41.1)
|
||||
- FlipperKit/FKPortForwarding (~> 0.41.1)
|
||||
- FlipperKit/FlipperKitHighlightOverlay (~> 0.41.1)
|
||||
- FlipperKit/FlipperKitLayoutPlugin (~> 0.41.1)
|
||||
- FlipperKit/FlipperKitLayoutTextSearchable (~> 0.41.1)
|
||||
- FlipperKit/FlipperKitNetworkPlugin (~> 0.41.1)
|
||||
- FlipperKit/FlipperKitReactPlugin (~> 0.41.1)
|
||||
- FlipperKit/FlipperKitUserDefaultsPlugin (~> 0.41.1)
|
||||
- FlipperKit/SKIOSNetworkPlugin (~> 0.41.1)
|
||||
- FlipperKit (~> 0.54.0)
|
||||
- FlipperKit/Core (~> 0.54.0)
|
||||
- FlipperKit/CppBridge (~> 0.54.0)
|
||||
- FlipperKit/FBCxxFollyDynamicConvert (~> 0.54.0)
|
||||
- FlipperKit/FBDefines (~> 0.54.0)
|
||||
- FlipperKit/FKPortForwarding (~> 0.54.0)
|
||||
- FlipperKit/FlipperKitHighlightOverlay (~> 0.54.0)
|
||||
- FlipperKit/FlipperKitLayoutPlugin (~> 0.54.0)
|
||||
- FlipperKit/FlipperKitLayoutTextSearchable (~> 0.54.0)
|
||||
- FlipperKit/FlipperKitNetworkPlugin (~> 0.54.0)
|
||||
- FlipperKit/FlipperKitReactPlugin (~> 0.54.0)
|
||||
- FlipperKit/FlipperKitUserDefaultsPlugin (~> 0.54.0)
|
||||
- FlipperKit/SKIOSNetworkPlugin (~> 0.54.0)
|
||||
- Folly (from `../node_modules/react-native/third-party-podspecs/Folly.podspec`)
|
||||
- glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`)
|
||||
- JitsiMeetSDK (from `https://github.com/RocketChat/jitsi-meet-ios-sdk-releases.git`)
|
||||
|
@ -897,21 +897,21 @@ SPEC CHECKSUMS:
|
|||
EXPermissions: 80ac3acbdb145930079810fe5b08c022b3428aa8
|
||||
EXVideoThumbnails: f70bdc5511749f3181028f5000bcb7be203c631d
|
||||
EXWebBrowser: d37a5ffdea1b65947352bc001dd9f732463725d4
|
||||
FBLazyVector: 3ef4a7f62e7db01092f9d517d2ebc0d0677c4a37
|
||||
FBReactNativeSpec: dc7fa9088f0f2a998503a352b0554d69a4391c5a
|
||||
FBLazyVector: 3bb422f41b18121b71783a905c10e58606f7dc3e
|
||||
FBReactNativeSpec: f2c97f2529dd79c083355182cc158c9f98f4bd6e
|
||||
Firebase: 919186c8e119dd9372a45fd1dd17a8a942bc1892
|
||||
FirebaseAnalytics: 5fa308e1b13f838d0f6dc74719ac2a72e8c5afc4
|
||||
FirebaseCore: 8cd4f8ea22075e0ee582849b1cf79d8816506085
|
||||
FirebaseCoreDiagnostics: 4505e4d4009b1d93f605088ee7d7764d5f0d1c84
|
||||
FirebaseCrashlytics: 7d0fa02ea8842cc4b2ab07b0735edafde1ad77d6
|
||||
FirebaseInstallations: 3c520c951305cbf9ca54eb891ff9e6d1fd384881
|
||||
Flipper: 33585e2d9810fe5528346be33bcf71b37bb7ae13
|
||||
Flipper: be611d4b742d8c87fbae2ca5f44603a02539e365
|
||||
Flipper-DoubleConversion: 38631e41ef4f9b12861c67d17cb5518d06badc41
|
||||
Flipper-Folly: c12092ea368353b58e992843a990a3225d4533c3
|
||||
Flipper-Glog: 1dfd6abf1e922806c52ceb8701a3599a79a200a6
|
||||
Flipper-PeerTalk: 116d8f857dc6ef55c7a5a75ea3ceaafe878aadc9
|
||||
Flipper-RSocket: 64e7431a55835eb953b0bf984ef3b90ae9fdddd7
|
||||
FlipperKit: bc68102cd4952a258a23c9c1b316c7bec1fecf83
|
||||
FlipperKit: ab353d41aea8aae2ea6daaf813e67496642f3d7d
|
||||
Folly: b73c3869541e86821df3c387eb0af5f65addfab4
|
||||
glog: 40a13f7840415b9a77023fbcae0f1e6f43192af3
|
||||
GoogleAppMeasurement: 8cd1f289d60e629cf16ab03363b9e89c776b9651
|
||||
|
@ -926,20 +926,20 @@ SPEC CHECKSUMS:
|
|||
nanopb: c43f40fadfe79e8b8db116583945847910cbabc9
|
||||
OpenSSL-Universal: 8b48cc0d10c1b2923617dfe5c178aa9ed2689355
|
||||
PromisesObjC: b48e0338dbbac2207e611750777895f7a5811b75
|
||||
RCTRequired: f13f25e7b12f925f1f6a6a8c69d929a03c0129fe
|
||||
RCTTypeSafety: 44982c5c8e43ff4141eb519a8ddc88059acd1f3a
|
||||
React: e1c65dd41cb9db13b99f24608e47dd595f28ca9a
|
||||
React-callinvoker: 552a6a6bc8b3bb794cf108ad59e5a9e2e3b4fc98
|
||||
React-Core: 9d341e725dc9cd2f49e4c49ad1fc4e8776aa2639
|
||||
React-CoreModules: 5335e168165da7f7083ce7147768d36d3e292318
|
||||
React-cxxreact: d3261ec5f7d11743fbf21e263a34ea51d1f13ebc
|
||||
React-jsi: 54245e1d5f4b690dec614a73a3795964eeef13a8
|
||||
React-jsiexecutor: 8ca588cc921e70590820ce72b8789b02c67cce38
|
||||
React-jsinspector: b14e62ebe7a66e9231e9581279909f2fc3db6606
|
||||
RCTRequired: 082f10cd3f905d6c124597fd1c14f6f2655ff65e
|
||||
RCTTypeSafety: 8c9c544ecbf20337d069e4ae7fd9a377aadf504b
|
||||
React: b0a957a2c44da4113b0c4c9853d8387f8e64e615
|
||||
React-callinvoker: c3f44dd3cb195b6aa46621fff95ded79d59043fe
|
||||
React-Core: d3b2a1ac9a2c13c3bcde712d9281fc1c8a5b315b
|
||||
React-CoreModules: 0581ff36cb797da0943d424f69e7098e43e9be60
|
||||
React-cxxreact: c1480d4fda5720086c90df537ee7d285d4c57ac3
|
||||
React-jsi: a0418934cf48f25b485631deb27c64dc40fb4c31
|
||||
React-jsiexecutor: 93bd528844ad21dc07aab1c67cb10abae6df6949
|
||||
React-jsinspector: 58aef7155bc9a9683f5b60b35eccea8722a4f53a
|
||||
react-native-appearance: 0f0e5fc2fcef70e03d48c8fe6b00b9158c2ba8aa
|
||||
react-native-background-timer: 1f7d560647b40e6a60b01c452ba29c54bf581fc4
|
||||
react-native-blur: cad4d93b364f91e7b7931b3fa935455487e5c33c
|
||||
react-native-cameraroll: ae0a7c0cc8462508855707ff623b1e789b692865
|
||||
react-native-cameraroll: 60ba0068826eab1c8d43146191bafd4363ea58a7
|
||||
react-native-cookies: d79e5015a5d3a38e08f5cb39c4948532be7e9c2b
|
||||
react-native-document-picker: 825552b827012282baf4b7cbf119d3b37a280c90
|
||||
react-native-jitsi-meet: f2407aca85566e031ee7b222e497ee5ecb6623de
|
||||
|
@ -952,16 +952,16 @@ SPEC CHECKSUMS:
|
|||
react-native-simple-crypto: 564740fd8124827d82e9e8ded4a0de8c695c8a4d
|
||||
react-native-slider: 0221b417686c5957f6e77cd9ac22c1478a165355
|
||||
react-native-webview: 679b6f400176e2ea8a785acf7ae16cf282e7d1eb
|
||||
React-RCTActionSheet: 910163b6b09685a35c4ebbc52b66d1bfbbe39fc5
|
||||
React-RCTAnimation: 9a883bbe1e9d2e158d4fb53765ed64c8dc2200c6
|
||||
React-RCTBlob: 39cf0ece1927996c4466510e25d2105f67010e13
|
||||
React-RCTImage: de355d738727b09ad3692f2a979affbd54b5f378
|
||||
React-RCTLinking: 8122f221d395a63364b2c0078ce284214bd04575
|
||||
React-RCTNetwork: 8f96c7b49ea6a0f28f98258f347b6ad218bc0830
|
||||
React-RCTSettings: 8a49622aff9c1925f5455fa340b6fe4853d64ab6
|
||||
React-RCTText: 1b6773e776e4b33f90468c20fe3b16ca3e224bb8
|
||||
React-RCTVibration: 4d2e726957f4087449739b595f107c0d4b6c2d2d
|
||||
ReactCommon: a0a1edbebcac5e91338371b72ffc66aa822792ce
|
||||
React-RCTActionSheet: 89a0ca9f4a06c1f93c26067af074ccdce0f40336
|
||||
React-RCTAnimation: 1bde3ecc0c104c55df246eda516e0deb03c4e49b
|
||||
React-RCTBlob: a97d378b527740cc667e03ebfa183a75231ab0f0
|
||||
React-RCTImage: c1b1f2d3f43a4a528c8946d6092384b5c880d2f0
|
||||
React-RCTLinking: 35ae4ab9dc0410d1fcbdce4d7623194a27214fb2
|
||||
React-RCTNetwork: 29ec2696f8d8cfff7331fac83d3e893c95ef43ae
|
||||
React-RCTSettings: 60f0691bba2074ef394f95d4c2265ec284e0a46a
|
||||
React-RCTText: 5c51df3f08cb9dedc6e790161195d12bac06101c
|
||||
React-RCTVibration: ae4f914cfe8de7d4de95ae1ea6cc8f6315d73d9d
|
||||
ReactCommon: 73d79c7039f473b76db6ff7c6b159c478acbbb3b
|
||||
ReactNativeART: 78edc68dd4a1e675338cd0cd113319cf3a65f2ab
|
||||
ReactNativeUiLib: cde7263a7d308b60161cd286f95c9433e79f2f7d
|
||||
rn-extensions-share: 8db79372089567cbc5aefe8444869bbc808578d3
|
||||
|
@ -1000,9 +1000,9 @@ SPEC CHECKSUMS:
|
|||
UMReactNativeAdapter: 538efe92e781b5d7678cf95b34c46f2d0989a557
|
||||
UMSensorsInterface: cb5bf31d52c4349f0ff9e3c049bbe4df0d80d383
|
||||
UMTaskManagerInterface: 80653f25c55d9e6d79d6a0a65589fa213feaee11
|
||||
Yoga: 7740b94929bbacbddda59bf115b5317e9a161598
|
||||
Yoga: 4bd86afe9883422a7c4028c00e34790f560923d6
|
||||
YogaKit: f782866e155069a2cca2517aafea43200b01fd5a
|
||||
|
||||
PODFILE CHECKSUM: c38f9a91b5c154453863a4ee1ccc203da58ad2f2
|
||||
PODFILE CHECKSUM: 8477bd3277dec7b3190105d922512e3791bc026f
|
||||
|
||||
COCOAPODS: 1.9.3
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -2,7 +2,7 @@ APPLICATION_EXTENSION_API_ONLY = YES
|
|||
CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative
|
||||
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
|
||||
HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/BugsnagReactNative" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog"
|
||||
OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap"
|
||||
OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_ROOT}/Headers/Public/React/React-Core.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap"
|
||||
PODS_BUILD_DIR = ${BUILD_DIR}
|
||||
PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)
|
||||
PODS_ROOT = ${SRCROOT}
|
||||
|
|
|
@ -2,7 +2,7 @@ APPLICATION_EXTENSION_API_ONLY = YES
|
|||
CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative
|
||||
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
|
||||
HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/BugsnagReactNative" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog"
|
||||
OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap"
|
||||
OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_ROOT}/Headers/Public/React/React-Core.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap"
|
||||
PODS_BUILD_DIR = ${BUILD_DIR}
|
||||
PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)
|
||||
PODS_ROOT = ${SRCROOT}
|
||||
|
|
|
@ -2,7 +2,7 @@ APPLICATION_EXTENSION_API_ONLY = YES
|
|||
CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/EXImageLoader
|
||||
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
|
||||
HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/EXImageLoader" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXImageLoader" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog"
|
||||
OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap"
|
||||
OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_ROOT}/Headers/Public/React/React-Core.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap"
|
||||
PODS_BUILD_DIR = ${BUILD_DIR}
|
||||
PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)
|
||||
PODS_ROOT = ${SRCROOT}
|
||||
|
|
|
@ -2,7 +2,7 @@ APPLICATION_EXTENSION_API_ONLY = YES
|
|||
CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/EXImageLoader
|
||||
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
|
||||
HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/EXImageLoader" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXImageLoader" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog"
|
||||
OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap"
|
||||
OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_ROOT}/Headers/Public/React/React-Core.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap"
|
||||
PODS_BUILD_DIR = ${BUILD_DIR}
|
||||
PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)
|
||||
PODS_ROOT = ${SRCROOT}
|
||||
|
|
|
@ -3,7 +3,7 @@ CLANG_CXX_LANGUAGE_STANDARD = c++14
|
|||
CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec
|
||||
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
|
||||
HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog" "$(PODS_TARGET_SRCROOT)/Libraries/FBReactNativeSpec" "$(PODS_ROOT)/Folly"
|
||||
OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap"
|
||||
OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_ROOT}/Headers/Public/React/React-Core.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap"
|
||||
PODS_BUILD_DIR = ${BUILD_DIR}
|
||||
PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)
|
||||
PODS_ROOT = ${SRCROOT}
|
||||
|
|
|
@ -3,7 +3,7 @@ CLANG_CXX_LANGUAGE_STANDARD = c++14
|
|||
CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec
|
||||
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
|
||||
HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog" "$(PODS_TARGET_SRCROOT)/Libraries/FBReactNativeSpec" "$(PODS_ROOT)/Folly"
|
||||
OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap"
|
||||
OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_ROOT}/Headers/Public/React/React-Core.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap"
|
||||
PODS_BUILD_DIR = ${BUILD_DIR}
|
||||
PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)
|
||||
PODS_ROOT = ${SRCROOT}
|
||||
|
|
|
@ -13,6 +13,7 @@
|
|||
#import "FlipperClient.h"
|
||||
#import "FlipperConnection.h"
|
||||
#import "FlipperDiagnosticsViewController.h"
|
||||
#import "FlipperKitCertificateProvider.h"
|
||||
#import "FlipperPlugin.h"
|
||||
#import "FlipperResponder.h"
|
||||
#import "FlipperStateUpdateListener.h"
|
||||
|
|
|
@ -2,7 +2,7 @@ APPLICATION_EXTENSION_API_ONLY = YES
|
|||
CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/KeyCommands
|
||||
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
|
||||
HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/KeyCommands" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog"
|
||||
OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap"
|
||||
OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_ROOT}/Headers/Public/React/React-Core.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap"
|
||||
PODS_BUILD_DIR = ${BUILD_DIR}
|
||||
PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)
|
||||
PODS_ROOT = ${SRCROOT}
|
||||
|
|
|
@ -2,7 +2,7 @@ APPLICATION_EXTENSION_API_ONLY = YES
|
|||
CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/KeyCommands
|
||||
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
|
||||
HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/KeyCommands" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog"
|
||||
OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap"
|
||||
OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_ROOT}/Headers/Public/React/React-Core.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap"
|
||||
PODS_BUILD_DIR = ${BUILD_DIR}
|
||||
PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)
|
||||
PODS_ROOT = ${SRCROOT}
|
||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -1,5 +0,0 @@
|
|||
#import <Foundation/Foundation.h>
|
||||
@interface PodsDummy_Pods_RocketChatRN : NSObject
|
||||
@end
|
||||
@implementation PodsDummy_Pods_RocketChatRN
|
||||
@end
|
|
@ -1,6 +0,0 @@
|
|||
module Pods_RocketChatRN {
|
||||
umbrella header "Pods-RocketChatRN-umbrella.h"
|
||||
|
||||
export *
|
||||
module * { export * }
|
||||
}
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
5
ios/Pods/Target Support Files/Pods-defaults-Rocket.Chat/Pods-defaults-Rocket.Chat-dummy.m
generated
Normal file
5
ios/Pods/Target Support Files/Pods-defaults-Rocket.Chat/Pods-defaults-Rocket.Chat-dummy.m
generated
Normal file
|
@ -0,0 +1,5 @@
|
|||
#import <Foundation/Foundation.h>
|
||||
@interface PodsDummy_Pods_defaults_Rocket_Chat : NSObject
|
||||
@end
|
||||
@implementation PodsDummy_Pods_defaults_Rocket_Chat
|
||||
@end
|
|
@ -11,6 +11,6 @@
|
|||
#endif
|
||||
|
||||
|
||||
FOUNDATION_EXPORT double Pods_RocketChatRNVersionNumber;
|
||||
FOUNDATION_EXPORT const unsigned char Pods_RocketChatRNVersionString[];
|
||||
FOUNDATION_EXPORT double Pods_defaults_Rocket_ChatVersionNumber;
|
||||
FOUNDATION_EXPORT const unsigned char Pods_defaults_Rocket_ChatVersionString[];
|
||||
|
File diff suppressed because one or more lines are too long
6
ios/Pods/Target Support Files/Pods-defaults-Rocket.Chat/Pods-defaults-Rocket.Chat.modulemap
generated
Normal file
6
ios/Pods/Target Support Files/Pods-defaults-Rocket.Chat/Pods-defaults-Rocket.Chat.modulemap
generated
Normal file
|
@ -0,0 +1,6 @@
|
|||
module Pods_defaults_Rocket_Chat {
|
||||
umbrella header "Pods-defaults-Rocket.Chat-umbrella.h"
|
||||
|
||||
export *
|
||||
module * { export * }
|
||||
}
|
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
5156
ios/Pods/Target Support Files/Pods-defaults-RocketChatRN/Pods-defaults-RocketChatRN-acknowledgements.plist
generated
Normal file
5156
ios/Pods/Target Support Files/Pods-defaults-RocketChatRN/Pods-defaults-RocketChatRN-acknowledgements.plist
generated
Normal file
File diff suppressed because it is too large
Load Diff
5
ios/Pods/Target Support Files/Pods-defaults-RocketChatRN/Pods-defaults-RocketChatRN-dummy.m
generated
Normal file
5
ios/Pods/Target Support Files/Pods-defaults-RocketChatRN/Pods-defaults-RocketChatRN-dummy.m
generated
Normal file
|
@ -0,0 +1,5 @@
|
|||
#import <Foundation/Foundation.h>
|
||||
@interface PodsDummy_Pods_defaults_RocketChatRN : NSObject
|
||||
@end
|
||||
@implementation PodsDummy_Pods_defaults_RocketChatRN
|
||||
@end
|
209
ios/Pods/Target Support Files/Pods-defaults-RocketChatRN/Pods-defaults-RocketChatRN-frameworks.sh
generated
Executable file
209
ios/Pods/Target Support Files/Pods-defaults-RocketChatRN/Pods-defaults-RocketChatRN-frameworks.sh
generated
Executable file
|
@ -0,0 +1,209 @@
|
|||
#!/bin/sh
|
||||
set -e
|
||||
set -u
|
||||
set -o pipefail
|
||||
|
||||
function on_error {
|
||||
echo "$(realpath -mq "${0}"):$1: error: Unexpected failure"
|
||||
}
|
||||
trap 'on_error $LINENO' ERR
|
||||
|
||||
if [ -z ${FRAMEWORKS_FOLDER_PATH+x} ]; then
|
||||
# If FRAMEWORKS_FOLDER_PATH is not set, then there's nowhere for us to copy
|
||||
# frameworks to, so exit 0 (signalling the script phase was successful).
|
||||
exit 0
|
||||
fi
|
||||
|
||||
echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
|
||||
mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
|
||||
|
||||
COCOAPODS_PARALLEL_CODE_SIGN="${COCOAPODS_PARALLEL_CODE_SIGN:-false}"
|
||||
SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}"
|
||||
|
||||
# Used as a return value for each invocation of `strip_invalid_archs` function.
|
||||
STRIP_BINARY_RETVAL=0
|
||||
|
||||
# This protects against multiple targets copying the same framework dependency at the same time. The solution
|
||||
# was originally proposed here: https://lists.samba.org/archive/rsync/2008-February/020158.html
|
||||
RSYNC_PROTECT_TMP_FILES=(--filter "P .*.??????")
|
||||
|
||||
# Copies and strips a vendored framework
|
||||
install_framework()
|
||||
{
|
||||
if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then
|
||||
local source="${BUILT_PRODUCTS_DIR}/$1"
|
||||
elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then
|
||||
local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")"
|
||||
elif [ -r "$1" ]; then
|
||||
local source="$1"
|
||||
fi
|
||||
|
||||
local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
|
||||
|
||||
if [ -L "${source}" ]; then
|
||||
echo "Symlinked..."
|
||||
source="$(readlink "${source}")"
|
||||
fi
|
||||
|
||||
# Use filter instead of exclude so missing patterns don't throw errors.
|
||||
echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --links --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\""
|
||||
rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --links --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}"
|
||||
|
||||
local basename
|
||||
basename="$(basename -s .framework "$1")"
|
||||
binary="${destination}/${basename}.framework/${basename}"
|
||||
|
||||
if ! [ -r "$binary" ]; then
|
||||
binary="${destination}/${basename}"
|
||||
elif [ -L "${binary}" ]; then
|
||||
echo "Destination binary is symlinked..."
|
||||
dirname="$(dirname "${binary}")"
|
||||
binary="${dirname}/$(readlink "${binary}")"
|
||||
fi
|
||||
|
||||
# Strip invalid architectures so "fat" simulator / device frameworks work on device
|
||||
if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then
|
||||
strip_invalid_archs "$binary"
|
||||
fi
|
||||
|
||||
# Resign the code if required by the build settings to avoid unstable apps
|
||||
code_sign_if_enabled "${destination}/$(basename "$1")"
|
||||
|
||||
# Embed linked Swift runtime libraries. No longer necessary as of Xcode 7.
|
||||
if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then
|
||||
local swift_runtime_libs
|
||||
swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u)
|
||||
for lib in $swift_runtime_libs; do
|
||||
echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\""
|
||||
rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}"
|
||||
code_sign_if_enabled "${destination}/${lib}"
|
||||
done
|
||||
fi
|
||||
}
|
||||
|
||||
# Copies and strips a vendored dSYM
|
||||
install_dsym() {
|
||||
local source="$1"
|
||||
warn_missing_arch=${2:-true}
|
||||
if [ -r "$source" ]; then
|
||||
# Copy the dSYM into the targets temp dir.
|
||||
echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${DERIVED_FILES_DIR}\""
|
||||
rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${DERIVED_FILES_DIR}"
|
||||
|
||||
local basename
|
||||
basename="$(basename -s .dSYM "$source")"
|
||||
binary_name="$(ls "$source/Contents/Resources/DWARF")"
|
||||
binary="${DERIVED_FILES_DIR}/${basename}.dSYM/Contents/Resources/DWARF/${binary_name}"
|
||||
|
||||
# Strip invalid architectures so "fat" simulator / device frameworks work on device
|
||||
if [[ "$(file "$binary")" == *"Mach-O "*"dSYM companion"* ]]; then
|
||||
strip_invalid_archs "$binary" "$warn_missing_arch"
|
||||
fi
|
||||
|
||||
if [[ $STRIP_BINARY_RETVAL == 1 ]]; then
|
||||
# Move the stripped file into its final destination.
|
||||
echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --links --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${DERIVED_FILES_DIR}/${basename}.framework.dSYM\" \"${DWARF_DSYM_FOLDER_PATH}\""
|
||||
rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --links --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${DERIVED_FILES_DIR}/${basename}.dSYM" "${DWARF_DSYM_FOLDER_PATH}"
|
||||
else
|
||||
# The dSYM was not stripped at all, in this case touch a fake folder so the input/output paths from Xcode do not reexecute this script because the file is missing.
|
||||
touch "${DWARF_DSYM_FOLDER_PATH}/${basename}.dSYM"
|
||||
fi
|
||||
fi
|
||||
}
|
||||
|
||||
# Copies the bcsymbolmap files of a vendored framework
|
||||
install_bcsymbolmap() {
|
||||
local bcsymbolmap_path="$1"
|
||||
local destination="${BUILT_PRODUCTS_DIR}"
|
||||
echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${bcsymbolmap_path}" "${destination}""
|
||||
rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${bcsymbolmap_path}" "${destination}"
|
||||
}
|
||||
|
||||
# Signs a framework with the provided identity
|
||||
code_sign_if_enabled() {
|
||||
if [ -n "${EXPANDED_CODE_SIGN_IDENTITY:-}" -a "${CODE_SIGNING_REQUIRED:-}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then
|
||||
# Use the current code_sign_identity
|
||||
echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}"
|
||||
local code_sign_cmd="/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS:-} --preserve-metadata=identifier,entitlements '$1'"
|
||||
|
||||
if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then
|
||||
code_sign_cmd="$code_sign_cmd &"
|
||||
fi
|
||||
echo "$code_sign_cmd"
|
||||
eval "$code_sign_cmd"
|
||||
fi
|
||||
}
|
||||
|
||||
# Strip invalid architectures
|
||||
strip_invalid_archs() {
|
||||
binary="$1"
|
||||
warn_missing_arch=${2:-true}
|
||||
# Get architectures for current target binary
|
||||
binary_archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | awk '{$1=$1;print}' | rev)"
|
||||
# Intersect them with the architectures we are building for
|
||||
intersected_archs="$(echo ${ARCHS[@]} ${binary_archs[@]} | tr ' ' '\n' | sort | uniq -d)"
|
||||
# If there are no archs supported by this binary then warn the user
|
||||
if [[ -z "$intersected_archs" ]]; then
|
||||
if [[ "$warn_missing_arch" == "true" ]]; then
|
||||
echo "warning: [CP] Vendored binary '$binary' contains architectures ($binary_archs) none of which match the current build architectures ($ARCHS)."
|
||||
fi
|
||||
STRIP_BINARY_RETVAL=0
|
||||
return
|
||||
fi
|
||||
stripped=""
|
||||
for arch in $binary_archs; do
|
||||
if ! [[ "${ARCHS}" == *"$arch"* ]]; then
|
||||
# Strip non-valid architectures in-place
|
||||
lipo -remove "$arch" -output "$binary" "$binary"
|
||||
stripped="$stripped $arch"
|
||||
fi
|
||||
done
|
||||
if [[ "$stripped" ]]; then
|
||||
echo "Stripped $binary of architectures:$stripped"
|
||||
fi
|
||||
STRIP_BINARY_RETVAL=1
|
||||
}
|
||||
|
||||
install_artifact() {
|
||||
artifact="$1"
|
||||
base="$(basename "$artifact")"
|
||||
case $base in
|
||||
*.framework)
|
||||
install_framework "$artifact"
|
||||
;;
|
||||
*.dSYM)
|
||||
# Suppress arch warnings since XCFrameworks will include many dSYM files
|
||||
install_dsym "$artifact" "false"
|
||||
;;
|
||||
*.bcsymbolmap)
|
||||
install_bcsymbolmap "$artifact"
|
||||
;;
|
||||
*)
|
||||
echo "error: Unrecognized artifact "$artifact""
|
||||
;;
|
||||
esac
|
||||
}
|
||||
|
||||
copy_artifacts() {
|
||||
file_list="$1"
|
||||
while read artifact; do
|
||||
install_artifact "$artifact"
|
||||
done <$file_list
|
||||
}
|
||||
|
||||
ARTIFACT_LIST_FILE="${BUILT_PRODUCTS_DIR}/cocoapods-artifacts-${CONFIGURATION}.txt"
|
||||
if [ -r "${ARTIFACT_LIST_FILE}" ]; then
|
||||
copy_artifacts "${ARTIFACT_LIST_FILE}"
|
||||
fi
|
||||
|
||||
if [[ "$CONFIGURATION" == "Debug" ]]; then
|
||||
install_framework "${PODS_ROOT}/JitsiMeetSDK/Frameworks/JitsiMeet.framework"
|
||||
install_framework "${PODS_ROOT}/JitsiMeetSDK/Frameworks/WebRTC.framework"
|
||||
fi
|
||||
if [[ "$CONFIGURATION" == "Release" ]]; then
|
||||
install_framework "${PODS_ROOT}/JitsiMeetSDK/Frameworks/JitsiMeet.framework"
|
||||
install_framework "${PODS_ROOT}/JitsiMeetSDK/Frameworks/WebRTC.framework"
|
||||
fi
|
||||
if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then
|
||||
wait
|
||||
fi
|
165
ios/Pods/Target Support Files/Pods-defaults-RocketChatRN/Pods-defaults-RocketChatRN-resources.sh
generated
Executable file
165
ios/Pods/Target Support Files/Pods-defaults-RocketChatRN/Pods-defaults-RocketChatRN-resources.sh
generated
Executable file
|
@ -0,0 +1,165 @@
|
|||
#!/bin/sh
|
||||
set -e
|
||||
set -u
|
||||
set -o pipefail
|
||||
|
||||
function on_error {
|
||||
echo "$(realpath -mq "${0}"):$1: error: Unexpected failure"
|
||||
}
|
||||
trap 'on_error $LINENO' ERR
|
||||
|
||||
if [ -z ${UNLOCALIZED_RESOURCES_FOLDER_PATH+x} ]; then
|
||||
# If UNLOCALIZED_RESOURCES_FOLDER_PATH is not set, then there's nowhere for us to copy
|
||||
# resources to, so exit 0 (signalling the script phase was successful).
|
||||
exit 0
|
||||
fi
|
||||
|
||||
mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"
|
||||
|
||||
RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt
|
||||
> "$RESOURCES_TO_COPY"
|
||||
|
||||
XCASSET_FILES=()
|
||||
|
||||
# This protects against multiple targets copying the same framework dependency at the same time. The solution
|
||||
# was originally proposed here: https://lists.samba.org/archive/rsync/2008-February/020158.html
|
||||
RSYNC_PROTECT_TMP_FILES=(--filter "P .*.??????")
|
||||
|
||||
case "${TARGETED_DEVICE_FAMILY:-}" in
|
||||
1,2)
|
||||
TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone"
|
||||
;;
|
||||
1)
|
||||
TARGET_DEVICE_ARGS="--target-device iphone"
|
||||
;;
|
||||
2)
|
||||
TARGET_DEVICE_ARGS="--target-device ipad"
|
||||
;;
|
||||
3)
|
||||
TARGET_DEVICE_ARGS="--target-device tv"
|
||||
;;
|
||||
4)
|
||||
TARGET_DEVICE_ARGS="--target-device watch"
|
||||
;;
|
||||
*)
|
||||
TARGET_DEVICE_ARGS="--target-device mac"
|
||||
;;
|
||||
esac
|
||||
|
||||
install_resource()
|
||||
{
|
||||
if [[ "$1" = /* ]] ; then
|
||||
RESOURCE_PATH="$1"
|
||||
else
|
||||
RESOURCE_PATH="${PODS_ROOT}/$1"
|
||||
fi
|
||||
if [[ ! -e "$RESOURCE_PATH" ]] ; then
|
||||
cat << EOM
|
||||
error: Resource "$RESOURCE_PATH" not found. Run 'pod install' to update the copy resources script.
|
||||
EOM
|
||||
exit 1
|
||||
fi
|
||||
case $RESOURCE_PATH in
|
||||
*.storyboard)
|
||||
echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" || true
|
||||
ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS}
|
||||
;;
|
||||
*.xib)
|
||||
echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" || true
|
||||
ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS}
|
||||
;;
|
||||
*.framework)
|
||||
echo "mkdir -p ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" || true
|
||||
mkdir -p "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
|
||||
echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" $RESOURCE_PATH ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" || true
|
||||
rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
|
||||
;;
|
||||
*.xcdatamodel)
|
||||
echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH"`.mom\"" || true
|
||||
xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodel`.mom"
|
||||
;;
|
||||
*.xcdatamodeld)
|
||||
echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd\"" || true
|
||||
xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd"
|
||||
;;
|
||||
*.xcmappingmodel)
|
||||
echo "xcrun mapc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm\"" || true
|
||||
xcrun mapc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm"
|
||||
;;
|
||||
*.xcassets)
|
||||
ABSOLUTE_XCASSET_FILE="$RESOURCE_PATH"
|
||||
XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE")
|
||||
;;
|
||||
*)
|
||||
echo "$RESOURCE_PATH" || true
|
||||
echo "$RESOURCE_PATH" >> "$RESOURCES_TO_COPY"
|
||||
;;
|
||||
esac
|
||||
}
|
||||
if [[ "$CONFIGURATION" == "Debug" ]]; then
|
||||
install_resource "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker/QBImagePicker.bundle"
|
||||
install_resource "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/AntDesign.ttf"
|
||||
install_resource "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Entypo.ttf"
|
||||
install_resource "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/EvilIcons.ttf"
|
||||
install_resource "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Feather.ttf"
|
||||
install_resource "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/FontAwesome.ttf"
|
||||
install_resource "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Brands.ttf"
|
||||
install_resource "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Regular.ttf"
|
||||
install_resource "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Solid.ttf"
|
||||
install_resource "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Fontisto.ttf"
|
||||
install_resource "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Foundation.ttf"
|
||||
install_resource "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Ionicons.ttf"
|
||||
install_resource "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/MaterialCommunityIcons.ttf"
|
||||
install_resource "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/MaterialIcons.ttf"
|
||||
install_resource "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Octicons.ttf"
|
||||
install_resource "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/SimpleLineIcons.ttf"
|
||||
install_resource "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Zocial.ttf"
|
||||
install_resource "${PODS_CONFIGURATION_BUILD_DIR}/React-Core/AccessibilityResources.bundle"
|
||||
install_resource "${PODS_CONFIGURATION_BUILD_DIR}/TOCropViewController/TOCropViewControllerBundle.bundle"
|
||||
fi
|
||||
if [[ "$CONFIGURATION" == "Release" ]]; then
|
||||
install_resource "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker/QBImagePicker.bundle"
|
||||
install_resource "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/AntDesign.ttf"
|
||||
install_resource "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Entypo.ttf"
|
||||
install_resource "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/EvilIcons.ttf"
|
||||
install_resource "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Feather.ttf"
|
||||
install_resource "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/FontAwesome.ttf"
|
||||
install_resource "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Brands.ttf"
|
||||
install_resource "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Regular.ttf"
|
||||
install_resource "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Solid.ttf"
|
||||
install_resource "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Fontisto.ttf"
|
||||
install_resource "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Foundation.ttf"
|
||||
install_resource "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Ionicons.ttf"
|
||||
install_resource "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/MaterialCommunityIcons.ttf"
|
||||
install_resource "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/MaterialIcons.ttf"
|
||||
install_resource "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Octicons.ttf"
|
||||
install_resource "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/SimpleLineIcons.ttf"
|
||||
install_resource "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Zocial.ttf"
|
||||
install_resource "${PODS_CONFIGURATION_BUILD_DIR}/React-Core/AccessibilityResources.bundle"
|
||||
install_resource "${PODS_CONFIGURATION_BUILD_DIR}/TOCropViewController/TOCropViewControllerBundle.bundle"
|
||||
fi
|
||||
|
||||
mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"
|
||||
rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"
|
||||
if [[ "${ACTION}" == "install" ]] && [[ "${SKIP_INSTALL}" == "NO" ]]; then
|
||||
mkdir -p "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"
|
||||
rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"
|
||||
fi
|
||||
rm -f "$RESOURCES_TO_COPY"
|
||||
|
||||
if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "${XCASSET_FILES:-}" ]
|
||||
then
|
||||
# Find all other xcassets (this unfortunately includes those of path pods and other targets).
|
||||
OTHER_XCASSETS=$(find -L "$PWD" -iname "*.xcassets" -type d)
|
||||
while read line; do
|
||||
if [[ $line != "${PODS_ROOT}*" ]]; then
|
||||
XCASSET_FILES+=("$line")
|
||||
fi
|
||||
done <<<"$OTHER_XCASSETS"
|
||||
|
||||
if [ -z ${ASSETCATALOG_COMPILER_APPICON_NAME+x} ]; then
|
||||
printf "%s\0" "${XCASSET_FILES[@]}" | xargs -0 xcrun actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${!DEPLOYMENT_TARGET_SETTING_NAME}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"
|
||||
else
|
||||
printf "%s\0" "${XCASSET_FILES[@]}" | xargs -0 xcrun actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${!DEPLOYMENT_TARGET_SETTING_NAME}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" --app-icon "${ASSETCATALOG_COMPILER_APPICON_NAME}" --output-partial-info-plist "${TARGET_TEMP_DIR}/assetcatalog_generated_info_cocoapods.plist"
|
||||
fi
|
||||
fi
|
16
ios/Pods/Target Support Files/Pods-defaults-RocketChatRN/Pods-defaults-RocketChatRN-umbrella.h
generated
Normal file
16
ios/Pods/Target Support Files/Pods-defaults-RocketChatRN/Pods-defaults-RocketChatRN-umbrella.h
generated
Normal file
|
@ -0,0 +1,16 @@
|
|||
#ifdef __OBJC__
|
||||
#import <UIKit/UIKit.h>
|
||||
#else
|
||||
#ifndef FOUNDATION_EXPORT
|
||||
#if defined(__cplusplus)
|
||||
#define FOUNDATION_EXPORT extern "C"
|
||||
#else
|
||||
#define FOUNDATION_EXPORT extern
|
||||
#endif
|
||||
#endif
|
||||
#endif
|
||||
|
||||
|
||||
FOUNDATION_EXPORT double Pods_defaults_RocketChatRNVersionNumber;
|
||||
FOUNDATION_EXPORT const unsigned char Pods_defaults_RocketChatRNVersionString[];
|
||||
|
16
ios/Pods/Target Support Files/Pods-defaults-RocketChatRN/Pods-defaults-RocketChatRN.debug.xcconfig
generated
Normal file
16
ios/Pods/Target Support Files/Pods-defaults-RocketChatRN/Pods-defaults-RocketChatRN.debug.xcconfig
generated
Normal file
File diff suppressed because one or more lines are too long
6
ios/Pods/Target Support Files/Pods-defaults-RocketChatRN/Pods-defaults-RocketChatRN.modulemap
generated
Normal file
6
ios/Pods/Target Support Files/Pods-defaults-RocketChatRN/Pods-defaults-RocketChatRN.modulemap
generated
Normal file
|
@ -0,0 +1,6 @@
|
|||
module Pods_defaults_RocketChatRN {
|
||||
umbrella header "Pods-defaults-RocketChatRN-umbrella.h"
|
||||
|
||||
export *
|
||||
module * { export * }
|
||||
}
|
16
ios/Pods/Target Support Files/Pods-defaults-RocketChatRN/Pods-defaults-RocketChatRN.release.xcconfig
generated
Normal file
16
ios/Pods/Target Support Files/Pods-defaults-RocketChatRN/Pods-defaults-RocketChatRN.release.xcconfig
generated
Normal file
File diff suppressed because one or more lines are too long
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue