react-native-repro 4.1.1 → 4.3.0
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/android/src/main/java/io/repro/android/reactbridge/ReproReactBridgeModuleImpl.java +1 -1
- package/ios/RPRReproReactBridge.h +1 -1
- package/ios/RPRReproReactBridge.mm +62 -37
- package/package.json +1 -1
- package/sdk-android/io/repro/repro-android-sdk/5.22.0/repro-android-sdk-5.22.0.aar +0 -0
- package/sdk-android/io/repro/repro-android-sdk/5.22.0/repro-android-sdk-5.22.0.aar.md5 +1 -0
- package/sdk-android/io/repro/repro-android-sdk/5.22.0/repro-android-sdk-5.22.0.aar.sha1 +1 -0
- package/sdk-android/io/repro/repro-android-sdk/{5.20.7/repro-android-sdk-5.20.7.pom → 5.22.0/repro-android-sdk-5.22.0.pom} +2 -2
- package/sdk-android/io/repro/repro-android-sdk/5.22.0/repro-android-sdk-5.22.0.pom.md5 +1 -0
- package/sdk-android/io/repro/repro-android-sdk/5.22.0/repro-android-sdk-5.22.0.pom.sha1 +1 -0
- package/sdk-android/io/repro/repro-android-sdk/maven-metadata.xml +3 -3
- package/sdk-android/io/repro/repro-android-sdk/maven-metadata.xml.md5 +1 -1
- package/sdk-android/io/repro/repro-android-sdk/maven-metadata.xml.sha1 +1 -1
- package/sdk-ios/Repro.xcframework/_CodeSignature/CodeDirectory +0 -0
- package/sdk-ios/Repro.xcframework/_CodeSignature/CodeRequirements-1 +0 -0
- package/sdk-ios/Repro.xcframework/_CodeSignature/CodeResources +12 -12
- package/sdk-ios/Repro.xcframework/_CodeSignature/CodeSignature +0 -0
- package/sdk-ios/Repro.xcframework/ios-arm64_armv7_armv7s/Repro.framework/Info.plist +0 -0
- package/sdk-ios/Repro.xcframework/ios-arm64_armv7_armv7s/Repro.framework/Repro +0 -0
- package/sdk-ios/Repro.xcframework/ios-arm64_i386_x86_64-simulator/Repro.framework/Info.plist +0 -0
- package/sdk-ios/Repro.xcframework/ios-arm64_i386_x86_64-simulator/Repro.framework/Repro +0 -0
- package/sdk-android/io/repro/repro-android-sdk/5.20.7/repro-android-sdk-5.20.7.aar +0 -0
- package/sdk-android/io/repro/repro-android-sdk/5.20.7/repro-android-sdk-5.20.7.aar.md5 +0 -1
- package/sdk-android/io/repro/repro-android-sdk/5.20.7/repro-android-sdk-5.20.7.aar.sha1 +0 -1
- package/sdk-android/io/repro/repro-android-sdk/5.20.7/repro-android-sdk-5.20.7.pom.md5 +0 -1
- package/sdk-android/io/repro/repro-android-sdk/5.20.7/repro-android-sdk-5.20.7.pom.sha1 +0 -1
|
@@ -51,7 +51,7 @@ public class ReproReactBridgeModuleImpl {
|
|
|
51
51
|
public static final int CAMPAIGN_TYPE_WEB_MESSAGE = (1 << 2);
|
|
52
52
|
public static final int CAMPAIGN_TYPE_ALL = (1 << 3);
|
|
53
53
|
|
|
54
|
-
private static final String REPRO_REACT_NATIVE_BRIDGE_VERSION = "4.
|
|
54
|
+
private static final String REPRO_REACT_NATIVE_BRIDGE_VERSION = "4.3.0";
|
|
55
55
|
|
|
56
56
|
public static final String NAME = "ReproReactBridgeModule";
|
|
57
57
|
|
|
@@ -490,9 +490,9 @@ RCT_EXPORT_MODULE(ReproReactBridgeModule)
|
|
|
490
490
|
[_reproImpl setStringUserProfile:key value:value];
|
|
491
491
|
}
|
|
492
492
|
|
|
493
|
-
- (void)setIntUserProfile:(NSString *)key value:(
|
|
493
|
+
- (void)setIntUserProfile:(NSString *)key value:(double)value
|
|
494
494
|
{
|
|
495
|
-
[_reproImpl setIntUserProfile:key value:value];
|
|
495
|
+
[_reproImpl setIntUserProfile:key value:(NSInteger)value];
|
|
496
496
|
}
|
|
497
497
|
|
|
498
498
|
- (void)setDoubleUserProfile:(NSString *)key value:(double)value
|
|
@@ -500,14 +500,20 @@ RCT_EXPORT_MODULE(ReproReactBridgeModule)
|
|
|
500
500
|
[_reproImpl setDoubleUserProfile:key value:value];
|
|
501
501
|
}
|
|
502
502
|
|
|
503
|
-
- (void)setDateUserProfile:(NSString *)key value:(
|
|
503
|
+
- (void)setDateUserProfile:(NSString *)key value:(NSString *)value
|
|
504
504
|
{
|
|
505
|
-
[
|
|
505
|
+
NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
|
|
506
|
+
[formatter setDateFormat:@"yyyy-MM-dd'T'HH:mm:ss.SSSZ"];
|
|
507
|
+
[formatter setLocale:[NSLocale localeWithLocaleIdentifier:@"en_US_POSIX"]];
|
|
508
|
+
NSDate *date = [formatter dateFromString:value];
|
|
509
|
+
|
|
510
|
+
[_reproImpl setDateUserProfile:key value:date];
|
|
506
511
|
}
|
|
507
512
|
|
|
508
|
-
- (void)setUserGender:(
|
|
513
|
+
- (void)setUserGender:(double)value
|
|
509
514
|
{
|
|
510
|
-
|
|
515
|
+
NSInteger intValue = (NSInteger)value;
|
|
516
|
+
[_reproImpl setUserGender:(RPRUserProfileGender)intValue];
|
|
511
517
|
}
|
|
512
518
|
|
|
513
519
|
- (void)setUserEmailAddress:(NSString *)value
|
|
@@ -515,19 +521,25 @@ RCT_EXPORT_MODULE(ReproReactBridgeModule)
|
|
|
515
521
|
[_reproImpl setUserEmailAddress:value];
|
|
516
522
|
}
|
|
517
523
|
|
|
518
|
-
- (void)setUserResidencePrefecture:(
|
|
524
|
+
- (void)setUserResidencePrefecture:(double)value
|
|
519
525
|
{
|
|
520
|
-
|
|
526
|
+
NSInteger intValue = (NSInteger)value;
|
|
527
|
+
[_reproImpl setUserResidencePrefecture:(RPRUserProfilePrefecture)intValue];
|
|
521
528
|
}
|
|
522
529
|
|
|
523
|
-
- (void)setUserDateOfBirth:(
|
|
530
|
+
- (void)setUserDateOfBirth:(NSString *)value
|
|
524
531
|
{
|
|
525
|
-
[
|
|
532
|
+
NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
|
|
533
|
+
[formatter setDateFormat:@"yyyy-MM-dd'T'HH:mm:ss.SSSZ"];
|
|
534
|
+
[formatter setLocale:[NSLocale localeWithLocaleIdentifier:@"en_US_POSIX"]];
|
|
535
|
+
NSDate *date = [formatter dateFromString:value];
|
|
536
|
+
|
|
537
|
+
[_reproImpl setUserDateOfBirth:date];
|
|
526
538
|
}
|
|
527
539
|
|
|
528
|
-
- (void)setUserAge:(
|
|
540
|
+
- (void)setUserAge:(double)value
|
|
529
541
|
{
|
|
530
|
-
[_reproImpl setUserAge:value];
|
|
542
|
+
[_reproImpl setUserAge:(NSInteger)value];
|
|
531
543
|
}
|
|
532
544
|
|
|
533
545
|
- (void)onlySetIfAbsentStringUserProfile:(NSString *)key value:(NSString *)value
|
|
@@ -535,9 +547,9 @@ RCT_EXPORT_MODULE(ReproReactBridgeModule)
|
|
|
535
547
|
[_reproImpl onlySetIfAbsentStringUserProfile:key value:value];
|
|
536
548
|
}
|
|
537
549
|
|
|
538
|
-
- (void)onlySetIfAbsentIntUserProfile:(NSString *)key value:(
|
|
550
|
+
- (void)onlySetIfAbsentIntUserProfile:(NSString *)key value:(double)value
|
|
539
551
|
{
|
|
540
|
-
[_reproImpl onlySetIfAbsentIntUserProfile:key value:value];
|
|
552
|
+
[_reproImpl onlySetIfAbsentIntUserProfile:key value:(NSInteger)value];
|
|
541
553
|
}
|
|
542
554
|
|
|
543
555
|
- (void)onlySetIfAbsentDoubleUserProfile:(NSString *)key value:(double)value
|
|
@@ -545,19 +557,24 @@ RCT_EXPORT_MODULE(ReproReactBridgeModule)
|
|
|
545
557
|
[_reproImpl onlySetIfAbsentDoubleUserProfile:key value:value];
|
|
546
558
|
}
|
|
547
559
|
|
|
548
|
-
- (void)onlySetIfAbsentDateUserProfile:(NSString *)key value:(
|
|
560
|
+
- (void)onlySetIfAbsentDateUserProfile:(NSString *)key value:(NSString *)value
|
|
549
561
|
{
|
|
550
|
-
[
|
|
562
|
+
NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
|
|
563
|
+
[formatter setDateFormat:@"yyyy-MM-dd'T'HH:mm:ss.SSSZ"];
|
|
564
|
+
[formatter setLocale:[NSLocale localeWithLocaleIdentifier:@"en_US_POSIX"]];
|
|
565
|
+
NSDate *date = [formatter dateFromString:value];
|
|
566
|
+
|
|
567
|
+
[_reproImpl onlySetIfAbsentDateUserProfile:key value:date];
|
|
551
568
|
}
|
|
552
569
|
|
|
553
|
-
- (void)incrementIntUserProfileBy:(NSString *)key value:(
|
|
570
|
+
- (void)incrementIntUserProfileBy:(NSString *)key value:(double)value
|
|
554
571
|
{
|
|
555
|
-
[_reproImpl incrementIntUserProfileBy:key value:value];
|
|
572
|
+
[_reproImpl incrementIntUserProfileBy:key value:(NSInteger)value];
|
|
556
573
|
}
|
|
557
574
|
|
|
558
|
-
- (void)decrementIntUserProfileBy:(NSString *)key value:(
|
|
575
|
+
- (void)decrementIntUserProfileBy:(NSString *)key value:(double)value
|
|
559
576
|
{
|
|
560
|
-
[_reproImpl decrementIntUserProfileBy:key value:value];
|
|
577
|
+
[_reproImpl decrementIntUserProfileBy:key value:(NSInteger)value];
|
|
561
578
|
}
|
|
562
579
|
|
|
563
580
|
- (void)incrementDoubleUserProfileBy:(NSString *)key value:(double)value
|
|
@@ -570,9 +587,10 @@ RCT_EXPORT_MODULE(ReproReactBridgeModule)
|
|
|
570
587
|
[_reproImpl decrementDoubleUserProfileBy:key value:value];
|
|
571
588
|
}
|
|
572
589
|
|
|
573
|
-
- (void)onlySetIfAbsentUserGender:(
|
|
590
|
+
- (void)onlySetIfAbsentUserGender:(double)value
|
|
574
591
|
{
|
|
575
|
-
|
|
592
|
+
NSInteger intValue = (NSInteger)value;
|
|
593
|
+
[_reproImpl onlySetIfAbsentUserGender:(RPRUserProfileGender)value];
|
|
576
594
|
}
|
|
577
595
|
|
|
578
596
|
- (void)onlySetIfAbsentUserEmailAddress:(NSString *)value
|
|
@@ -580,29 +598,35 @@ RCT_EXPORT_MODULE(ReproReactBridgeModule)
|
|
|
580
598
|
[_reproImpl onlySetIfAbsentUserEmailAddress:value];
|
|
581
599
|
}
|
|
582
600
|
|
|
583
|
-
- (void)onlySetIfAbsentUserResidencePrefecture:(
|
|
601
|
+
- (void)onlySetIfAbsentUserResidencePrefecture:(double)value
|
|
584
602
|
{
|
|
585
|
-
|
|
603
|
+
NSInteger intValue = (NSInteger)value;
|
|
604
|
+
[_reproImpl onlySetIfAbsentUserResidencePrefecture:(RPRUserProfilePrefecture)intValue];
|
|
586
605
|
}
|
|
587
606
|
|
|
588
|
-
- (void)onlySetIfAbsentUserDateOfBirth:(
|
|
607
|
+
- (void)onlySetIfAbsentUserDateOfBirth:(NSString *)value
|
|
589
608
|
{
|
|
590
|
-
[
|
|
609
|
+
NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
|
|
610
|
+
[formatter setDateFormat:@"yyyy-MM-dd'T'HH:mm:ss.SSSZ"];
|
|
611
|
+
[formatter setLocale:[NSLocale localeWithLocaleIdentifier:@"en_US_POSIX"]];
|
|
612
|
+
NSDate *date = [formatter dateFromString:value];
|
|
613
|
+
|
|
614
|
+
[_reproImpl onlySetIfAbsentUserDateOfBirth:date];
|
|
591
615
|
}
|
|
592
616
|
|
|
593
|
-
- (void)onlySetIfAbsentUserAge:(
|
|
617
|
+
- (void)onlySetIfAbsentUserAge:(double)value
|
|
594
618
|
{
|
|
595
|
-
[_reproImpl onlySetIfAbsentUserAge:value];
|
|
619
|
+
[_reproImpl onlySetIfAbsentUserAge:(NSInteger)value];
|
|
596
620
|
}
|
|
597
621
|
|
|
598
|
-
- (void)incrementUserAgeBy:(
|
|
622
|
+
- (void)incrementUserAgeBy:(double)value
|
|
599
623
|
{
|
|
600
|
-
[_reproImpl incrementUserAgeBy:value];
|
|
624
|
+
[_reproImpl incrementUserAgeBy:(NSInteger)value];
|
|
601
625
|
}
|
|
602
626
|
|
|
603
|
-
- (void)decrementUserAgeBy:(
|
|
627
|
+
- (void)decrementUserAgeBy:(double)value
|
|
604
628
|
{
|
|
605
|
-
[_reproImpl decrementUserAgeBy:value];
|
|
629
|
+
[_reproImpl decrementUserAgeBy:(NSInteger)value];
|
|
606
630
|
}
|
|
607
631
|
|
|
608
632
|
- (void)deleteUserProfile:(NSString *)key
|
|
@@ -703,9 +727,10 @@ RCT_EXPORT_MODULE(ReproReactBridgeModule)
|
|
|
703
727
|
|
|
704
728
|
// Other
|
|
705
729
|
|
|
706
|
-
- (void)setLogLevel:(
|
|
730
|
+
- (void)setLogLevel:(double)level
|
|
707
731
|
{
|
|
708
|
-
|
|
732
|
+
NSInteger intLevel = (NSInteger)level;
|
|
733
|
+
[_reproImpl setLogLevel:(RPRLogLevel)intLevel];
|
|
709
734
|
}
|
|
710
735
|
|
|
711
736
|
- (void)setPushDeviceTokenString:(NSString *)deviceTokenHexString
|
|
@@ -857,7 +882,7 @@ RCT_EXPORT_METHOD(setDateUserProfile:(NSString *)key value:(NSDate *)value)
|
|
|
857
882
|
[_reproImpl setDateUserProfile:key value:value];
|
|
858
883
|
}
|
|
859
884
|
|
|
860
|
-
RCT_EXPORT_METHOD(setUserGender:(
|
|
885
|
+
RCT_EXPORT_METHOD(setUserGender:(NSInteger)value)
|
|
861
886
|
{
|
|
862
887
|
[_reproImpl setUserGender:value];
|
|
863
888
|
}
|
|
@@ -867,7 +892,7 @@ RCT_EXPORT_METHOD(setUserEmailAddress:(NSString *)value)
|
|
|
867
892
|
[_reproImpl setUserEmailAddress:value];
|
|
868
893
|
}
|
|
869
894
|
|
|
870
|
-
RCT_EXPORT_METHOD(setUserResidencePrefecture:(
|
|
895
|
+
RCT_EXPORT_METHOD(setUserResidencePrefecture:(NSInteger)value)
|
|
871
896
|
{
|
|
872
897
|
[_reproImpl setUserResidencePrefecture:value];
|
|
873
898
|
}
|
|
@@ -892,7 +917,7 @@ RCT_EXPORT_METHOD(onlySetIfAbsentIntUserProfile:(NSString *)key value:(NSInteger
|
|
|
892
917
|
[_reproImpl onlySetIfAbsentIntUserProfile:key value:value];
|
|
893
918
|
}
|
|
894
919
|
|
|
895
|
-
RCT_EXPORT_METHOD(onlySetIfAbsentDoubleUserProfile:(NSString *)key value:(
|
|
920
|
+
RCT_EXPORT_METHOD(onlySetIfAbsentDoubleUserProfile:(NSString *)key value:(NSInteger)value)
|
|
896
921
|
{
|
|
897
922
|
[_reproImpl onlySetIfAbsentDoubleUserProfile:key value:value];
|
|
898
923
|
}
|
package/package.json
CHANGED
|
Binary file
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
a97a982b4fb26473f023802730e74620
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
6d10ecee5fda58c5c9ed341459966c96b3125c72
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
|
|
7
7
|
<groupId>io.repro</groupId>
|
|
8
8
|
<artifactId>repro-android-sdk</artifactId>
|
|
9
|
-
<version>5.
|
|
9
|
+
<version>5.22.0</version>
|
|
10
10
|
<packaging>aar</packaging>
|
|
11
11
|
|
|
12
12
|
<name>Repro</name>
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
<licenses>
|
|
17
17
|
<license>
|
|
18
18
|
<name>LicenseRef-Repro-SDK-License</name>
|
|
19
|
-
<url>https://cdn.reproio.com/android/io/repro/repro-android-sdk/5.
|
|
19
|
+
<url>https://cdn.reproio.com/android/io/repro/repro-android-sdk/5.22.0/LICENSE</url>
|
|
20
20
|
<distribution>repo</distribution>
|
|
21
21
|
<comments>See LICENSE file</comments>
|
|
22
22
|
</license>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
9d77de1b13d41e9f8699024e903157e4
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
d5049db555855a1ad75b30df71d1832e453252af
|
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
<groupId>io.repro</groupId>
|
|
4
4
|
<artifactId>repro-android-sdk</artifactId>
|
|
5
5
|
<versioning>
|
|
6
|
-
<release>5.
|
|
6
|
+
<release>5.22.0</release>
|
|
7
7
|
<versions>
|
|
8
|
-
<version>5.
|
|
8
|
+
<version>5.22.0</version>
|
|
9
9
|
</versions>
|
|
10
|
-
<lastUpdated>
|
|
10
|
+
<lastUpdated>20260401181720</lastUpdated>
|
|
11
11
|
</versioning>
|
|
12
12
|
</metadata>
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
b88c63689b3d653e460345ef8474e30f
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
30b7487fcf495c79e7569acb78f7a89567a45851
|
|
Binary file
|
|
Binary file
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
</data>
|
|
27
27
|
<key>ios-arm64_armv7_armv7s/Repro.framework/Info.plist</key>
|
|
28
28
|
<data>
|
|
29
|
-
|
|
29
|
+
wbFDPm7auhutOwhuZy61fuRzBJM=
|
|
30
30
|
</data>
|
|
31
31
|
<key>ios-arm64_armv7_armv7s/Repro.framework/Modules/module.modulemap</key>
|
|
32
32
|
<data>
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
</data>
|
|
39
39
|
<key>ios-arm64_armv7_armv7s/Repro.framework/Repro</key>
|
|
40
40
|
<data>
|
|
41
|
-
|
|
41
|
+
ExabxLrcgpi1UeT7e482mJZtzgM=
|
|
42
42
|
</data>
|
|
43
43
|
<key>ios-arm64_i386_x86_64-simulator/Repro.framework/Headers/RPREventProperties.h</key>
|
|
44
44
|
<data>
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
</data>
|
|
63
63
|
<key>ios-arm64_i386_x86_64-simulator/Repro.framework/Info.plist</key>
|
|
64
64
|
<data>
|
|
65
|
-
|
|
65
|
+
7AKC69PXiXv/vI40DSj7duUFAhM=
|
|
66
66
|
</data>
|
|
67
67
|
<key>ios-arm64_i386_x86_64-simulator/Repro.framework/Modules/module.modulemap</key>
|
|
68
68
|
<data>
|
|
@@ -74,7 +74,7 @@
|
|
|
74
74
|
</data>
|
|
75
75
|
<key>ios-arm64_i386_x86_64-simulator/Repro.framework/Repro</key>
|
|
76
76
|
<data>
|
|
77
|
-
|
|
77
|
+
30p9AfsPJWcUvjBXxoyaQNfV0a8=
|
|
78
78
|
</data>
|
|
79
79
|
</dict>
|
|
80
80
|
<key>files2</key>
|
|
@@ -138,11 +138,11 @@
|
|
|
138
138
|
<dict>
|
|
139
139
|
<key>hash</key>
|
|
140
140
|
<data>
|
|
141
|
-
|
|
141
|
+
wbFDPm7auhutOwhuZy61fuRzBJM=
|
|
142
142
|
</data>
|
|
143
143
|
<key>hash2</key>
|
|
144
144
|
<data>
|
|
145
|
-
|
|
145
|
+
hrysnPDxcIrLyFdCFf/YqDx+0euDeEVVWMsmLIGbJ18=
|
|
146
146
|
</data>
|
|
147
147
|
</dict>
|
|
148
148
|
<key>ios-arm64_armv7_armv7s/Repro.framework/Modules/module.modulemap</key>
|
|
@@ -171,11 +171,11 @@
|
|
|
171
171
|
<dict>
|
|
172
172
|
<key>hash</key>
|
|
173
173
|
<data>
|
|
174
|
-
|
|
174
|
+
ExabxLrcgpi1UeT7e482mJZtzgM=
|
|
175
175
|
</data>
|
|
176
176
|
<key>hash2</key>
|
|
177
177
|
<data>
|
|
178
|
-
|
|
178
|
+
lcRuYVYEQCfyrGngRPdg7+7xuhugMCPNphy5/OCI0Lw=
|
|
179
179
|
</data>
|
|
180
180
|
</dict>
|
|
181
181
|
<key>ios-arm64_i386_x86_64-simulator/Repro.framework/Headers/RPREventProperties.h</key>
|
|
@@ -237,11 +237,11 @@
|
|
|
237
237
|
<dict>
|
|
238
238
|
<key>hash</key>
|
|
239
239
|
<data>
|
|
240
|
-
|
|
240
|
+
7AKC69PXiXv/vI40DSj7duUFAhM=
|
|
241
241
|
</data>
|
|
242
242
|
<key>hash2</key>
|
|
243
243
|
<data>
|
|
244
|
-
|
|
244
|
+
Pp7lS9YsjteaCVnbdKj3zwb9DezrvthOANXdT65cAAE=
|
|
245
245
|
</data>
|
|
246
246
|
</dict>
|
|
247
247
|
<key>ios-arm64_i386_x86_64-simulator/Repro.framework/Modules/module.modulemap</key>
|
|
@@ -270,11 +270,11 @@
|
|
|
270
270
|
<dict>
|
|
271
271
|
<key>hash</key>
|
|
272
272
|
<data>
|
|
273
|
-
|
|
273
|
+
30p9AfsPJWcUvjBXxoyaQNfV0a8=
|
|
274
274
|
</data>
|
|
275
275
|
<key>hash2</key>
|
|
276
276
|
<data>
|
|
277
|
-
|
|
277
|
+
2GxEmbd4D5PfPQyRS9FRq5DFXGK1V5v/VzleZ6hY08E=
|
|
278
278
|
</data>
|
|
279
279
|
</dict>
|
|
280
280
|
</dict>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/sdk-ios/Repro.xcframework/ios-arm64_i386_x86_64-simulator/Repro.framework/Info.plist
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
db40984b96059a39b721394a13974929
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
503e891beae32855414865abc0e7ee0528835988
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
c49ef8625c8fe0fd205e6f1ad769693b
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
919bc33515b33190bf69c299be65183a2815c821
|