@exodus/react-native-webview 11.26.1-exodus.19 → 11.26.1-exodus.20

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.
Files changed (27) hide show
  1. package/android/src/main/java/com/reactnativecommunity/webview/RNCWebViewManager.java +10 -1
  2. package/lib/WebView.android.js +11 -9
  3. package/lib/WebView.ios.js +8 -6
  4. package/package.json +1 -1
  5. package/android/.gradle/8.1.1/checksums/checksums.lock +0 -0
  6. package/android/.gradle/8.1.1/checksums/md5-checksums.bin +0 -0
  7. package/android/.gradle/8.1.1/checksums/sha1-checksums.bin +0 -0
  8. package/android/.gradle/8.1.1/dependencies-accessors/dependencies-accessors.lock +0 -0
  9. package/android/.gradle/8.1.1/dependencies-accessors/gc.properties +0 -0
  10. package/android/.gradle/8.1.1/fileChanges/last-build.bin +0 -0
  11. package/android/.gradle/8.1.1/fileHashes/fileHashes.lock +0 -0
  12. package/android/.gradle/8.1.1/gc.properties +0 -0
  13. package/android/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
  14. package/android/.gradle/buildOutputCleanup/cache.properties +0 -2
  15. package/android/.gradle/vcs-1/gc.properties +0 -0
  16. package/ios/Pods/Manifest.lock +0 -3
  17. package/ios/Pods/Pods.xcodeproj/project.pbxproj +0 -397
  18. package/ios/Pods/Pods.xcodeproj/xcuserdata/gabrielezenwankwo.xcuserdatad/xcschemes/Pods-RNCWebView.xcscheme +0 -58
  19. package/ios/Pods/Pods.xcodeproj/xcuserdata/gabrielezenwankwo.xcuserdatad/xcschemes/xcschememanagement.plist +0 -16
  20. package/ios/Pods/Target Support Files/Pods-RNCWebView/Pods-RNCWebView-Info.plist +0 -26
  21. package/ios/Pods/Target Support Files/Pods-RNCWebView/Pods-RNCWebView-acknowledgements.markdown +0 -3
  22. package/ios/Pods/Target Support Files/Pods-RNCWebView/Pods-RNCWebView-acknowledgements.plist +0 -29
  23. package/ios/Pods/Target Support Files/Pods-RNCWebView/Pods-RNCWebView-dummy.m +0 -5
  24. package/ios/Pods/Target Support Files/Pods-RNCWebView/Pods-RNCWebView-umbrella.h +0 -16
  25. package/ios/Pods/Target Support Files/Pods-RNCWebView/Pods-RNCWebView.debug.xcconfig +0 -8
  26. package/ios/Pods/Target Support Files/Pods-RNCWebView/Pods-RNCWebView.modulemap +0 -6
  27. package/ios/Pods/Target Support Files/Pods-RNCWebView/Pods-RNCWebView.release.xcconfig +0 -8
@@ -98,6 +98,9 @@ import java.util.HashMap;
98
98
  import java.util.List;
99
99
  import java.util.Locale;
100
100
  import java.util.Map;
101
+ import java.util.HashSet;
102
+ import java.util.Set;
103
+
101
104
  import java.util.concurrent.atomic.AtomicReference;
102
105
 
