@cloudcare/react-native-session-replay 0.4.2 → 0.4.3-alpha.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/FTSessionReplayReactNative.podspec +2 -2
- package/android/build.gradle +3 -3
- package/ios/FTPrivacyViewFabric.mm +3 -3
- package/ios/FTPrivacyViewPaper.mm +3 -3
- package/ios/FTRCTTextViewRecorder.h +1 -1
- package/ios/FTRCTTextViewRecorder.m +6 -7
- package/ios/FTReactNativeSessionReplay.mm +2 -2
- package/package.json +1 -1
|
@@ -17,8 +17,8 @@ Pod::Spec.new do |s|
|
|
|
17
17
|
s.source_files = "ios/**/*.{h,m,mm,swift}"
|
|
18
18
|
|
|
19
19
|
s.dependency "React-Core"
|
|
20
|
-
s.dependency "
|
|
21
|
-
s.dependency "
|
|
20
|
+
s.dependency "GuanceSDK", "1.6.7"
|
|
21
|
+
s.dependency "GuanceSDK/SessionReplay", "1.6.7"
|
|
22
22
|
|
|
23
23
|
xcconfig = {
|
|
24
24
|
"HEADER_SEARCH_PATHS" => "$(inherited) " +
|
package/android/build.gradle
CHANGED
|
@@ -150,7 +150,7 @@ repositories {
|
|
|
150
150
|
jcenter()
|
|
151
151
|
google()
|
|
152
152
|
maven {
|
|
153
|
-
url 'https://mvnrepo.
|
|
153
|
+
url 'https://mvnrepo.guance.com/repository/maven-releases'
|
|
154
154
|
}
|
|
155
155
|
|
|
156
156
|
def found = false
|
|
@@ -221,8 +221,8 @@ repositories {
|
|
|
221
221
|
|
|
222
222
|
dependencies {
|
|
223
223
|
implementation 'com.facebook.react:react-native:+'
|
|
224
|
-
implementation 'com.cloudcare.ft.mobile.sdk.tracker.agent:ft-sdk:1.7.
|
|
224
|
+
implementation 'com.cloudcare.ft.mobile.sdk.tracker.agent:ft-sdk:1.7.5'
|
|
225
225
|
implementation 'com.cloudcare.ft.mobile.sdk.tracker.agent:ft-native:1.1.2'
|
|
226
|
-
implementation 'com.cloudcare.ft.mobile.sdk.tracker.agent:ft-session-replay:0.1.
|
|
226
|
+
implementation 'com.cloudcare.ft.mobile.sdk.tracker.agent:ft-session-replay:0.1.8'
|
|
227
227
|
implementation 'com.google.code.gson:gson:2.8.5'
|
|
228
228
|
}
|
|
@@ -14,9 +14,9 @@
|
|
|
14
14
|
|
|
15
15
|
#import "FTPrivacyViewFabric.h"
|
|
16
16
|
#import <objc/runtime.h>
|
|
17
|
-
#import <
|
|
18
|
-
#import <
|
|
19
|
-
#import <
|
|
17
|
+
#import <GuanceSDK/FTSessionReplayPrivacyOverrides.h>
|
|
18
|
+
#import <GuanceSDK/UIView+FTSRPrivacy.h>
|
|
19
|
+
#import <GuanceSDK/FTSessionReplayPrivacyOverrides+Extension.h>
|
|
20
20
|
using namespace facebook::react;
|
|
21
21
|
|
|
22
22
|
@implementation FTPrivacyViewFabric
|
|
@@ -6,9 +6,9 @@
|
|
|
6
6
|
*
|
|
7
7
|
*/
|
|
8
8
|
#import "FTPrivacyViewPaper.h"
|
|
9
|
-
#import <
|
|
10
|
-
#import <
|
|
11
|
-
#import <
|
|
9
|
+
#import <GuanceSDK/FTSessionReplayPrivacyOverrides.h>
|
|
10
|
+
#import <GuanceSDK/UIView+FTSRPrivacy.h>
|
|
11
|
+
#import <GuanceSDK/FTSessionReplayPrivacyOverrides+Extension.h>
|
|
12
12
|
|
|
13
13
|
@interface FTPrivacyView : UIView
|
|
14
14
|
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
//
|
|
7
7
|
|
|
8
8
|
#import <Foundation/Foundation.h>
|
|
9
|
-
#import <
|
|
9
|
+
#import <GuanceSDK/FTSRNodeWireframesBuilder.h>
|
|
10
10
|
#import <React/RCTUIManager.h>
|
|
11
11
|
@class FTViewAttributes,FTViewTreeRecorder,FTSRColorSnapshot;
|
|
12
12
|
NS_ASSUME_NONNULL_BEGIN
|
|
@@ -11,12 +11,12 @@
|
|
|
11
11
|
#import <React/RCTRawTextShadowView.h>
|
|
12
12
|
#import <React/RCTTextShadowView.h>
|
|
13
13
|
#import <React/RCTVirtualTextShadowView.h>
|
|
14
|
-
#import <
|
|
15
|
-
#import <
|
|
16
|
-
#import <
|
|
17
|
-
#import <
|
|
18
|
-
#import <
|
|
19
|
-
#import <
|
|
14
|
+
#import <GuanceSDK/FTSRWireframe.h>
|
|
15
|
+
#import <GuanceSDK/FTViewAttributes.h>
|
|
16
|
+
#import <GuanceSDK/FTSRUtils.h>
|
|
17
|
+
#import <GuanceSDK/FTSystemColors.h>
|
|
18
|
+
#import <GuanceSDK/FTViewTreeRecordingContext.h>
|
|
19
|
+
#import <GuanceSDK/FTSRUtils.h>
|
|
20
20
|
#import <React/RCTShadowView+Layout.h>
|
|
21
21
|
#import "FTRCTFabricWrapper.h"
|
|
22
22
|
|
|
@@ -168,4 +168,3 @@
|
|
|
168
168
|
}
|
|
169
169
|
@end
|
|
170
170
|
|
|
171
|
-
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
#import "FTReactNativeSessionReplay.h"
|
|
2
|
-
#import <
|
|
3
|
-
#import <
|
|
2
|
+
#import <GuanceSDK/FTRumSessionReplay.h>
|
|
3
|
+
#import <GuanceSDK/FTSessionReplayConfig+Private.h>
|
|
4
4
|
#import <React/RCTConvert.h>
|
|
5
5
|
#import "FTRCTTextViewRecorder.h"
|
|
6
6
|
@implementation FTReactNativeSessionReplay
|
package/package.json
CHANGED