103
106
  /**
@@ -163,7 +166,12 @@ public class RNCWebViewManager extends SimpleViewManager<WebView> {
163
166
  protected @Nullable String mDownloadingMessage = null;
164
167
  protected @Nullable String mLackPermissionToDownloadMessage = null;
165
168
 
169
+ private static Set<String> cameraPermissionOriginWhitelist;
170
+
166
171
  public RNCWebViewManager() {
172
+ cameraPermissionOriginWhitelist = new HashSet<>();
173
+ cameraPermissionOriginWhitelist.add("https://alchemy.veriff.com/");
174
+
167
175
  mWebViewConfig = new WebViewConfig() {
168
176
  public void configWebView(WebView webView) {
169
177
  }
@@ -1054,7 +1062,8 @@ public class RNCWebViewManager extends SimpleViewManager<WebView> {
1054
1062
  for (String requestedResource : request.getResources()) {
1055
1063
  String androidPermission = null;
1056
1064
 
1057
- if (requestedResource.equals(PermissionRequest.RESOURCE_VIDEO_CAPTURE)) {
1065
+ if (requestedResource.equals(PermissionRequest.RESOURCE_VIDEO_CAPTURE)
1066
+ && cameraPermissionOriginWhitelist.contains(request.getOrigin().toString())) {
1058
1067
  androidPermission = Manifest.permission.CAMERA;
1059
1068
  } else {
1060
1069
  continue;
@@ -58,19 +58,21 @@ const WebViewComponent = forwardRef(({ overScrollMode = 'always', javaScriptEnab
58
58
  validateData,
59
59
  });
60
60
  useImperativeHandle(ref, () => ({
61
- goForward: () => Commands.goForward(webViewRef.current),
62
- goBack: () => Commands.goBack(webViewRef.current),
61
+ goForward: () => webViewRef.current && Commands.goForward(webViewRef.current),
62
+ goBack: () => webViewRef.current && Commands.goBack(webViewRef.current),
63
63
  reload: () => {
64
64
  setViewState('LOADING');
65
- Commands.reload(webViewRef.current);
65
+ if (webViewRef.current) {
66
+ Commands.reload(webViewRef.current);
67
+ }
66
68
  },
67
- stopLoading: () => Commands.stopLoading(webViewRef.current),
68
- postMessage: (data) => Commands.postMessage(webViewRef.current, data),
69
+ stopLoading: () => webViewRef.current && Commands.stopLoading(webViewRef.current),
70
+ postMessage: (data) => webViewRef.current && Commands.postMessage(webViewRef.current, data),
69
71
  // injectJavaScript: (data: string) => Commands.injectJavaScript(webViewRef.current, data),
70
- requestFocus: () => Commands.requestFocus(webViewRef.current),
71
- clearFormData: () => Commands.clearFormData(webViewRef.current),
72
- clearCache: (includeDiskFiles) => Commands.clearCache(webViewRef.current, includeDiskFiles),
73
- clearHistory: () => Commands.clearHistory(webViewRef.current),
72
+ requestFocus: () => webViewRef.current && Commands.requestFocus(webViewRef.current),
73
+ clearFormData: () => webViewRef.current && Commands.clearFormData(webViewRef.current),
74
+ clearCache: (includeDiskFiles) => webViewRef.current && Commands.clearCache(webViewRef.current, includeDiskFiles),
75
+ clearHistory: () => webViewRef.current && Commands.clearHistory(webViewRef.current),
74
76
  }), [setViewState, webViewRef]);
75
77
  const directEventCallbacks = useMemo(() => ({
76
78
  onShouldStartLoadWithRequest,
@@ -59,16 +59,18 @@ const WebViewComponent = forwardRef(({ javaScriptEnabled = true, cacheEnabled =
59
59
  validateData,
60
60
  });
61
61
  useImperativeHandle(ref, () => ({
62
- goForward: () => Commands.goForward(webViewRef.current),
63
- goBack: () => Commands.goBack(webViewRef.current),
62
+ goForward: () => webViewRef.current && Commands.goForward(webViewRef.current),
63
+ goBack: () => webViewRef.current && Commands.goBack(webViewRef.current),
64
64
  reload: () => {
65
65
  setViewState('LOADING');
66
- Commands.reload(webViewRef.current);
66
+ if (webViewRef.current) {
67
+ Commands.reload(webViewRef.current);
68
+ }
67
69
  },
68
- stopLoading: () => Commands.stopLoading(webViewRef.current),
69
- postMessage: (data) => Commands.postMessage(webViewRef.current, data),
70
+ stopLoading: () => webViewRef.current && Commands.stopLoading(webViewRef.current),
71
+ postMessage: (data) => webViewRef.current && Commands.postMessage(webViewRef.current, data),
70
72
  // injectJavaScript: (data: string) => Commands.injectJavaScript(webViewRef.current, data),
71
- requestFocus: () => Commands.requestFocus(webViewRef.current),
73
+ requestFocus: () => webViewRef.current && Commands.requestFocus(webViewRef.current),
72
74
  }), [setViewState, webViewRef]);
73
75
  useWarnIfChanges(allowsInlineMediaPlayback, 'allowsInlineMediaPlayback');
74
76
  useWarnIfChanges(incognito, 'incognito');
package/package.json CHANGED
@@ -9,7 +9,7 @@
9
9
  "Thibault Malbranche <malbranche.thibault@gmail.com>"
10
10
  ],
11
11
  "license": "MIT",
12
- "version": "11.26.1-exodus.19",
12
+ "version": "11.26.1-exodus.20",
13
13
  "homepage": "https://github.com/ExodusMovement/react-native-webview#readme",
14
14
  "scripts": {
15
15
  "android": "react-native run-android",
File without changes
@@ -1,2 +0,0 @@
1
- #Tue Mar 19 08:27:32 WAT 2024
2
- gradle.version=8.1.1
File without changes
@@ -1,3 +0,0 @@
1
- PODFILE CHECKSUM: 075fbeb5135df616161a1d1473e2aef136ef7811
2
-
3
- COCOAPODS: 1.11.2
@@ -1,397 +0,0 @@
1
- // !$*UTF8*$!
2
- {
3
- archiveVersion = 1;
4
- classes = {
5
- };
6
- objectVersion = 46;
7
- objects = {
8
-
9
- /* Begin PBXBuildFile section */
10
- 6CB8006E35691F6CD5578E4E292C1008 /* Pods-RNCWebView-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B0B9CAEA8BB5C2FEFCD1C28FCFAE82C /* Pods-RNCWebView-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
11
- C330C523236FFF278DBE9AEBE2B4D554 /* Pods-RNCWebView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 67D4BD4BE8DEA56A7798F1F779B5CA93 /* Pods-RNCWebView-dummy.m */; };
12
- FE9684F0C73AAD8062AB338D6DE454BD /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 73010CC983E3809BECEE5348DA1BB8C6 /* Foundation.framework */; };
13
- /* End PBXBuildFile section */
14
-
15
- /* Begin PBXFileReference section */
16
- 2DB6ADEF881AE9D8E991E30186FC6D0C /* Pods-RNCWebView.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-RNCWebView.release.xcconfig"; sourceTree = "<group>"; };
17
- 3910D82445D54D92A5AB3D0E1E8CFD9C /* Pods-RNCWebView.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-RNCWebView.debug.xcconfig"; sourceTree = "<group>"; };
18
- 3B0B9CAEA8BB5C2FEFCD1C28FCFAE82C /* Pods-RNCWebView-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-RNCWebView-umbrella.h"; sourceTree = "<group>"; };
19
- 61D5465C1BBAECC46621F0CDD355F3C8 /* Pods-RNCWebView-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-RNCWebView-acknowledgements.markdown"; sourceTree = "<group>"; };
20
- 646D070357D75C9867403A59462B047E /* Pods-RNCWebView-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-RNCWebView-Info.plist"; sourceTree = "<group>"; };
21
- 67D4BD4BE8DEA56A7798F1F779B5CA93 /* Pods-RNCWebView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-RNCWebView-dummy.m"; sourceTree = "<group>"; };
22
- 73010CC983E3809BECEE5348DA1BB8C6 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; };
23
- 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
24
- A90921030C2CD02A48655AA74AE77C52 /* Pods-RNCWebView.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-RNCWebView.modulemap"; sourceTree = "<group>"; };
25
- C0407D0C7A1399A03B77A8DFE71A5AA2 /* Pods-RNCWebView */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-RNCWebView"; path = Pods_RNCWebView.framework; sourceTree = BUILT_PRODUCTS_DIR; };
26
- E9E0D469533C22B227FF075CADFF64A8 /* Pods-RNCWebView-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-RNCWebView-acknowledgements.plist"; sourceTree = "<group>"; };
27
- /* End PBXFileReference section */
28
-
29
- /* Begin PBXFrameworksBuildPhase section */
30
- 4705E9731F3ED326FDBB6B631FD08058 /* Frameworks */ = {
31
- isa = PBXFrameworksBuildPhase;
32
- buildActionMask = 2147483647;
33
- files = (
34
- FE9684F0C73AAD8062AB338D6DE454BD /* Foundation.framework in Frameworks */,
35
- );
36
- runOnlyForDeploymentPostprocessing = 0;
37
- };
38
- /* End PBXFrameworksBuildPhase section */
39
-
40
- /* Begin PBXGroup section */
41
- 3C86CCD4B539D19A1304A26E5A2CC8B5 /* Products */ = {
42
- isa = PBXGroup;
43
- children = (
44
- C0407D0C7A1399A03B77A8DFE71A5AA2 /* Pods-RNCWebView */,
45
- );
46
- name = Products;
47
- sourceTree = "<group>";
48
- };
49
- 578452D2E740E91742655AC8F1636D1F /* iOS */ = {
50
- isa = PBXGroup;
51
- children = (
52
- 73010CC983E3809BECEE5348DA1BB8C6 /* Foundation.framework */,
53
- );
54
- name = iOS;
55
- sourceTree = "<group>";
56
- };
57
- 6B958EC19CCF5688DFD0583FCA6942DD /* Pods-RNCWebView */ = {
58
- isa = PBXGroup;
59
- children = (
60
- A90921030C2CD02A48655AA74AE77C52 /* Pods-RNCWebView.modulemap */,
61
- 61D5465C1BBAECC46621F0CDD355F3C8 /* Pods-RNCWebView-acknowledgements.markdown */,
62
- E9E0D469533C22B227FF075CADFF64A8 /* Pods-RNCWebView-acknowledgements.plist */,
63
- 67D4BD4BE8DEA56A7798F1F779B5CA93 /* Pods-RNCWebView-dummy.m */,
64
- 646D070357D75C9867403A59462B047E /* Pods-RNCWebView-Info.plist */,
65
- 3B0B9CAEA8BB5C2FEFCD1C28FCFAE82C /* Pods-RNCWebView-umbrella.h */,
66
- 3910D82445D54D92A5AB3D0E1E8CFD9C /* Pods-RNCWebView.debug.xcconfig */,
67
- 2DB6ADEF881AE9D8E991E30186FC6D0C /* Pods-RNCWebView.release.xcconfig */,
68
- );
69
- name = "Pods-RNCWebView";
70
- path = "Target Support Files/Pods-RNCWebView";
71
- sourceTree = "<group>";
72
- };
73
- B719A3966FAF7289C17F0771FFA62BCA /* Targets Support Files */ = {
74
- isa = PBXGroup;
75
- children = (
76
- 6B958EC19CCF5688DFD0583FCA6942DD /* Pods-RNCWebView */,
77
- );
78
- name = "Targets Support Files";
79
- sourceTree = "<group>";
80
- };
81
- CF1408CF629C7361332E53B88F7BD30C = {
82
- isa = PBXGroup;
83
- children = (
84
- 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */,
85
- D210D550F4EA176C3123ED886F8F87F5 /* Frameworks */,
86
- 3C86CCD4B539D19A1304A26E5A2CC8B5 /* Products */,
87
- B719A3966FAF7289C17F0771FFA62BCA /* Targets Support Files */,
88
- );
89
- sourceTree = "<group>";
90
- };
91
- D210D550F4EA176C3123ED886F8F87F5 /* Frameworks */ = {
92
- isa = PBXGroup;
93
- children = (
94
- 578452D2E740E91742655AC8F1636D1F /* iOS */,
95
- );
96
- name = Frameworks;
97
- sourceTree = "<group>";
98
- };
99
- /* End PBXGroup section */
100
-
101
- /* Begin PBXHeadersBuildPhase section */
102
- BBBBB10C0B9AEFFF74388F46E1FE3CAC /* Headers */ = {
103
- isa = PBXHeadersBuildPhase;
104
- buildActionMask = 2147483647;
105
- files = (
106
- 6CB8006E35691F6CD5578E4E292C1008 /* Pods-RNCWebView-umbrella.h in Headers */,
107
- );
108
- runOnlyForDeploymentPostprocessing = 0;
109
- };
110
- /* End PBXHeadersBuildPhase section */
111
-
112
- /* Begin PBXNativeTarget section */
113
- 3B0AE53313F4B17A569C5AE26502D870 /* Pods-RNCWebView */ = {
114
- isa = PBXNativeTarget;
115
- buildConfigurationList = 63461E87486A91BA56329AC8BD9D06B0 /* Build configuration list for PBXNativeTarget "Pods-RNCWebView" */;
116
- buildPhases = (
117
- BBBBB10C0B9AEFFF74388F46E1FE3CAC /* Headers */,
118
- 7D553B682058A80B94D384D26B1AA5AF /* Sources */,
119
- 4705E9731F3ED326FDBB6B631FD08058 /* Frameworks */,
120
- 8C77F95915605CDBD48D9953D73E1C7A /* Resources */,
121
- );
122
- buildRules = (
123
- );
124
- dependencies = (
125
- );
126
- name = "Pods-RNCWebView";
127
- productName = Pods_RNCWebView;
128
- productReference = C0407D0C7A1399A03B77A8DFE71A5AA2 /* Pods-RNCWebView */;
129
- productType = "com.apple.product-type.framework";
130
- };
131
- /* End PBXNativeTarget section */
132
-
133
- /* Begin PBXProject section */
134
- BFDFE7DC352907FC980B868725387E98 /* Project object */ = {
135
- isa = PBXProject;
136
- attributes = {
137
- LastSwiftUpdateCheck = 1240;
138
- LastUpgradeCheck = 1240;
139
- };
140
- buildConfigurationList = 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */;
141
- compatibilityVersion = "Xcode 3.2";
142
- developmentRegion = en;
143
- hasScannedForEncodings = 0;
144
- knownRegions = (
145
- Base,
146
- en,
147
- );
148
- mainGroup = CF1408CF629C7361332E53B88F7BD30C;
149
- productRefGroup = 3C86CCD4B539D19A1304A26E5A2CC8B5 /* Products */;
150
- projectDirPath = "";
151
- projectRoot = "";
152
- targets = (
153
- 3B0AE53313F4B17A569C5AE26502D870 /* Pods-RNCWebView */,
154
- );
155
- };
156
- /* End PBXProject section */
157
-
158
- /* Begin PBXResourcesBuildPhase section */
159
- 8C77F95915605CDBD48D9953D73E1C7A /* Resources */ = {
160
- isa = PBXResourcesBuildPhase;
161
- buildActionMask = 2147483647;
162
- files = (
163
- );
164
- runOnlyForDeploymentPostprocessing = 0;
165
- };
166
- /* End PBXResourcesBuildPhase section */
167
-
168
- /* Begin PBXSourcesBuildPhase section */
169
- 7D553B682058A80B94D384D26B1AA5AF /* Sources */ = {
170
- isa = PBXSourcesBuildPhase;
171
- buildActionMask = 2147483647;
172
- files = (
173
- C330C523236FFF278DBE9AEBE2B4D554 /* Pods-RNCWebView-dummy.m in Sources */,
174
- );
175
- runOnlyForDeploymentPostprocessing = 0;
176
- };
177
- /* End PBXSourcesBuildPhase section */
178
-
179
- /* Begin XCBuildConfiguration section */
180
- 6D42DC62C4F2E194221DF89C48496C98 /* Release */ = {
181
- isa = XCBuildConfiguration;
182
- buildSettings = {
183
- ALWAYS_SEARCH_USER_PATHS = NO;
184
- CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
185
- CLANG_ANALYZER_NONNULL = YES;
186
- CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
187
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
188
- CLANG_CXX_LIBRARY = "libc++";
189
- CLANG_ENABLE_MODULES = YES;
190
- CLANG_ENABLE_OBJC_ARC = YES;
191
- CLANG_ENABLE_OBJC_WEAK = YES;
192
- CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
193
- CLANG_WARN_BOOL_CONVERSION = YES;
194
- CLANG_WARN_COMMA = YES;
195
- CLANG_WARN_CONSTANT_CONVERSION = YES;
196
- CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
197
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
198
- CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
199
- CLANG_WARN_EMPTY_BODY = YES;
200
- CLANG_WARN_ENUM_CONVERSION = YES;
201
- CLANG_WARN_INFINITE_RECURSION = YES;
202
- CLANG_WARN_INT_CONVERSION = YES;
203
- CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
204
- CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
205
- CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
206
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
207
- CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
208
- CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
209
- CLANG_WARN_STRICT_PROTOTYPES = YES;
210
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
211
- CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
212
- CLANG_WARN_UNREACHABLE_CODE = YES;
213
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
214
- COPY_PHASE_STRIP = NO;
215
- DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
216
- ENABLE_NS_ASSERTIONS = NO;
217
- ENABLE_STRICT_OBJC_MSGSEND = YES;
218
- GCC_C_LANGUAGE_STANDARD = gnu11;
219
- GCC_NO_COMMON_BLOCKS = YES;
220
- GCC_PREPROCESSOR_DEFINITIONS = (
221
- "POD_CONFIGURATION_RELEASE=1",
222
- "$(inherited)",
223
- );
224
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
225
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
226
- GCC_WARN_UNDECLARED_SELECTOR = YES;
227
- GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
228
- GCC_WARN_UNUSED_FUNCTION = YES;
229
- GCC_WARN_UNUSED_VARIABLE = YES;
230
- IPHONEOS_DEPLOYMENT_TARGET = 8.0;
231
- MTL_ENABLE_DEBUG_INFO = NO;
232
- MTL_FAST_MATH = YES;
233
- PRODUCT_NAME = "$(TARGET_NAME)";
234
- STRIP_INSTALLED_PRODUCT = NO;
235
- SWIFT_COMPILATION_MODE = wholemodule;
236
- SWIFT_OPTIMIZATION_LEVEL = "-O";
237
- SWIFT_VERSION = 5.0;
238
- SYMROOT = "${SRCROOT}/../build";
239
- };
240
- name = Release;
241
- };
242
- 7DB933E5084964A19BE7A8565106FFBF /* Debug */ = {
243
- isa = XCBuildConfiguration;
244
- baseConfigurationReference = 3910D82445D54D92A5AB3D0E1E8CFD9C /* Pods-RNCWebView.debug.xcconfig */;
245
- buildSettings = {
246
- ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
247
- "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
248
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
249
- "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
250
- CURRENT_PROJECT_VERSION = 1;
251
- DEFINES_MODULE = YES;
252
- DYLIB_COMPATIBILITY_VERSION = 1;
253
- DYLIB_CURRENT_VERSION = 1;
254
- DYLIB_INSTALL_NAME_BASE = "@rpath";
255
- INFOPLIST_FILE = "Target Support Files/Pods-RNCWebView/Pods-RNCWebView-Info.plist";
256
- INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
257
- IPHONEOS_DEPLOYMENT_TARGET = 8.0;
258
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
259
- MACH_O_TYPE = staticlib;
260
- MODULEMAP_FILE = "Target Support Files/Pods-RNCWebView/Pods-RNCWebView.modulemap";
261
- OTHER_LDFLAGS = "";
262
- OTHER_LIBTOOLFLAGS = "";
263
- PODS_ROOT = "$(SRCROOT)";
264
- PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
265
- PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
266
- SDKROOT = iphoneos;
267
- SKIP_INSTALL = YES;
268
- TARGETED_DEVICE_FAMILY = "1,2";
269
- VERSIONING_SYSTEM = "apple-generic";
270
- VERSION_INFO_PREFIX = "";
271
- };
272
- name = Debug;
273
- };
274
- DEEE5F3A817724C6429C8FAE20BE2737 /* Release */ = {
275
- isa = XCBuildConfiguration;
276
- baseConfigurationReference = 2DB6ADEF881AE9D8E991E30186FC6D0C /* Pods-RNCWebView.release.xcconfig */;
277
- buildSettings = {
278
- ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
279
- "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
280
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
281
- "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
282
- CURRENT_PROJECT_VERSION = 1;
283
- DEFINES_MODULE = YES;
284
- DYLIB_COMPATIBILITY_VERSION = 1;
285
- DYLIB_CURRENT_VERSION = 1;
286
- DYLIB_INSTALL_NAME_BASE = "@rpath";
287
- INFOPLIST_FILE = "Target Support Files/Pods-RNCWebView/Pods-RNCWebView-Info.plist";
288
- INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
289
- IPHONEOS_DEPLOYMENT_TARGET = 8.0;
290
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
291
- MACH_O_TYPE = staticlib;
292
- MODULEMAP_FILE = "Target Support Files/Pods-RNCWebView/Pods-RNCWebView.modulemap";
293
- OTHER_LDFLAGS = "";
294
- OTHER_LIBTOOLFLAGS = "";
295
- PODS_ROOT = "$(SRCROOT)";
296
- PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
297
- PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
298
- SDKROOT = iphoneos;
299
- SKIP_INSTALL = YES;
300
- TARGETED_DEVICE_FAMILY = "1,2";
301
- VALIDATE_PRODUCT = YES;
302
- VERSIONING_SYSTEM = "apple-generic";
303
- VERSION_INFO_PREFIX = "";
304
- };
305
- name = Release;
306
- };
307
- E4D0D44B090D4284607EBBC4E71A96C1 /* Debug */ = {
308
- isa = XCBuildConfiguration;
309
- buildSettings = {
310
- ALWAYS_SEARCH_USER_PATHS = NO;
311
- CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
312
- CLANG_ANALYZER_NONNULL = YES;
313
- CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
314
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
315
- CLANG_CXX_LIBRARY = "libc++";
316
- CLANG_ENABLE_MODULES = YES;
317
- CLANG_ENABLE_OBJC_ARC = YES;
318
- CLANG_ENABLE_OBJC_WEAK = YES;
319
- CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
320
- CLANG_WARN_BOOL_CONVERSION = YES;
321
- CLANG_WARN_COMMA = YES;
322
- CLANG_WARN_CONSTANT_CONVERSION = YES;
323
- CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
324
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
325
- CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
326
- CLANG_WARN_EMPTY_BODY = YES;
327
- CLANG_WARN_ENUM_CONVERSION = YES;
328
- CLANG_WARN_INFINITE_RECURSION = YES;
329
- CLANG_WARN_INT_CONVERSION = YES;
330
- CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
331
- CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
332
- CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
333
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
334
- CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
335
- CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
336
- CLANG_WARN_STRICT_PROTOTYPES = YES;
337
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
338
- CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
339
- CLANG_WARN_UNREACHABLE_CODE = YES;
340
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
341
- COPY_PHASE_STRIP = NO;
342
- DEBUG_INFORMATION_FORMAT = dwarf;
343
- ENABLE_STRICT_OBJC_MSGSEND = YES;
344
- ENABLE_TESTABILITY = YES;
345
- GCC_C_LANGUAGE_STANDARD = gnu11;
346
- GCC_DYNAMIC_NO_PIC = NO;
347
- GCC_NO_COMMON_BLOCKS = YES;
348
- GCC_OPTIMIZATION_LEVEL = 0;
349
- GCC_PREPROCESSOR_DEFINITIONS = (
350
- "POD_CONFIGURATION_DEBUG=1",
351
- "DEBUG=1",
352
- "$(inherited)",
353
- );
354
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
355
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
356
- GCC_WARN_UNDECLARED_SELECTOR = YES;
357
- GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
358
- GCC_WARN_UNUSED_FUNCTION = YES;
359
- GCC_WARN_UNUSED_VARIABLE = YES;
360
- IPHONEOS_DEPLOYMENT_TARGET = 8.0;
361
- MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
362
- MTL_FAST_MATH = YES;
363
- ONLY_ACTIVE_ARCH = YES;
364
- PRODUCT_NAME = "$(TARGET_NAME)";
365
- STRIP_INSTALLED_PRODUCT = NO;
366
- SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
367
- SWIFT_OPTIMIZATION_LEVEL = "-Onone";
368
- SWIFT_VERSION = 5.0;
369
- SYMROOT = "${SRCROOT}/../build";
370
- };
371
- name = Debug;
372
- };
373
- /* End XCBuildConfiguration section */
374
-
375
- /* Begin XCConfigurationList section */
376
- 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */ = {
377
- isa = XCConfigurationList;
378
- buildConfigurations = (
379
- E4D0D44B090D4284607EBBC4E71A96C1 /* Debug */,
380
- 6D42DC62C4F2E194221DF89C48496C98 /* Release */,
381
- );
382
- defaultConfigurationIsVisible = 0;
383
- defaultConfigurationName = Release;
384
- };
385
- 63461E87486A91BA56329AC8BD9D06B0 /* Build configuration list for PBXNativeTarget "Pods-RNCWebView" */ = {
386
- isa = XCConfigurationList;
387
- buildConfigurations = (
388
- 7DB933E5084964A19BE7A8565106FFBF /* Debug */,
389
- DEEE5F3A817724C6429C8FAE20BE2737 /* Release */,
390
- );
391
- defaultConfigurationIsVisible = 0;
392
- defaultConfigurationName = Release;
393
- };
394
- /* End XCConfigurationList section */
395
- };
396
- rootObject = BFDFE7DC352907FC980B868725387E98 /* Project object */;
397
- }
@@ -1,58 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <Scheme
3
- LastUpgradeVersion = "1240"
4
- version = "1.3">
5
- <BuildAction
6
- parallelizeBuildables = "YES"
7
- buildImplicitDependencies = "YES">
8
- <BuildActionEntries>
9
- <BuildActionEntry
10
- buildForTesting = "YES"
11
- buildForRunning = "YES"
12
- buildForProfiling = "YES"
13
- buildForArchiving = "YES"
14
- buildForAnalyzing = "YES">
15
- <BuildableReference
16
- BuildableIdentifier = "primary"
17
- BlueprintIdentifier = "3B0AE53313F4B17A569C5AE26502D870"
18
- BuildableName = "Pods_RNCWebView.framework"
19
- BlueprintName = "Pods-RNCWebView"
20
- ReferencedContainer = "container:Pods.xcodeproj">
21
- </BuildableReference>
22
- </BuildActionEntry>
23
- </BuildActionEntries>
24
- </BuildAction>
25
- <TestAction
26
- buildConfiguration = "Debug"
27
- selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
28
- selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
29
- shouldUseLaunchSchemeArgsEnv = "YES">
30
- <Testables>
31
- </Testables>
32
- </TestAction>
33
- <LaunchAction
34
- buildConfiguration = "Debug"
35
- selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
36
- selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
37
- launchStyle = "0"
38
- useCustomWorkingDirectory = "NO"
39
- ignoresPersistentStateOnLaunch = "NO"
40
- debugDocumentVersioning = "YES"
41
- debugServiceExtension = "internal"
42
- allowLocationSimulation = "YES">
43
- </LaunchAction>
44
- <ProfileAction
45
- buildConfiguration = "Release"
46
- shouldUseLaunchSchemeArgsEnv = "YES"
47
- savedToolIdentifier = ""
48
- useCustomWorkingDirectory = "NO"
49
- debugDocumentVersioning = "YES">
50
- </ProfileAction>
51
- <AnalyzeAction
52
- buildConfiguration = "Debug">
53
- </AnalyzeAction>
54
- <ArchiveAction
55
- buildConfiguration = "Release"
56
- revealArchiveInOrganizer = "YES">
57
- </ArchiveAction>
58
- </Scheme>
@@ -1,16 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
- <plist version="1.0">
4
- <dict>
5
- <key>SchemeUserState</key>
6
- <dict>
7
- <key>Pods-RNCWebView.xcscheme</key>
8
- <dict>
9
- <key>isShown</key>
10
- <false/>
11
- </dict>
12
- </dict>
13
- <key>SuppressBuildableAutocreation</key>
14
- <dict/>
15
- </dict>
16
- </plist>
@@ -1,26 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
- <plist version="1.0">
4
- <dict>
5
- <key>CFBundleDevelopmentRegion</key>
6
- <string>en</string>
7
- <key>CFBundleExecutable</key>
8
- <string>${EXECUTABLE_NAME}</string>
9
- <key>CFBundleIdentifier</key>
10
- <string>${PRODUCT_BUNDLE_IDENTIFIER}</string>
11
- <key>CFBundleInfoDictionaryVersion</key>
12
- <string>6.0</string>
13
- <key>CFBundleName</key>
14
- <string>${PRODUCT_NAME}</string>
15
- <key>CFBundlePackageType</key>
16
- <string>FMWK</string>
17
- <key>CFBundleShortVersionString</key>
18
- <string>1.0.0</string>
19
- <key>CFBundleSignature</key>
20
- <string>????</string>
21
- <key>CFBundleVersion</key>
22
- <string>${CURRENT_PROJECT_VERSION}</string>
23
- <key>NSPrincipalClass</key>
24
- <string></string>
25
- </dict>
26
- </plist>
@@ -1,3 +0,0 @@
1
- # Acknowledgements
2
- This application makes use of the following third party libraries:
3
- Generated by CocoaPods - https://cocoapods.org
@@ -1,29 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
- <plist version="1.0">
4
- <dict>
5
- <key>PreferenceSpecifiers</key>
6
- <array>
7
- <dict>
8
- <key>FooterText</key>
9
- <string>This application makes use of the following third party libraries:</string>
10
- <key>Title</key>
11
- <string>Acknowledgements</string>
12
- <key>Type</key>
13
- <string>PSGroupSpecifier</string>
14
- </dict>
15
- <dict>
16
- <key>FooterText</key>
17
- <string>Generated by CocoaPods - https://cocoapods.org</string>
18
- <key>Title</key>
19
- <string></string>
20
- <key>Type</key>
21
- <string>PSGroupSpecifier</string>
22
- </dict>
23
- </array>
24
- <key>StringsTable</key>
25
- <string>Acknowledgements</string>
26
- <key>Title</key>
27
- <string>Acknowledgements</string>
28
- </dict>
29
- </plist>
@@ -1,5 +0,0 @@
1
- #import <Foundation/Foundation.h>
2
- @interface PodsDummy_Pods_RNCWebView : NSObject
3
- @end
4
- @implementation PodsDummy_Pods_RNCWebView
5
- @end
@@ -1,16 +0,0 @@
1
- #ifdef __OBJC__
2
- #import <UIKit/UIKit.h>
3
- #else
4
- #ifndef FOUNDATION_EXPORT
5
- #if defined(__cplusplus)
6
- #define FOUNDATION_EXPORT extern "C"
7
- #else
8
- #define FOUNDATION_EXPORT extern
9
- #endif
10
- #endif
11
- #endif
12
-
13
-
14
- FOUNDATION_EXPORT double Pods_RNCWebViewVersionNumber;
15
- FOUNDATION_EXPORT const unsigned char Pods_RNCWebViewVersionString[];
16
-
@@ -1,8 +0,0 @@
1
- CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO
2
- GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
3
- PODS_BUILD_DIR = ${BUILD_DIR}
4
- PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)
5
- PODS_PODFILE_DIR_PATH = ${SRCROOT}/.
6
- PODS_ROOT = ${SRCROOT}/Pods
7
- PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates
8
- USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES
@@ -1,6 +0,0 @@
1
- framework module Pods_RNCWebView {
2
- umbrella header "Pods-RNCWebView-umbrella.h"
3
-
4
- export *
5
- module * { export * }
6
- }
@@ -1,8 +0,0 @@
1
- CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO
2
- GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
3
- PODS_BUILD_DIR = ${BUILD_DIR}
4
- PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)
5
- PODS_PODFILE_DIR_PATH = ${SRCROOT}/.
6
- PODS_ROOT = ${SRCROOT}/Pods
7
- PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates
8
- USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES