@sumsub/cordova-idensic-mobile-sdk-plugin 1.18.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/CHANGELOG.md +3 -0
- package/README.md +8 -0
- package/demo/Gemfile +4 -0
- package/demo/Gemfile.lock +262 -0
- package/demo/README.md +61 -0
- package/demo/config.xml +46 -0
- package/demo/fastlane/Appfile +8 -0
- package/demo/fastlane/Fastfile +142 -0
- package/demo/fastlane/README.md +34 -0
- package/demo/fastlane/helpers +109 -0
- package/demo/hooks/README.md +23 -0
- package/demo/package-lock.json +3624 -0
- package/demo/package.json +57 -0
- package/demo/platforms/android/CordovaLib/AndroidManifest.xml +22 -0
- package/demo/platforms/android/CordovaLib/build.gradle +148 -0
- package/demo/platforms/android/CordovaLib/cordova.gradle +205 -0
- package/demo/platforms/android/CordovaLib/project.properties +11 -0
- package/demo/platforms/android/CordovaLib/src/org/apache/cordova/AuthenticationToken.java +69 -0
- package/demo/platforms/android/CordovaLib/src/org/apache/cordova/BuildHelper.java +70 -0
- package/demo/platforms/android/CordovaLib/src/org/apache/cordova/CallbackContext.java +142 -0
- package/demo/platforms/android/CordovaLib/src/org/apache/cordova/CallbackMap.java +65 -0
- package/demo/platforms/android/CordovaLib/src/org/apache/cordova/Config.java +71 -0
- package/demo/platforms/android/CordovaLib/src/org/apache/cordova/ConfigXmlParser.java +145 -0
- package/demo/platforms/android/CordovaLib/src/org/apache/cordova/CordovaActivity.java +521 -0
- package/demo/platforms/android/CordovaLib/src/org/apache/cordova/CordovaArgs.java +113 -0
- package/demo/platforms/android/CordovaLib/src/org/apache/cordova/CordovaBridge.java +187 -0
- package/demo/platforms/android/CordovaLib/src/org/apache/cordova/CordovaClientCertRequest.java +105 -0
- package/demo/platforms/android/CordovaLib/src/org/apache/cordova/CordovaDialogsHelper.java +152 -0
- package/demo/platforms/android/CordovaLib/src/org/apache/cordova/CordovaHttpAuthHandler.java +51 -0
- package/demo/platforms/android/CordovaLib/src/org/apache/cordova/CordovaInterface.java +97 -0
- package/demo/platforms/android/CordovaLib/src/org/apache/cordova/CordovaInterfaceImpl.java +249 -0
- package/demo/platforms/android/CordovaLib/src/org/apache/cordova/CordovaPlugin.java +422 -0
- package/demo/platforms/android/CordovaLib/src/org/apache/cordova/CordovaPreferences.java +101 -0
- package/demo/platforms/android/CordovaLib/src/org/apache/cordova/CordovaResourceApi.java +472 -0
- package/demo/platforms/android/CordovaLib/src/org/apache/cordova/CordovaWebView.java +142 -0
- package/demo/platforms/android/CordovaLib/src/org/apache/cordova/CordovaWebViewEngine.java +85 -0
- package/demo/platforms/android/CordovaLib/src/org/apache/cordova/CordovaWebViewImpl.java +617 -0
- package/demo/platforms/android/CordovaLib/src/org/apache/cordova/CoreAndroid.java +407 -0
- package/demo/platforms/android/CordovaLib/src/org/apache/cordova/ExposedJsApi.java +31 -0
- package/demo/platforms/android/CordovaLib/src/org/apache/cordova/ICordovaClientCertRequest.java +66 -0
- package/demo/platforms/android/CordovaLib/src/org/apache/cordova/ICordovaCookieManager.java +33 -0
- package/demo/platforms/android/CordovaLib/src/org/apache/cordova/ICordovaHttpAuthHandler.java +38 -0
- package/demo/platforms/android/CordovaLib/src/org/apache/cordova/LOG.java +244 -0
- package/demo/platforms/android/CordovaLib/src/org/apache/cordova/NativeToJsMessageQueue.java +542 -0
- package/demo/platforms/android/CordovaLib/src/org/apache/cordova/PermissionHelper.java +87 -0
- package/demo/platforms/android/CordovaLib/src/org/apache/cordova/PluginEntry.java +70 -0
- package/demo/platforms/android/CordovaLib/src/org/apache/cordova/PluginManager.java +526 -0
- package/demo/platforms/android/CordovaLib/src/org/apache/cordova/PluginResult.java +198 -0
- package/demo/platforms/android/CordovaLib/src/org/apache/cordova/ResumeCallback.java +76 -0
- package/demo/platforms/android/CordovaLib/src/org/apache/cordova/Whitelist.java +170 -0
- package/demo/platforms/android/CordovaLib/src/org/apache/cordova/engine/SystemCookieManager.java +74 -0
- package/demo/platforms/android/CordovaLib/src/org/apache/cordova/engine/SystemExposedJsApi.java +53 -0
- package/demo/platforms/android/CordovaLib/src/org/apache/cordova/engine/SystemWebChromeClient.java +301 -0
- package/demo/platforms/android/CordovaLib/src/org/apache/cordova/engine/SystemWebView.java +88 -0
- package/demo/platforms/android/CordovaLib/src/org/apache/cordova/engine/SystemWebViewClient.java +370 -0
- package/demo/platforms/android/CordovaLib/src/org/apache/cordova/engine/SystemWebViewEngine.java +319 -0
- package/demo/platforms/android/android.json +440 -0
- package/demo/platforms/android/app/build.gradle +363 -0
- package/demo/platforms/android/app/libs/barcodescanner-release-2.1.5.aar +0 -0
- package/demo/platforms/android/app/src/main/AndroidManifest.xml +23 -0
- package/demo/platforms/android/app/src/main/java/com/applurk/nativetimer/Consumer.java +22 -0
- package/demo/platforms/android/app/src/main/java/com/applurk/nativetimer/NativeTimerAdapter.java +27 -0
- package/demo/platforms/android/app/src/main/java/com/applurk/nativetimer/NativeTimerAdapterImpl.java +123 -0
- package/demo/platforms/android/app/src/main/java/com/applurk/nativetimer/NativeTimerPlugin.java +163 -0
- package/demo/platforms/android/app/src/main/java/com/phonegap/plugins/barcodescanner/BarcodeScanner.java +328 -0
- package/demo/platforms/android/app/src/main/java/com/silkimen/cordovahttp/CordovaClientAuth.java +113 -0
- package/demo/platforms/android/app/src/main/java/com/silkimen/cordovahttp/CordovaHttpBase.java +225 -0
- package/demo/platforms/android/app/src/main/java/com/silkimen/cordovahttp/CordovaHttpDownload.java +41 -0
- package/demo/platforms/android/app/src/main/java/com/silkimen/cordovahttp/CordovaHttpOperation.java +24 -0
- package/demo/platforms/android/app/src/main/java/com/silkimen/cordovahttp/CordovaHttpPlugin.java +240 -0
- package/demo/platforms/android/app/src/main/java/com/silkimen/cordovahttp/CordovaHttpResponse.java +100 -0
- package/demo/platforms/android/app/src/main/java/com/silkimen/cordovahttp/CordovaHttpUpload.java +91 -0
- package/demo/platforms/android/app/src/main/java/com/silkimen/cordovahttp/CordovaObservableCallbackContext.java +58 -0
- package/demo/platforms/android/app/src/main/java/com/silkimen/cordovahttp/CordovaServerTrust.java +124 -0
- package/demo/platforms/android/app/src/main/java/com/silkimen/http/HttpBodyDecoder.java +55 -0
- package/demo/platforms/android/app/src/main/java/com/silkimen/http/HttpRequest.java +3095 -0
- package/demo/platforms/android/app/src/main/java/com/silkimen/http/JsonUtils.java +58 -0
- package/demo/platforms/android/app/src/main/java/com/silkimen/http/KeyChainKeyManager.java +57 -0
- package/demo/platforms/android/app/src/main/java/com/silkimen/http/TLSConfiguration.java +63 -0
- package/demo/platforms/android/app/src/main/java/com/silkimen/http/TLSSocketFactory.java +63 -0
- package/demo/platforms/android/app/src/main/java/com/sumsub/SumSubCordova/MainActivity.java +41 -0
- package/demo/platforms/android/app/src/main/java/main/java/com/sumsub/msdk/plugins/cordova/SNSMobileSdkCordovaPlugin.java +339 -0
- package/demo/platforms/android/app/src/main/java/org/apache/cordova/file/AssetFilesystem.java +294 -0
- package/demo/platforms/android/app/src/main/java/org/apache/cordova/file/ContentFilesystem.java +223 -0
- package/demo/platforms/android/app/src/main/java/org/apache/cordova/file/DirectoryManager.java +134 -0
- package/demo/platforms/android/app/src/main/java/org/apache/cordova/file/EncodingException.java +29 -0
- package/demo/platforms/android/app/src/main/java/org/apache/cordova/file/FileExistsException.java +29 -0
- package/demo/platforms/android/app/src/main/java/org/apache/cordova/file/FileUtils.java +1225 -0
- package/demo/platforms/android/app/src/main/java/org/apache/cordova/file/Filesystem.java +331 -0
- package/demo/platforms/android/app/src/main/java/org/apache/cordova/file/InvalidModificationException.java +30 -0
- package/demo/platforms/android/app/src/main/java/org/apache/cordova/file/LocalFilesystem.java +513 -0
- package/demo/platforms/android/app/src/main/java/org/apache/cordova/file/LocalFilesystemURL.java +64 -0
- package/demo/platforms/android/app/src/main/java/org/apache/cordova/file/NoModificationAllowedException.java +29 -0
- package/demo/platforms/android/app/src/main/java/org/apache/cordova/file/PendingRequests.java +94 -0
- package/demo/platforms/android/app/src/main/java/org/apache/cordova/file/TypeMismatchException.java +30 -0
- package/demo/platforms/android/app/src/main/java/org/apache/cordova/whitelist/WhitelistPlugin.java +161 -0
- package/demo/platforms/android/app/src/main/res/drawable-land-hdpi/screen.png +0 -0
- package/demo/platforms/android/app/src/main/res/drawable-land-ldpi/screen.png +0 -0
- package/demo/platforms/android/app/src/main/res/drawable-land-mdpi/screen.png +0 -0
- package/demo/platforms/android/app/src/main/res/drawable-land-xhdpi/screen.png +0 -0
- package/demo/platforms/android/app/src/main/res/drawable-land-xxhdpi/screen.png +0 -0
- package/demo/platforms/android/app/src/main/res/drawable-land-xxxhdpi/screen.png +0 -0
- package/demo/platforms/android/app/src/main/res/drawable-port-hdpi/screen.png +0 -0
- package/demo/platforms/android/app/src/main/res/drawable-port-ldpi/screen.png +0 -0
- package/demo/platforms/android/app/src/main/res/drawable-port-mdpi/screen.png +0 -0
- package/demo/platforms/android/app/src/main/res/drawable-port-xhdpi/screen.png +0 -0
- package/demo/platforms/android/app/src/main/res/drawable-port-xxhdpi/screen.png +0 -0
- package/demo/platforms/android/app/src/main/res/drawable-port-xxxhdpi/screen.png +0 -0
- package/demo/platforms/android/app/src/main/res/mipmap-ldpi/ic_launcher.png +0 -0
- package/demo/platforms/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
- package/demo/platforms/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
- package/demo/platforms/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
- package/demo/platforms/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
- package/demo/platforms/android/app/src/main/res/values/strings.xml +7 -0
- package/demo/platforms/android/app/src/main/res/xml/config.xml +44 -0
- package/demo/platforms/android/build.gradle +54 -0
- package/demo/platforms/android/cordova/Api.js +368 -0
- package/demo/platforms/android/cordova/android_sdk_version +27 -0
- package/demo/platforms/android/cordova/android_sdk_version.bat +26 -0
- package/demo/platforms/android/cordova/build +51 -0
- package/demo/platforms/android/cordova/build.bat +26 -0
- package/demo/platforms/android/cordova/check_reqs +32 -0
- package/demo/platforms/android/cordova/check_reqs.bat +26 -0
- package/demo/platforms/android/cordova/clean +51 -0
- package/demo/platforms/android/cordova/clean.bat +26 -0
- package/demo/platforms/android/cordova/defaults.xml +26 -0
- package/demo/platforms/android/cordova/lib/Adb.js +101 -0
- package/demo/platforms/android/cordova/lib/AndroidManifest.js +126 -0
- package/demo/platforms/android/cordova/lib/AndroidProject.js +202 -0
- package/demo/platforms/android/cordova/lib/PackageType.js +25 -0
- package/demo/platforms/android/cordova/lib/android_sdk.js +101 -0
- package/demo/platforms/android/cordova/lib/build.js +321 -0
- package/demo/platforms/android/cordova/lib/builders/ProjectBuilder.js +412 -0
- package/demo/platforms/android/cordova/lib/builders/builders.js +34 -0
- package/demo/platforms/android/cordova/lib/check_reqs.js +436 -0
- package/demo/platforms/android/cordova/lib/config/GradlePropertiesParser.js +114 -0
- package/demo/platforms/android/cordova/lib/device.js +111 -0
- package/demo/platforms/android/cordova/lib/emulator.js +530 -0
- package/demo/platforms/android/cordova/lib/getASPath.bat +3 -0
- package/demo/platforms/android/cordova/lib/install-device +42 -0
- package/demo/platforms/android/cordova/lib/install-device.bat +26 -0
- package/demo/platforms/android/cordova/lib/install-emulator +38 -0
- package/demo/platforms/android/cordova/lib/install-emulator.bat +26 -0
- package/demo/platforms/android/cordova/lib/list-devices +34 -0
- package/demo/platforms/android/cordova/lib/list-devices.bat +26 -0
- package/demo/platforms/android/cordova/lib/list-emulator-images +34 -0
- package/demo/platforms/android/cordova/lib/list-emulator-images.bat +26 -0
- package/demo/platforms/android/cordova/lib/list-started-emulators +34 -0
- package/demo/platforms/android/cordova/lib/list-started-emulators.bat +26 -0
- package/demo/platforms/android/cordova/lib/log.js +56 -0
- package/demo/platforms/android/cordova/lib/plugin-build.gradle +69 -0
- package/demo/platforms/android/cordova/lib/pluginHandlers.js +334 -0
- package/demo/platforms/android/cordova/lib/prepare.js +702 -0
- package/demo/platforms/android/cordova/lib/retry.js +64 -0
- package/demo/platforms/android/cordova/lib/run.js +140 -0
- package/demo/platforms/android/cordova/lib/start-emulator +38 -0
- package/demo/platforms/android/cordova/lib/start-emulator.bat +26 -0
- package/demo/platforms/android/cordova/log +36 -0
- package/demo/platforms/android/cordova/log.bat +26 -0
- package/demo/platforms/android/cordova/loggingHelper.js +18 -0
- package/demo/platforms/android/cordova/run +54 -0
- package/demo/platforms/android/cordova/run.bat +26 -0
- package/demo/platforms/android/cordova/version +29 -0
- package/demo/platforms/android/cordova/version.bat +26 -0
- package/demo/platforms/android/cordova-idensic-mobile-sdk-plugin/SumSubCordova-build-extras.gradle +20 -0
- package/demo/platforms/android/cordova-plugin-enable-multidex/SumSubCordova-build.gradle +9 -0
- package/demo/platforms/android/cordova-plugin-qr-barcode-scanner/SumSubCordova-barcodescanner.gradle +17 -0
- package/demo/platforms/android/gradle.properties +6 -0
- package/demo/platforms/android/platform_www/cordova-js-src/android/nativeapiprovider.js +36 -0
- package/demo/platforms/android/platform_www/cordova-js-src/android/promptbasednativeapi.js +35 -0
- package/demo/platforms/android/platform_www/cordova-js-src/exec.js +286 -0
- package/demo/platforms/android/platform_www/cordova-js-src/platform.js +125 -0
- package/demo/platforms/android/platform_www/cordova-js-src/plugin/android/app.js +108 -0
- package/demo/platforms/android/platform_www/cordova.js +1935 -0
- package/demo/platforms/android/platform_www/cordova_plugins.js +287 -0
- package/demo/platforms/android/platform_www/plugins/cordova-idensic-mobile-sdk-plugin/dist/SNSMobileSDK.js +3 -0
- package/demo/platforms/android/project.properties +17 -0
- package/demo/platforms/android/settings.gradle +4 -0
- package/demo/platforms/android/wrapper.gradle +1 -0
- package/demo/platforms/ios/CordovaLib/Classes/Private/CDVDebug.h +25 -0
- package/demo/platforms/ios/CordovaLib/Classes/Private/CDVJSON_private.h +31 -0
- package/demo/platforms/ios/CordovaLib/Classes/Private/CDVJSON_private.m +99 -0
- package/demo/platforms/ios/CordovaLib/Classes/Private/CDVPlugin+Private.h +24 -0
- package/demo/platforms/ios/CordovaLib/Classes/Private/Plugins/CDVGestureHandler/CDVGestureHandler.h +26 -0
- package/demo/platforms/ios/CordovaLib/Classes/Private/Plugins/CDVGestureHandler/CDVGestureHandler.m +70 -0
- package/demo/platforms/ios/CordovaLib/Classes/Private/Plugins/CDVHandleOpenURL/CDVHandleOpenURL.h +27 -0
- package/demo/platforms/ios/CordovaLib/Classes/Private/Plugins/CDVHandleOpenURL/CDVHandleOpenURL.m +86 -0
- package/demo/platforms/ios/CordovaLib/Classes/Private/Plugins/CDVIntentAndNavigationFilter/CDVIntentAndNavigationFilter.h +40 -0
- package/demo/platforms/ios/CordovaLib/Classes/Private/Plugins/CDVIntentAndNavigationFilter/CDVIntentAndNavigationFilter.m +150 -0
- package/demo/platforms/ios/CordovaLib/Classes/Private/Plugins/CDVLocalStorage/CDVLocalStorage.h +50 -0
- package/demo/platforms/ios/CordovaLib/Classes/Private/Plugins/CDVLocalStorage/CDVLocalStorage.m +493 -0
- package/demo/platforms/ios/CordovaLib/Classes/Private/Plugins/CDVLogger/CDVLogger.h +26 -0
- package/demo/platforms/ios/CordovaLib/Classes/Private/Plugins/CDVLogger/CDVLogger.m +37 -0
- package/demo/platforms/ios/CordovaLib/Classes/Private/Plugins/CDVUIWebViewEngine/CDVUIWebViewDelegate.h +45 -0
- package/demo/platforms/ios/CordovaLib/Classes/Private/Plugins/CDVUIWebViewEngine/CDVUIWebViewDelegate.m +408 -0
- package/demo/platforms/ios/CordovaLib/Classes/Private/Plugins/CDVUIWebViewEngine/CDVUIWebViewEngine.h +29 -0
- package/demo/platforms/ios/CordovaLib/Classes/Private/Plugins/CDVUIWebViewEngine/CDVUIWebViewEngine.m +206 -0
- package/demo/platforms/ios/CordovaLib/Classes/Private/Plugins/CDVUIWebViewEngine/CDVUIWebViewNavigationDelegate.h +33 -0
- package/demo/platforms/ios/CordovaLib/Classes/Private/Plugins/CDVUIWebViewEngine/CDVUIWebViewNavigationDelegate.m +157 -0
- package/demo/platforms/ios/CordovaLib/Classes/Public/CDV.h +32 -0
- package/demo/platforms/ios/CordovaLib/Classes/Public/CDVAppDelegate.h +28 -0
- package/demo/platforms/ios/CordovaLib/Classes/Public/CDVAppDelegate.m +118 -0
- package/demo/platforms/ios/CordovaLib/Classes/Public/CDVAvailability.h +115 -0
- package/demo/platforms/ios/CordovaLib/Classes/Public/CDVAvailabilityDeprecated.h +26 -0
- package/demo/platforms/ios/CordovaLib/Classes/Public/CDVCommandDelegate.h +51 -0
- package/demo/platforms/ios/CordovaLib/Classes/Public/CDVCommandDelegateImpl.h +36 -0
- package/demo/platforms/ios/CordovaLib/Classes/Public/CDVCommandDelegateImpl.m +186 -0
- package/demo/platforms/ios/CordovaLib/Classes/Public/CDVCommandQueue.h +39 -0
- package/demo/platforms/ios/CordovaLib/Classes/Public/CDVCommandQueue.m +194 -0
- package/demo/platforms/ios/CordovaLib/Classes/Public/CDVConfigParser.h +30 -0
- package/demo/platforms/ios/CordovaLib/Classes/Public/CDVConfigParser.m +81 -0
- package/demo/platforms/ios/CordovaLib/Classes/Public/CDVInvokedUrlCommand.h +52 -0
- package/demo/platforms/ios/CordovaLib/Classes/Public/CDVInvokedUrlCommand.m +116 -0
- package/demo/platforms/ios/CordovaLib/Classes/Public/CDVPlugin+Resources.h +39 -0
- package/demo/platforms/ios/CordovaLib/Classes/Public/CDVPlugin+Resources.m +38 -0
- package/demo/platforms/ios/CordovaLib/Classes/Public/CDVPlugin.h +74 -0
- package/demo/platforms/ios/CordovaLib/Classes/Public/CDVPlugin.m +199 -0
- package/demo/platforms/ios/CordovaLib/Classes/Public/CDVPluginResult.h +83 -0
- package/demo/platforms/ios/CordovaLib/Classes/Public/CDVPluginResult.m +203 -0
- package/demo/platforms/ios/CordovaLib/Classes/Public/CDVScreenOrientationDelegate.h +33 -0
- package/demo/platforms/ios/CordovaLib/Classes/Public/CDVTimer.h +27 -0
- package/demo/platforms/ios/CordovaLib/Classes/Public/CDVTimer.m +123 -0
- package/demo/platforms/ios/CordovaLib/Classes/Public/CDVURLProtocol.h +27 -0
- package/demo/platforms/ios/CordovaLib/Classes/Public/CDVURLProtocol.m +113 -0
- package/demo/platforms/ios/CordovaLib/Classes/Public/CDVUserAgentUtil.h +27 -0
- package/demo/platforms/ios/CordovaLib/Classes/Public/CDVUserAgentUtil.m +162 -0
- package/demo/platforms/ios/CordovaLib/Classes/Public/CDVViewController.h +92 -0
- package/demo/platforms/ios/CordovaLib/Classes/Public/CDVViewController.m +810 -0
- package/demo/platforms/ios/CordovaLib/Classes/Public/CDVWebViewEngineProtocol.h +42 -0
- package/demo/platforms/ios/CordovaLib/Classes/Public/CDVWhitelist.h +34 -0
- package/demo/platforms/ios/CordovaLib/Classes/Public/CDVWhitelist.m +285 -0
- package/demo/platforms/ios/CordovaLib/Classes/Public/NSDictionary+CordovaPreferences.h +35 -0
- package/demo/platforms/ios/CordovaLib/Classes/Public/NSDictionary+CordovaPreferences.m +63 -0
- package/demo/platforms/ios/CordovaLib/Classes/Public/NSMutableArray+QueueAdditions.h +29 -0
- package/demo/platforms/ios/CordovaLib/Classes/Public/NSMutableArray+QueueAdditions.m +58 -0
- package/demo/platforms/ios/CordovaLib/CordovaLib.xcodeproj/project.pbxproj +797 -0
- package/demo/platforms/ios/CordovaLib/CordovaLib_Prefix.pch +22 -0
- package/demo/platforms/ios/CordovaLib/VERSION +1 -0
- package/demo/platforms/ios/CordovaLib/cordova.js +2188 -0
- package/demo/platforms/ios/Podfile +9 -0
- package/demo/platforms/ios/Podfile.lock +20 -0
- package/demo/platforms/ios/SumSubCordova/Bridging-Header.h +28 -0
- package/demo/platforms/ios/SumSubCordova/CDVLaunchScreen.storyboard +60 -0
- package/demo/platforms/ios/SumSubCordova/Classes/AppDelegate.h +33 -0
- package/demo/platforms/ios/SumSubCordova/Classes/AppDelegate.m +39 -0
- package/demo/platforms/ios/SumSubCordova/Classes/MainViewController.h +40 -0
- package/demo/platforms/ios/SumSubCordova/Classes/MainViewController.m +148 -0
- package/demo/platforms/ios/SumSubCordova/Classes/MainViewController.xib +138 -0
- package/demo/platforms/ios/SumSubCordova/Entitlements-Debug.plist +24 -0
- package/demo/platforms/ios/SumSubCordova/Entitlements-Release.plist +24 -0
- package/demo/platforms/ios/SumSubCordova/Images.xcassets/AppIcon.appiconset/Contents.json +116 -0
- package/demo/platforms/ios/SumSubCordova/Images.xcassets/AppIcon.appiconset/cordova_icon-1024.png +0 -0
- package/demo/platforms/ios/SumSubCordova/Images.xcassets/AppIcon.appiconset/cordova_icon-20.png +0 -0
- package/demo/platforms/ios/SumSubCordova/Images.xcassets/AppIcon.appiconset/cordova_icon-20@2x.png +0 -0
- package/demo/platforms/ios/SumSubCordova/Images.xcassets/AppIcon.appiconset/cordova_icon-20@3x.png +0 -0
- package/demo/platforms/ios/SumSubCordova/Images.xcassets/AppIcon.appiconset/cordova_icon-29.png +0 -0
- package/demo/platforms/ios/SumSubCordova/Images.xcassets/AppIcon.appiconset/cordova_icon-29@2x.png +0 -0
- package/demo/platforms/ios/SumSubCordova/Images.xcassets/AppIcon.appiconset/cordova_icon-29@3x.png +0 -0
- package/demo/platforms/ios/SumSubCordova/Images.xcassets/AppIcon.appiconset/cordova_icon-40.png +0 -0
- package/demo/platforms/ios/SumSubCordova/Images.xcassets/AppIcon.appiconset/cordova_icon-40@2x.png +0 -0
- package/demo/platforms/ios/SumSubCordova/Images.xcassets/AppIcon.appiconset/cordova_icon-40@3x.png +0 -0
- package/demo/platforms/ios/SumSubCordova/Images.xcassets/AppIcon.appiconset/cordova_icon-60@2x.png +0 -0
- package/demo/platforms/ios/SumSubCordova/Images.xcassets/AppIcon.appiconset/cordova_icon-60@3x.png +0 -0
- package/demo/platforms/ios/SumSubCordova/Images.xcassets/AppIcon.appiconset/cordova_icon-76.png +0 -0
- package/demo/platforms/ios/SumSubCordova/Images.xcassets/AppIcon.appiconset/cordova_icon-76@2x.png +0 -0
- package/demo/platforms/ios/SumSubCordova/Images.xcassets/AppIcon.appiconset/cordova_icon-83.5@2x.png +0 -0
- package/demo/platforms/ios/SumSubCordova/Images.xcassets/Contents.json +6 -0
- package/demo/platforms/ios/SumSubCordova/Images.xcassets/LaunchImage.launchimage/Contents.json +176 -0
- package/demo/platforms/ios/SumSubCordova/Images.xcassets/LaunchImage.launchimage/Default-2436h.png +0 -0
- package/demo/platforms/ios/SumSubCordova/Images.xcassets/LaunchImage.launchimage/Default-568h@2x~iphone.png +0 -0
- package/demo/platforms/ios/SumSubCordova/Images.xcassets/LaunchImage.launchimage/Default-667h.png +0 -0
- package/demo/platforms/ios/SumSubCordova/Images.xcassets/LaunchImage.launchimage/Default-736h.png +0 -0
- package/demo/platforms/ios/SumSubCordova/Images.xcassets/LaunchImage.launchimage/Default-Landscape-2436h.png +0 -0
- package/demo/platforms/ios/SumSubCordova/Images.xcassets/LaunchImage.launchimage/Default-Landscape-736h.png +0 -0
- package/demo/platforms/ios/SumSubCordova/Images.xcassets/LaunchImage.launchimage/Default-Landscape@2x~ipad.png +0 -0
- package/demo/platforms/ios/SumSubCordova/Images.xcassets/LaunchImage.launchimage/Default-Landscape~ipad.png +0 -0
- package/demo/platforms/ios/SumSubCordova/Images.xcassets/LaunchImage.launchimage/Default-Portrait@2x~ipad.png +0 -0
- package/demo/platforms/ios/SumSubCordova/Images.xcassets/LaunchImage.launchimage/Default-Portrait~ipad.png +0 -0
- package/demo/platforms/ios/SumSubCordova/Images.xcassets/LaunchImage.launchimage/Default@2x~iphone.png +0 -0
- package/demo/platforms/ios/SumSubCordova/Images.xcassets/LaunchImage.launchimage/Default~iphone.png +0 -0
- package/demo/platforms/ios/SumSubCordova/Images.xcassets/LaunchStoryboard.imageset/Contents.json +168 -0
- package/demo/platforms/ios/SumSubCordova/Plugins/README +20 -0
- package/demo/platforms/ios/SumSubCordova/Plugins/cordova-idensic-mobile-sdk-plugin/SNSMobileSdkCordovaPlugin.h +12 -0
- package/demo/platforms/ios/SumSubCordova/Plugins/cordova-idensic-mobile-sdk-plugin/SNSMobileSdkCordovaPlugin.m +263 -0
- package/demo/platforms/ios/SumSubCordova/Plugins/cordova-plugin-advanced-http/AFHTTPSessionManager.h +353 -0
- package/demo/platforms/ios/SumSubCordova/Plugins/cordova-plugin-advanced-http/AFHTTPSessionManager.m +464 -0
- package/demo/platforms/ios/SumSubCordova/Plugins/cordova-plugin-advanced-http/AFNetworkReachabilityManager.h +206 -0
- package/demo/platforms/ios/SumSubCordova/Plugins/cordova-plugin-advanced-http/AFNetworkReachabilityManager.m +263 -0
- package/demo/platforms/ios/SumSubCordova/Plugins/cordova-plugin-advanced-http/AFNetworking.h +41 -0
- package/demo/platforms/ios/SumSubCordova/Plugins/cordova-plugin-advanced-http/AFSecurityPolicy.h +154 -0
- package/demo/platforms/ios/SumSubCordova/Plugins/cordova-plugin-advanced-http/AFSecurityPolicy.m +353 -0
- package/demo/platforms/ios/SumSubCordova/Plugins/cordova-plugin-advanced-http/AFURLRequestSerialization.h +479 -0
- package/demo/platforms/ios/SumSubCordova/Plugins/cordova-plugin-advanced-http/AFURLRequestSerialization.m +1355 -0
- package/demo/platforms/ios/SumSubCordova/Plugins/cordova-plugin-advanced-http/AFURLResponseSerialization.h +318 -0
- package/demo/platforms/ios/SumSubCordova/Plugins/cordova-plugin-advanced-http/AFURLResponseSerialization.m +806 -0
- package/demo/platforms/ios/SumSubCordova/Plugins/cordova-plugin-advanced-http/AFURLSessionManager.h +500 -0
- package/demo/platforms/ios/SumSubCordova/Plugins/cordova-plugin-advanced-http/AFURLSessionManager.m +1239 -0
- package/demo/platforms/ios/SumSubCordova/Plugins/cordova-plugin-advanced-http/BinaryRequestSerializer.h +8 -0
- package/demo/platforms/ios/SumSubCordova/Plugins/cordova-plugin-advanced-http/BinaryRequestSerializer.m +53 -0
- package/demo/platforms/ios/SumSubCordova/Plugins/cordova-plugin-advanced-http/BinaryResponseSerializer.h +8 -0
- package/demo/platforms/ios/SumSubCordova/Plugins/cordova-plugin-advanced-http/BinaryResponseSerializer.m +126 -0
- package/demo/platforms/ios/SumSubCordova/Plugins/cordova-plugin-advanced-http/CordovaHttpPlugin.h +20 -0
- package/demo/platforms/ios/SumSubCordova/Plugins/cordova-plugin-advanced-http/CordovaHttpPlugin.m +639 -0
- package/demo/platforms/ios/SumSubCordova/Plugins/cordova-plugin-advanced-http/SDNetworkActivityIndicator.h +18 -0
- package/demo/platforms/ios/SumSubCordova/Plugins/cordova-plugin-advanced-http/SDNetworkActivityIndicator.m +70 -0
- package/demo/platforms/ios/SumSubCordova/Plugins/cordova-plugin-advanced-http/TextRequestSerializer.h +8 -0
- package/demo/platforms/ios/SumSubCordova/Plugins/cordova-plugin-advanced-http/TextRequestSerializer.m +53 -0
- package/demo/platforms/ios/SumSubCordova/Plugins/cordova-plugin-advanced-http/TextResponseSerializer.h +8 -0
- package/demo/platforms/ios/SumSubCordova/Plugins/cordova-plugin-advanced-http/TextResponseSerializer.m +145 -0
- package/demo/platforms/ios/SumSubCordova/Plugins/cordova-plugin-file/CDVAssetLibraryFilesystem.h +30 -0
- package/demo/platforms/ios/SumSubCordova/Plugins/cordova-plugin-file/CDVAssetLibraryFilesystem.m +253 -0
- package/demo/platforms/ios/SumSubCordova/Plugins/cordova-plugin-file/CDVFile.h +157 -0
- package/demo/platforms/ios/SumSubCordova/Plugins/cordova-plugin-file/CDVFile.m +1119 -0
- package/demo/platforms/ios/SumSubCordova/Plugins/cordova-plugin-file/CDVLocalFilesystem.h +32 -0
- package/demo/platforms/ios/SumSubCordova/Plugins/cordova-plugin-file/CDVLocalFilesystem.m +750 -0
- package/demo/platforms/ios/SumSubCordova/Plugins/cordova-plugin-qr-barcode-scanner/CDVBarcodeScanner.mm +1067 -0
- package/demo/platforms/ios/SumSubCordova/Plugins/cordova-plugin-timer/NativeTimerAdapter.h +35 -0
- package/demo/platforms/ios/SumSubCordova/Plugins/cordova-plugin-timer/NativeTimerAdapter.m +76 -0
- package/demo/platforms/ios/SumSubCordova/Plugins/cordova-plugin-timer/NativeTimerPlugin.h +28 -0
- package/demo/platforms/ios/SumSubCordova/Plugins/cordova-plugin-timer/NativeTimerPlugin.m +158 -0
- package/demo/platforms/ios/SumSubCordova/Plugins/cordova-plugin-wkwebview-engine/CDVWKProcessPoolFactory.h +27 -0
- package/demo/platforms/ios/SumSubCordova/Plugins/cordova-plugin-wkwebview-engine/CDVWKProcessPoolFactory.m +49 -0
- package/demo/platforms/ios/SumSubCordova/Plugins/cordova-plugin-wkwebview-engine/CDVWKWebViewEngine.h +29 -0
- package/demo/platforms/ios/SumSubCordova/Plugins/cordova-plugin-wkwebview-engine/CDVWKWebViewEngine.m +494 -0
- package/demo/platforms/ios/SumSubCordova/Plugins/cordova-plugin-wkwebview-engine/CDVWKWebViewUIDelegate.h +28 -0
- package/demo/platforms/ios/SumSubCordova/Plugins/cordova-plugin-wkwebview-engine/CDVWKWebViewUIDelegate.m +123 -0
- package/demo/platforms/ios/SumSubCordova/Resources/CDVBarcodeScanner.bundle/beep.caf +0 -0
- package/demo/platforms/ios/SumSubCordova/Resources/CDVBarcodeScanner.bundle/torch.png +0 -0
- package/demo/platforms/ios/SumSubCordova/Resources/CDVBarcodeScanner.bundle/torch@2x.png +0 -0
- package/demo/platforms/ios/SumSubCordova/Resources/CDVBarcodeScanner.bundle/torch@3x.png +0 -0
- package/demo/platforms/ios/SumSubCordova/Resources/scannerOverlay.xib +185 -0
- package/demo/platforms/ios/SumSubCordova/Scripts/copy-www-build-step.sh +63 -0
- package/demo/platforms/ios/SumSubCordova/SumSubCordova-Info.plist +60 -0
- package/demo/platforms/ios/SumSubCordova/SumSubCordova-Prefix.pch +26 -0
- package/demo/platforms/ios/SumSubCordova/config.xml +74 -0
- package/demo/platforms/ios/SumSubCordova/main.m +35 -0
- package/demo/platforms/ios/SumSubCordova.xcodeproj/project.pbxproj +698 -0
- package/demo/platforms/ios/SumSubCordova.xcworkspace/contents.xcworkspacedata +10 -0
- package/demo/platforms/ios/SumSubCordova.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/demo/platforms/ios/SumSubCordova.xcworkspace/xcshareddata/xcschemes/SumSubCordova.xcscheme +91 -0
- package/demo/platforms/ios/cordova/Api.js +715 -0
- package/demo/platforms/ios/cordova/apple_ios_version +27 -0
- package/demo/platforms/ios/cordova/apple_osx_version +27 -0
- package/demo/platforms/ios/cordova/apple_xcode_version +29 -0
- package/demo/platforms/ios/cordova/build +63 -0
- package/demo/platforms/ios/cordova/build-debug.xcconfig +32 -0
- package/demo/platforms/ios/cordova/build-extras.xcconfig +0 -0
- package/demo/platforms/ios/cordova/build-release.xcconfig +33 -0
- package/demo/platforms/ios/cordova/build.bat +19 -0
- package/demo/platforms/ios/cordova/build.xcconfig +45 -0
- package/demo/platforms/ios/cordova/check_reqs +32 -0
- package/demo/platforms/ios/cordova/check_reqs.bat +25 -0
- package/demo/platforms/ios/cordova/clean +49 -0
- package/demo/platforms/ios/cordova/clean.bat +19 -0
- package/demo/platforms/ios/cordova/defaults.xml +59 -0
- package/demo/platforms/ios/cordova/lib/BridgingHeader.js +125 -0
- package/demo/platforms/ios/cordova/lib/Podfile.js +424 -0
- package/demo/platforms/ios/cordova/lib/PodsJson.js +209 -0
- package/demo/platforms/ios/cordova/lib/build.js +464 -0
- package/demo/platforms/ios/cordova/lib/check_reqs.js +235 -0
- package/demo/platforms/ios/cordova/lib/clean.js +42 -0
- package/demo/platforms/ios/cordova/lib/list-devices +66 -0
- package/demo/platforms/ios/cordova/lib/list-emulator-build-targets +108 -0
- package/demo/platforms/ios/cordova/lib/list-emulator-images +43 -0
- package/demo/platforms/ios/cordova/lib/list-started-emulators +49 -0
- package/demo/platforms/ios/cordova/lib/plugman/pluginHandlers.js +391 -0
- package/demo/platforms/ios/cordova/lib/prepare.js +1190 -0
- package/demo/platforms/ios/cordova/lib/projectFile.js +134 -0
- package/demo/platforms/ios/cordova/lib/run.js +263 -0
- package/demo/platforms/ios/cordova/lib/spawn.js +51 -0
- package/demo/platforms/ios/cordova/lib/start-emulator +30 -0
- package/demo/platforms/ios/cordova/lib/versions.js +179 -0
- package/demo/platforms/ios/cordova/log +23 -0
- package/demo/platforms/ios/cordova/log.bat +19 -0
- package/demo/platforms/ios/cordova/loggingHelper.js +30 -0
- package/demo/platforms/ios/cordova/run +63 -0
- package/demo/platforms/ios/cordova/run.bat +19 -0
- package/demo/platforms/ios/cordova/version +35 -0
- package/demo/platforms/ios/cordova/version.bat +26 -0
- package/demo/platforms/ios/frameworks.json +7 -0
- package/demo/platforms/ios/ios.json +402 -0
- package/demo/platforms/ios/platform_www/cordova-js-src/.eslintrc.yml +4 -0
- package/demo/platforms/ios/platform_www/cordova-js-src/exec.js +262 -0
- package/demo/platforms/ios/platform_www/cordova-js-src/platform.js +31 -0
- package/demo/platforms/ios/platform_www/cordova-js-src/plugin/ios/console.js +186 -0
- package/demo/platforms/ios/platform_www/cordova-js-src/plugin/ios/logger.js +349 -0
- package/demo/platforms/ios/platform_www/cordova.js +2188 -0
- package/demo/platforms/ios/platform_www/cordova_plugins.js +302 -0
- package/demo/platforms/ios/platform_www/plugins/cordova-idensic-mobile-sdk-plugin/dist/SNSMobileSDK.js +3 -0
- package/demo/platforms/ios/pods-debug.xcconfig +2 -0
- package/demo/platforms/ios/pods-release.xcconfig +2 -0
- package/demo/platforms/ios/pods.json +20 -0
- package/demo/plugins/android.json +47 -0
- package/demo/plugins/cordova-idensic-mobile-sdk-plugin/dist/SNSMobileSDK.js +1 -0
- package/demo/plugins/cordova-idensic-mobile-sdk-plugin/package.json +48 -0
- package/demo/plugins/cordova-idensic-mobile-sdk-plugin/plugin.xml +82 -0
- package/demo/plugins/cordova-idensic-mobile-sdk-plugin/src/android/build-extras.gradle +20 -0
- package/demo/plugins/cordova-idensic-mobile-sdk-plugin/src/android/build.gradle +54 -0
- package/demo/plugins/cordova-idensic-mobile-sdk-plugin/src/android/dependencies.gradle +122 -0
- package/demo/plugins/cordova-idensic-mobile-sdk-plugin/src/android/gradlew +172 -0
- package/demo/plugins/cordova-idensic-mobile-sdk-plugin/src/android/gradlew.bat +84 -0
- package/demo/plugins/cordova-idensic-mobile-sdk-plugin/src/android/src/main/java/com/sumsub/msdk/plugins/cordova/SNSMobileSdkCordovaPlugin.java +328 -0
- package/demo/plugins/cordova-idensic-mobile-sdk-plugin/src/ios/SNSMobileSdkCordovaPlugin.h +12 -0
- package/demo/plugins/cordova-idensic-mobile-sdk-plugin/src/ios/SNSMobileSdkCordovaPlugin.m +263 -0
- package/demo/plugins/cordova-plugin-advanced-http/.editorconfig +19 -0
- package/demo/plugins/cordova-plugin-advanced-http/.github/ISSUE_TEMPLATE/--bug-report.md +33 -0
- package/demo/plugins/cordova-plugin-advanced-http/.github/ISSUE_TEMPLATE/--feature-request.md +21 -0
- package/demo/plugins/cordova-plugin-advanced-http/.github/ISSUE_TEMPLATE/--support-question.md +18 -0
- package/demo/plugins/cordova-plugin-advanced-http/.github/workflows/ci.yml +65 -0
- package/demo/plugins/cordova-plugin-advanced-http/.travis.yml +61 -0
- package/demo/plugins/cordova-plugin-advanced-http/.vscode/settings.json +3 -0
- package/demo/plugins/cordova-plugin-advanced-http/CHANGELOG.md +347 -0
- package/demo/plugins/cordova-plugin-advanced-http/CONTRIBUTING.md +82 -0
- package/demo/plugins/cordova-plugin-advanced-http/LICENSE +23 -0
- package/demo/plugins/cordova-plugin-advanced-http/README.md +483 -0
- package/demo/plugins/cordova-plugin-advanced-http/package.json +114 -0
- package/demo/plugins/cordova-plugin-advanced-http/plugin.xml +96 -0
- package/demo/plugins/cordova-plugin-advanced-http/src/android/com/silkimen/cordovahttp/CordovaClientAuth.java +113 -0
- package/demo/plugins/cordova-plugin-advanced-http/src/android/com/silkimen/cordovahttp/CordovaHttpBase.java +225 -0
- package/demo/plugins/cordova-plugin-advanced-http/src/android/com/silkimen/cordovahttp/CordovaHttpDownload.java +41 -0
- package/demo/plugins/cordova-plugin-advanced-http/src/android/com/silkimen/cordovahttp/CordovaHttpOperation.java +24 -0
- package/demo/plugins/cordova-plugin-advanced-http/src/android/com/silkimen/cordovahttp/CordovaHttpPlugin.java +240 -0
- package/demo/plugins/cordova-plugin-advanced-http/src/android/com/silkimen/cordovahttp/CordovaHttpResponse.java +100 -0
- package/demo/plugins/cordova-plugin-advanced-http/src/android/com/silkimen/cordovahttp/CordovaHttpUpload.java +91 -0
- package/demo/plugins/cordova-plugin-advanced-http/src/android/com/silkimen/cordovahttp/CordovaObservableCallbackContext.java +58 -0
- package/demo/plugins/cordova-plugin-advanced-http/src/android/com/silkimen/cordovahttp/CordovaServerTrust.java +124 -0
- package/demo/plugins/cordova-plugin-advanced-http/src/android/com/silkimen/http/HttpBodyDecoder.java +55 -0
- package/demo/plugins/cordova-plugin-advanced-http/src/android/com/silkimen/http/HttpRequest.java +3095 -0
- package/demo/plugins/cordova-plugin-advanced-http/src/android/com/silkimen/http/JsonUtils.java +58 -0
- package/demo/plugins/cordova-plugin-advanced-http/src/android/com/silkimen/http/KeyChainKeyManager.java +57 -0
- package/demo/plugins/cordova-plugin-advanced-http/src/android/com/silkimen/http/TLSConfiguration.java +63 -0
- package/demo/plugins/cordova-plugin-advanced-http/src/android/com/silkimen/http/TLSSocketFactory.java +63 -0
- package/demo/plugins/cordova-plugin-advanced-http/src/browser/cordova-http-plugin.js +323 -0
- package/demo/plugins/cordova-plugin-advanced-http/src/ios/AFNetworking/AFHTTPSessionManager.h +353 -0
- package/demo/plugins/cordova-plugin-advanced-http/src/ios/AFNetworking/AFHTTPSessionManager.m +464 -0
- package/demo/plugins/cordova-plugin-advanced-http/src/ios/AFNetworking/AFNetworkReachabilityManager.h +206 -0
- package/demo/plugins/cordova-plugin-advanced-http/src/ios/AFNetworking/AFNetworkReachabilityManager.m +263 -0
- package/demo/plugins/cordova-plugin-advanced-http/src/ios/AFNetworking/AFNetworking.h +41 -0
- package/demo/plugins/cordova-plugin-advanced-http/src/ios/AFNetworking/AFSecurityPolicy.h +154 -0
- package/demo/plugins/cordova-plugin-advanced-http/src/ios/AFNetworking/AFSecurityPolicy.m +353 -0
- package/demo/plugins/cordova-plugin-advanced-http/src/ios/AFNetworking/AFURLRequestSerialization.h +479 -0
- package/demo/plugins/cordova-plugin-advanced-http/src/ios/AFNetworking/AFURLRequestSerialization.m +1355 -0
- package/demo/plugins/cordova-plugin-advanced-http/src/ios/AFNetworking/AFURLResponseSerialization.h +318 -0
- package/demo/plugins/cordova-plugin-advanced-http/src/ios/AFNetworking/AFURLResponseSerialization.m +806 -0
- package/demo/plugins/cordova-plugin-advanced-http/src/ios/AFNetworking/AFURLSessionManager.h +500 -0
- package/demo/plugins/cordova-plugin-advanced-http/src/ios/AFNetworking/AFURLSessionManager.m +1239 -0
- package/demo/plugins/cordova-plugin-advanced-http/src/ios/BinaryRequestSerializer.h +8 -0
- package/demo/plugins/cordova-plugin-advanced-http/src/ios/BinaryRequestSerializer.m +53 -0
- package/demo/plugins/cordova-plugin-advanced-http/src/ios/BinaryResponseSerializer.h +8 -0
- package/demo/plugins/cordova-plugin-advanced-http/src/ios/BinaryResponseSerializer.m +126 -0
- package/demo/plugins/cordova-plugin-advanced-http/src/ios/CordovaHttpPlugin.h +20 -0
- package/demo/plugins/cordova-plugin-advanced-http/src/ios/CordovaHttpPlugin.m +639 -0
- package/demo/plugins/cordova-plugin-advanced-http/src/ios/SDNetworkActivityIndicator/LICENSE +20 -0
- package/demo/plugins/cordova-plugin-advanced-http/src/ios/SDNetworkActivityIndicator/README.md +52 -0
- package/demo/plugins/cordova-plugin-advanced-http/src/ios/SDNetworkActivityIndicator/SDNetworkActivityIndicator.h +18 -0
- package/demo/plugins/cordova-plugin-advanced-http/src/ios/SDNetworkActivityIndicator/SDNetworkActivityIndicator.m +70 -0
- package/demo/plugins/cordova-plugin-advanced-http/src/ios/TextRequestSerializer.h +8 -0
- package/demo/plugins/cordova-plugin-advanced-http/src/ios/TextRequestSerializer.m +53 -0
- package/demo/plugins/cordova-plugin-advanced-http/src/ios/TextResponseSerializer.h +8 -0
- package/demo/plugins/cordova-plugin-advanced-http/src/ios/TextResponseSerializer.m +145 -0
- package/demo/plugins/cordova-plugin-androidx/README.md +55 -0
- package/demo/plugins/cordova-plugin-androidx/package.json +47 -0
- package/demo/plugins/cordova-plugin-androidx/plugin.xml +20 -0
- package/demo/plugins/cordova-plugin-androidx/scripts/apply-to-gradle.properties.js +49 -0
- package/demo/plugins/cordova-plugin-androidx-adapter/README.md +67 -0
- package/demo/plugins/cordova-plugin-androidx-adapter/apply.js +101 -0
- package/demo/plugins/cordova-plugin-androidx-adapter/artifact-mappings.json +105 -0
- package/demo/plugins/cordova-plugin-androidx-adapter/class-mappings.json +1938 -0
- package/demo/plugins/cordova-plugin-androidx-adapter/package.json +43 -0
- package/demo/plugins/cordova-plugin-androidx-adapter/plugin.xml +20 -0
- package/demo/plugins/cordova-plugin-console/.appveyor.yml +29 -0
- package/demo/plugins/cordova-plugin-console/.github/PULL_REQUEST_TEMPLATE.md +22 -0
- package/demo/plugins/cordova-plugin-console/.jshintrc +17 -0
- package/demo/plugins/cordova-plugin-console/.travis.yml +82 -0
- package/demo/plugins/cordova-plugin-console/CONTRIBUTING.md +37 -0
- package/demo/plugins/cordova-plugin-console/LICENSE +202 -0
- package/demo/plugins/cordova-plugin-console/NOTICE +5 -0
- package/demo/plugins/cordova-plugin-console/README.md +116 -0
- package/demo/plugins/cordova-plugin-console/RELEASENOTES.md +126 -0
- package/demo/plugins/cordova-plugin-console/doc/de/README.md +43 -0
- package/demo/plugins/cordova-plugin-console/doc/de/index.md +41 -0
- package/demo/plugins/cordova-plugin-console/doc/es/README.md +41 -0
- package/demo/plugins/cordova-plugin-console/doc/es/index.md +39 -0
- package/demo/plugins/cordova-plugin-console/doc/fr/README.md +41 -0
- package/demo/plugins/cordova-plugin-console/doc/fr/index.md +39 -0
- package/demo/plugins/cordova-plugin-console/doc/it/README.md +43 -0
- package/demo/plugins/cordova-plugin-console/doc/it/index.md +41 -0
- package/demo/plugins/cordova-plugin-console/doc/ja/README.md +43 -0
- package/demo/plugins/cordova-plugin-console/doc/ja/index.md +41 -0
- package/demo/plugins/cordova-plugin-console/doc/ko/README.md +43 -0
- package/demo/plugins/cordova-plugin-console/doc/ko/index.md +41 -0
- package/demo/plugins/cordova-plugin-console/doc/pl/README.md +43 -0
- package/demo/plugins/cordova-plugin-console/doc/pl/index.md +41 -0
- package/demo/plugins/cordova-plugin-console/doc/ru/index.md +31 -0
- package/demo/plugins/cordova-plugin-console/doc/zh/README.md +43 -0
- package/demo/plugins/cordova-plugin-console/doc/zh/index.md +41 -0
- package/demo/plugins/cordova-plugin-console/package.json +82 -0
- package/demo/plugins/cordova-plugin-console/plugin.xml +132 -0
- package/demo/plugins/cordova-plugin-console/src/ios/CDVLogger.h +26 -0
- package/demo/plugins/cordova-plugin-console/src/ios/CDVLogger.m +38 -0
- package/demo/plugins/cordova-plugin-console/src/ubuntu/console.cpp +29 -0
- package/demo/plugins/cordova-plugin-console/src/ubuntu/console.h +43 -0
- package/demo/plugins/cordova-plugin-console/src/wp/DebugConsole.cs +47 -0
- package/demo/plugins/cordova-plugin-console/tests/package.json +14 -0
- package/demo/plugins/cordova-plugin-console/tests/plugin.xml +31 -0
- package/demo/plugins/cordova-plugin-console/tests/tests.js +43 -0
- package/demo/plugins/cordova-plugin-enable-multidex/.editorconfig +20 -0
- package/demo/plugins/cordova-plugin-enable-multidex/.eslintrc.json +11 -0
- package/demo/plugins/cordova-plugin-enable-multidex/.prettierrc.json +10 -0
- package/demo/plugins/cordova-plugin-enable-multidex/.travis.yml +52 -0
- package/demo/plugins/cordova-plugin-enable-multidex/LICENSE +21 -0
- package/demo/plugins/cordova-plugin-enable-multidex/README.md +25 -0
- package/demo/plugins/cordova-plugin-enable-multidex/package.json +79 -0
- package/demo/plugins/cordova-plugin-enable-multidex/plugin.xml +18 -0
- package/demo/plugins/cordova-plugin-enable-multidex/scripts/android/editManifest.js +38 -0
- package/demo/plugins/cordova-plugin-enable-multidex/src/android/build.gradle +9 -0
- package/demo/plugins/cordova-plugin-file/.jshintrc +30 -0
- package/demo/plugins/cordova-plugin-file/.ratignore +1 -0
- package/demo/plugins/cordova-plugin-file/CONTRIBUTING.md +37 -0
- package/demo/plugins/cordova-plugin-file/LICENSE +202 -0
- package/demo/plugins/cordova-plugin-file/NOTICE +5 -0
- package/demo/plugins/cordova-plugin-file/README.md +833 -0
- package/demo/plugins/cordova-plugin-file/RELEASENOTES.md +496 -0
- package/demo/plugins/cordova-plugin-file/doc/plugins.md +120 -0
- package/demo/plugins/cordova-plugin-file/package.json +86 -0
- package/demo/plugins/cordova-plugin-file/plugin.xml +260 -0
- package/demo/plugins/cordova-plugin-file/src/android/AssetFilesystem.java +294 -0
- package/demo/plugins/cordova-plugin-file/src/android/ContentFilesystem.java +223 -0
- package/demo/plugins/cordova-plugin-file/src/android/DirectoryManager.java +134 -0
- package/demo/plugins/cordova-plugin-file/src/android/EncodingException.java +29 -0
- package/demo/plugins/cordova-plugin-file/src/android/FileExistsException.java +29 -0
- package/demo/plugins/cordova-plugin-file/src/android/FileUtils.java +1225 -0
- package/demo/plugins/cordova-plugin-file/src/android/Filesystem.java +331 -0
- package/demo/plugins/cordova-plugin-file/src/android/InvalidModificationException.java +30 -0
- package/demo/plugins/cordova-plugin-file/src/android/LocalFilesystem.java +513 -0
- package/demo/plugins/cordova-plugin-file/src/android/LocalFilesystemURL.java +64 -0
- package/demo/plugins/cordova-plugin-file/src/android/NoModificationAllowedException.java +29 -0
- package/demo/plugins/cordova-plugin-file/src/android/PendingRequests.java +94 -0
- package/demo/plugins/cordova-plugin-file/src/android/TypeMismatchException.java +30 -0
- package/demo/plugins/cordova-plugin-file/src/android/build-extras.gradle +47 -0
- package/demo/plugins/cordova-plugin-file/src/browser/FileProxy.js +1059 -0
- package/demo/plugins/cordova-plugin-file/src/ios/CDVAssetLibraryFilesystem.h +30 -0
- package/demo/plugins/cordova-plugin-file/src/ios/CDVAssetLibraryFilesystem.m +253 -0
- package/demo/plugins/cordova-plugin-file/src/ios/CDVFile.h +157 -0
- package/demo/plugins/cordova-plugin-file/src/ios/CDVFile.m +1119 -0
- package/demo/plugins/cordova-plugin-file/src/ios/CDVLocalFilesystem.h +32 -0
- package/demo/plugins/cordova-plugin-file/src/ios/CDVLocalFilesystem.m +750 -0
- package/demo/plugins/cordova-plugin-file/src/osx/CDVFile.h +189 -0
- package/demo/plugins/cordova-plugin-file/src/osx/CDVFile.m +1056 -0
- package/demo/plugins/cordova-plugin-file/src/osx/CDVLocalFilesystem.h +32 -0
- package/demo/plugins/cordova-plugin-file/src/osx/CDVLocalFilesystem.m +733 -0
- package/demo/plugins/cordova-plugin-file/src/windows/FileProxy.js +1190 -0
- package/demo/plugins/cordova-plugin-file/tests/package.json +17 -0
- package/demo/plugins/cordova-plugin-file/tests/plugin.xml +43 -0
- package/demo/plugins/cordova-plugin-file/tests/src/android/TestContentProvider.java +93 -0
- package/demo/plugins/cordova-plugin-file/tests/tests.js +4163 -0
- package/demo/plugins/cordova-plugin-file/types/index.d.ts +378 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/.editorconfig +16 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/.github/CONTRIBUTING.md +72 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/.github/ISSUE_TEMPLATE.md +24 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/.github/PULL_REQUEST_TEMPLATE.md +0 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/.github/lock.yml +25 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/.github/stale.yml +20 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/.travis.yml +11 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/CHANGELOG.md +448 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/LICENSE.txt +22 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/README.md +197 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/buttons.psd +0 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/hooks/windows/check-arch.js +52 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/package.json +89 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/plugin.xml +74 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/spec/helper/cordova.js +83 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/spec/index.spec.js +78 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/README.md +1 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/AndroidManifest.xml +14 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/R.txt +1398 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/aapt/AndroidManifest.xml +14 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html/apache-license.txt +201 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-de/about1d.html +15 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-de/about2d.html +28 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-de/index.html +23 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-de/license.html +30 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-de/scanning.html +19 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-de/sharing.html +14 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-de/whatsnew.html +14 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-en/about1d.html +15 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-en/about2d.html +28 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-en/index.html +23 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-en/license.html +42 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-en/scanning.html +19 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-en/sharing.html +14 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-en/whatsnew.html +14 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-es/about1d.html +18 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-es/about2d.html +30 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-es/index.html +24 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-es/license.html +39 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-es/scanning.html +18 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-es/sharing.html +13 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-es/whatsnew.html +14 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-fr/about1d.html +15 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-fr/about2d.html +26 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-fr/index.html +23 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-fr/license.html +30 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-fr/scanning.html +19 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-fr/sharing.html +14 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-fr/whatsnew.html +14 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-it/about1d.html +15 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-it/about2d.html +28 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-it/index.html +23 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-it/license.html +30 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-it/scanning.html +19 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-it/sharing.html +14 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-it/whatsnew.html +14 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-ja/about1d.html +15 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-ja/about2d.html +28 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-ja/index.html +22 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-ja/license.html +29 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-ja/scanning.html +19 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-ja/sharing.html +14 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-ja/whatsnew.html +14 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-ko/about1d.html +15 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-ko/about2d.html +28 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-ko/index.html +23 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-ko/license.html +30 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-ko/scanning.html +19 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-ko/sharing.html +14 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-ko/whatsnew.html +14 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-nl/about1d.html +15 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-nl/about2d.html +28 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-nl/index.html +23 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-nl/license.html +30 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-nl/scanning.html +19 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-nl/sharing.html +14 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-nl/whatsnew.html +14 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-pt/about1d.html +15 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-pt/about2d.html +28 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-pt/index.html +23 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-pt/license.html +30 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-pt/scanning.html +19 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-pt/sharing.html +14 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-pt/whatsnew.html +14 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-ru/about1d.html +15 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-ru/about2d.html +28 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-ru/index.html +23 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-ru/license.html +30 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-ru/scanning.html +19 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-ru/sharing.html +14 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-ru/whatsnew.html +14 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-uk/about1d.html +15 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-uk/about2d.html +28 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-uk/index.html +23 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-uk/license.html +29 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-uk/scanning.html +19 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-uk/sharing.html +14 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-uk/whatsnew.html +14 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-zh-rCN/about1d.html +15 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-zh-rCN/about2d.html +29 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-zh-rCN/index.html +23 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-zh-rCN/license.html +30 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-zh-rCN/scanning.html +19 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-zh-rCN/sharing.html +13 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-zh-rCN/whatsnew.html +14 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-zh-rHK/about1d.html +15 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-zh-rHK/about2d.html +28 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-zh-rHK/index.html +23 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-zh-rHK/license.html +31 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-zh-rHK/scanning.html +21 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-zh-rHK/sharing.html +14 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-zh-rHK/whatsnew.html +14 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-zh-rTW/about1d.html +15 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-zh-rTW/about2d.html +28 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-zh-rTW/index.html +23 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-zh-rTW/license.html +31 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-zh-rTW/scanning.html +21 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-zh-rTW/sharing.html +14 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/html-zh-rTW/whatsnew.html +14 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/images/big-1d.png +0 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/images/big-aztec.png +0 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/images/big-datamatrix.png +0 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/images/big-pdf417.png +0 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/images/big-qr.png +0 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/images/contact-results-screen.jpg +0 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/images/demo-no.png +0 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/images/demo-yes.png +0 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/images/scan-example.png +0 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/images/scan-from-phone.png +0 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/images/search-book-contents.jpg +0 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/assets/style.css +28 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/classes.jar +0 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/res/drawable/flip_camera.png +0 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/res/drawable/launcher_icon.png +0 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/res/drawable/share_via_barcode.png +0 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/res/drawable/toggle_torch.png +0 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/res/drawable-hdpi/launcher_icon.png +0 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/res/drawable-xhdpi/launcher_icon.png +0 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/res/drawable-xxhdpi/launcher_icon.png +0 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/res/layout/app_picker_list_item.xml +39 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/res/layout/bookmark_picker_list_item.xml +39 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/res/layout/capture.xml +229 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/res/layout/encode.xml +54 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/res/layout/help.xml +21 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/res/layout/history_list_item.xml +38 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/res/layout/search_book_contents.xml +55 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/res/layout/search_book_contents_header.xml +25 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/res/layout/search_book_contents_list_item.xml +41 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/res/layout/share.xml +95 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/res/layout-land/encode.xml +53 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/res/layout-land/share.xml +91 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/res/layout-ldpi/capture.xml +219 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/res/menu/capture.xml +38 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/res/menu/encode.xml +28 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/res/menu/history.xml +28 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/res/raw/beep.ogg +0 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/res/values/values.xml +221 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/res/values-ar/values-ar.xml +129 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/res/values-bg/values-bg.xml +129 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/res/values-ca/values-ca.xml +129 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/res/values-cs/values-cs.xml +129 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/res/values-da/values-da.xml +129 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/res/values-de/values-de.xml +129 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/res/values-el/values-el.xml +129 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/res/values-es/values-es.xml +129 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/res/values-eu/values-eu.xml +129 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/res/values-fi/values-fi.xml +129 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/res/values-fr/values-fr.xml +129 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/res/values-he/values-he.xml +129 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/res/values-hi/values-hi.xml +129 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/res/values-hu/values-hu.xml +129 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/res/values-id/values-id.xml +129 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/res/values-it/values-it.xml +129 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/res/values-iw/values-iw.xml +129 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/res/values-ja/values-ja.xml +129 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/res/values-ko/values-ko.xml +129 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/res/values-nl/values-nl.xml +129 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/res/values-pl/values-pl.xml +129 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/res/values-pt/values-pt.xml +129 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/res/values-ro/values-ro.xml +129 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/res/values-ru/values-ru.xml +129 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/res/values-sk/values-sk.xml +129 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/res/values-sl/values-sl.xml +129 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/res/values-sv/values-sv.xml +129 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/res/values-th/values-th.xml +129 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/res/values-tr/values-tr.xml +129 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/res/values-uk/values-uk.xml +129 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/res/values-zh-rCN/values-zh-rCN.xml +129 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/res/values-zh-rHK/values-zh-rHK.xml +129 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/res/values-zh-rTW/values-zh-rTW.xml +129 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5/res/xml/preferences.xml +136 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner-release-2.1.5.aar +0 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/barcodescanner.gradle +17 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/android/com/phonegap/plugins/barcodescanner/BarcodeScanner.java +328 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/browser/BarcodeScannerProxy.js +24 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/ios/CDVBarcodeScanner.bundle/beep.caf +0 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/ios/CDVBarcodeScanner.bundle/torch.png +0 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/ios/CDVBarcodeScanner.bundle/torch@2x.png +0 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/ios/CDVBarcodeScanner.bundle/torch@3x.png +0 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/ios/CDVBarcodeScanner.mm +1067 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/ios/scannerOverlay.xib +185 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/windows/BarcodeScannerProxy.js +738 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/windows/assets/plugin-barcodeScanner.css +89 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/windows/lib/Properties/AssemblyInfo.cs +39 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/windows/lib/Reader.cs +173 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/windows/lib/WinRTBarcodeReader.csproj +137 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/windows/lib/ZXing.winmd +0 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/windows/lib.UW/ANY/ZXing.winmd +0 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/windows/lib.UW/ARM/ZXing.winmd +0 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/windows/lib.UW/x64/ZXing.winmd +0 -0
- package/demo/plugins/cordova-plugin-qr-barcode-scanner/src/windows/lib.UW/x86/ZXing.winmd +0 -0
- package/demo/plugins/cordova-plugin-timer/.appveyor.yml +28 -0
- package/demo/plugins/cordova-plugin-timer/.github/PULL_REQUEST_TEMPLATE.md +22 -0
- package/demo/plugins/cordova-plugin-timer/.jshintignore +1 -0
- package/demo/plugins/cordova-plugin-timer/.jshintrc +16 -0
- package/demo/plugins/cordova-plugin-timer/.travis.yml +98 -0
- package/demo/plugins/cordova-plugin-timer/LICENSE +204 -0
- package/demo/plugins/cordova-plugin-timer/README.md +88 -0
- package/demo/plugins/cordova-plugin-timer/RELEASENOTES.md +0 -0
- package/demo/plugins/cordova-plugin-timer/package.json +87 -0
- package/demo/plugins/cordova-plugin-timer/plugin.xml +68 -0
- package/demo/plugins/cordova-plugin-timer/src/android/Consumer.java +22 -0
- package/demo/plugins/cordova-plugin-timer/src/android/NativeTimerAdapter.java +27 -0
- package/demo/plugins/cordova-plugin-timer/src/android/NativeTimerAdapterImpl.java +123 -0
- package/demo/plugins/cordova-plugin-timer/src/android/NativeTimerPlugin.java +163 -0
- package/demo/plugins/cordova-plugin-timer/src/ios/NativeTimerAdapter.h +35 -0
- package/demo/plugins/cordova-plugin-timer/src/ios/NativeTimerAdapter.m +76 -0
- package/demo/plugins/cordova-plugin-timer/src/ios/NativeTimerPlugin.h +28 -0
- package/demo/plugins/cordova-plugin-timer/src/ios/NativeTimerPlugin.m +158 -0
- package/demo/plugins/cordova-plugin-timer/types/index.d.ts +21 -0
- package/demo/plugins/cordova-plugin-whitelist/CONTRIBUTING.md +37 -0
- package/demo/plugins/cordova-plugin-whitelist/LICENSE +202 -0
- package/demo/plugins/cordova-plugin-whitelist/NOTICE +5 -0
- package/demo/plugins/cordova-plugin-whitelist/README.md +167 -0
- package/demo/plugins/cordova-plugin-whitelist/RELEASENOTES.md +87 -0
- package/demo/plugins/cordova-plugin-whitelist/package.json +70 -0
- package/demo/plugins/cordova-plugin-whitelist/plugin.xml +44 -0
- package/demo/plugins/cordova-plugin-whitelist/src/android/WhitelistPlugin.java +161 -0
- package/demo/plugins/cordova-plugin-whitelist/tests/README.md +53 -0
- package/demo/plugins/cordova-plugin-whitelist/tests/package.json +15 -0
- package/demo/plugins/cordova-plugin-whitelist/tests/plugin.xml +56 -0
- package/demo/plugins/cordova-plugin-whitelist/tests/scripts/remove-access.js +19 -0
- package/demo/plugins/cordova-plugin-whitelist/tests/src/android/WhitelistAPI.java +90 -0
- package/demo/plugins/cordova-plugin-whitelist/tests/tests.js +214 -0
- package/demo/plugins/cordova-plugin-wkwebview-engine/CONTRIBUTING.md +32 -0
- package/demo/plugins/cordova-plugin-wkwebview-engine/LICENSE +202 -0
- package/demo/plugins/cordova-plugin-wkwebview-engine/NOTICE +5 -0
- package/demo/plugins/cordova-plugin-wkwebview-engine/README.md +123 -0
- package/demo/plugins/cordova-plugin-wkwebview-engine/RELEASENOTES.md +121 -0
- package/demo/plugins/cordova-plugin-wkwebview-engine/package.json +72 -0
- package/demo/plugins/cordova-plugin-wkwebview-engine/plugin.xml +63 -0
- package/demo/plugins/cordova-plugin-wkwebview-engine/src/ios/CDVWKProcessPoolFactory.h +27 -0
- package/demo/plugins/cordova-plugin-wkwebview-engine/src/ios/CDVWKProcessPoolFactory.m +49 -0
- package/demo/plugins/cordova-plugin-wkwebview-engine/src/ios/CDVWKWebViewEngine.h +29 -0
- package/demo/plugins/cordova-plugin-wkwebview-engine/src/ios/CDVWKWebViewEngine.m +494 -0
- package/demo/plugins/cordova-plugin-wkwebview-engine/src/ios/CDVWKWebViewUIDelegate.h +28 -0
- package/demo/plugins/cordova-plugin-wkwebview-engine/src/ios/CDVWKWebViewUIDelegate.m +123 -0
- package/demo/plugins/cordova-plugin-wkwebview-engine/tests/ios/CDVWKWebViewEngineTest/CDVWKWebViewEngineLibTests/CDVWKWebViewEngineTest.m +240 -0
- package/demo/plugins/cordova-plugin-wkwebview-engine/tests/ios/CDVWKWebViewEngineTest/CDVWKWebViewEngineLibTests/Info.plist +24 -0
- package/demo/plugins/cordova-plugin-wkwebview-engine/tests/ios/CDVWKWebViewEngineTest/CDVWKWebViewEngineTest.xcodeproj/project.pbxproj +559 -0
- package/demo/plugins/cordova-plugin-wkwebview-engine/tests/ios/CDVWKWebViewEngineTest/CDVWKWebViewEngineTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- package/demo/plugins/cordova-plugin-wkwebview-engine/tests/ios/CDVWKWebViewEngineTest/CDVWKWebViewEngineTest.xcodeproj/project.xcworkspace/xcshareddata/CDVWKWebViewEngineTest.xccheckout +41 -0
- package/demo/plugins/cordova-plugin-wkwebview-engine/tests/ios/CDVWKWebViewEngineTest/CDVWKWebViewEngineTest.xcodeproj/xcshareddata/xcschemes/CDVWKWebViewEngineLib.xcscheme +80 -0
- package/demo/plugins/cordova-plugin-wkwebview-engine/tests/ios/CDVWKWebViewEngineTest/CDVWKWebViewEngineTest.xcodeproj/xcshareddata/xcschemes/CDVWKWebViewEngineLibTests.xcscheme +104 -0
- package/demo/plugins/cordova-plugin-wkwebview-engine/tests/ios/CDVWKWebViewEngineTest.xcworkspace/contents.xcworkspacedata +7 -0
- package/demo/plugins/cordova-plugin-wkwebview-engine/tests/ios/CDVWKWebViewEngineTest.xcworkspace/xcshareddata/CDVWKWebViewEngineTest.xccheckout +41 -0
- package/demo/plugins/cordova-plugin-wkwebview-engine/tests/ios/CDVWKWebViewEngineTest.xcworkspace/xcshareddata/xcschemes/CordovaLib.xcscheme +80 -0
- package/demo/plugins/cordova-plugin-wkwebview-engine/tests/ios/README.md +40 -0
- package/demo/plugins/cordova-plugin-wkwebview-engine/tests/ios/package.json +13 -0
- package/demo/plugins/cordova-plugin-wkwebview-engine/tests/ios/test.xcconfig +20 -0
- package/demo/plugins/cordova-plugin-wkwebview-engine/tests/package.json +14 -0
- package/demo/plugins/cordova-plugin-wkwebview-engine/tests/plugin.xml +29 -0
- package/demo/plugins/cordova-plugin-wkwebview-engine/tests/tests.js +44 -0
- package/demo/plugins/ios.json +46 -0
- package/dist/SNSMobileSDK.js +1 -0
- package/package.json +48 -0
- package/plugin.xml +82 -0
- package/src/android/build-extras.gradle +22 -0
- package/src/android/build.gradle +54 -0
- package/src/android/dependencies.gradle +122 -0
- package/src/android/gradlew +172 -0
- package/src/android/gradlew.bat +84 -0
- package/src/android/src/main/java/com/sumsub/msdk/plugins/cordova/SNSMobileSdkCordovaPlugin.java +339 -0
- package/src/ios/SNSMobileSdkCordovaPlugin.h +12 -0
- package/src/ios/SNSMobileSdkCordovaPlugin.m +263 -0
- package/webpack.config.js +42 -0
|
@@ -0,0 +1,202 @@
|
|
|
1
|
+
|
|
2
|
+
Apache License
|
|
3
|
+
Version 2.0, January 2004
|
|
4
|
+
http://www.apache.org/licenses/
|
|
5
|
+
|
|
6
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
7
|
+
|
|
8
|
+
1. Definitions.
|
|
9
|
+
|
|
10
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
11
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
12
|
+
|
|
13
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
14
|
+
the copyright owner that is granting the License.
|
|
15
|
+
|
|
16
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
17
|
+
other entities that control, are controlled by, or are under common
|
|
18
|
+
control with that entity. For the purposes of this definition,
|
|
19
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
20
|
+
direction or management of such entity, whether by contract or
|
|
21
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
22
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
23
|
+
|
|
24
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
25
|
+
exercising permissions granted by this License.
|
|
26
|
+
|
|
27
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
28
|
+
including but not limited to software source code, documentation
|
|
29
|
+
source, and configuration files.
|
|
30
|
+
|
|
31
|
+
"Object" form shall mean any form resulting from mechanical
|
|
32
|
+
transformation or translation of a Source form, including but
|
|
33
|
+
not limited to compiled object code, generated documentation,
|
|
34
|
+
and conversions to other media types.
|
|
35
|
+
|
|
36
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
37
|
+
Object form, made available under the License, as indicated by a
|
|
38
|
+
copyright notice that is included in or attached to the work
|
|
39
|
+
(an example is provided in the Appendix below).
|
|
40
|
+
|
|
41
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
42
|
+
form, that is based on (or derived from) the Work and for which the
|
|
43
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
44
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
45
|
+
of this License, Derivative Works shall not include works that remain
|
|
46
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
47
|
+
the Work and Derivative Works thereof.
|
|
48
|
+
|
|
49
|
+
"Contribution" shall mean any work of authorship, including
|
|
50
|
+
the original version of the Work and any modifications or additions
|
|
51
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
52
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
53
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
54
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
55
|
+
means any form of electronic, verbal, or written communication sent
|
|
56
|
+
to the Licensor or its representatives, including but not limited to
|
|
57
|
+
communication on electronic mailing lists, source code control systems,
|
|
58
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
59
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
60
|
+
excluding communication that is conspicuously marked or otherwise
|
|
61
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
62
|
+
|
|
63
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
64
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
65
|
+
subsequently incorporated within the Work.
|
|
66
|
+
|
|
67
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
68
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
69
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
70
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
71
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
72
|
+
Work and such Derivative Works in Source or Object form.
|
|
73
|
+
|
|
74
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
75
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
76
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
77
|
+
(except as stated in this section) patent license to make, have made,
|
|
78
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
79
|
+
where such license applies only to those patent claims licensable
|
|
80
|
+
by such Contributor that are necessarily infringed by their
|
|
81
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
82
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
83
|
+
institute patent litigation against any entity (including a
|
|
84
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
85
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
86
|
+
or contributory patent infringement, then any patent licenses
|
|
87
|
+
granted to You under this License for that Work shall terminate
|
|
88
|
+
as of the date such litigation is filed.
|
|
89
|
+
|
|
90
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
91
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
92
|
+
modifications, and in Source or Object form, provided that You
|
|
93
|
+
meet the following conditions:
|
|
94
|
+
|
|
95
|
+
(a) You must give any other recipients of the Work or
|
|
96
|
+
Derivative Works a copy of this License; and
|
|
97
|
+
|
|
98
|
+
(b) You must cause any modified files to carry prominent notices
|
|
99
|
+
stating that You changed the files; and
|
|
100
|
+
|
|
101
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
102
|
+
that You distribute, all copyright, patent, trademark, and
|
|
103
|
+
attribution notices from the Source form of the Work,
|
|
104
|
+
excluding those notices that do not pertain to any part of
|
|
105
|
+
the Derivative Works; and
|
|
106
|
+
|
|
107
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
108
|
+
distribution, then any Derivative Works that You distribute must
|
|
109
|
+
include a readable copy of the attribution notices contained
|
|
110
|
+
within such NOTICE file, excluding those notices that do not
|
|
111
|
+
pertain to any part of the Derivative Works, in at least one
|
|
112
|
+
of the following places: within a NOTICE text file distributed
|
|
113
|
+
as part of the Derivative Works; within the Source form or
|
|
114
|
+
documentation, if provided along with the Derivative Works; or,
|
|
115
|
+
within a display generated by the Derivative Works, if and
|
|
116
|
+
wherever such third-party notices normally appear. The contents
|
|
117
|
+
of the NOTICE file are for informational purposes only and
|
|
118
|
+
do not modify the License. You may add Your own attribution
|
|
119
|
+
notices within Derivative Works that You distribute, alongside
|
|
120
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
121
|
+
that such additional attribution notices cannot be construed
|
|
122
|
+
as modifying the License.
|
|
123
|
+
|
|
124
|
+
You may add Your own copyright statement to Your modifications and
|
|
125
|
+
may provide additional or different license terms and conditions
|
|
126
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
127
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
128
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
129
|
+
the conditions stated in this License.
|
|
130
|
+
|
|
131
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
132
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
133
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
134
|
+
this License, without any additional terms or conditions.
|
|
135
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
136
|
+
the terms of any separate license agreement you may have executed
|
|
137
|
+
with Licensor regarding such Contributions.
|
|
138
|
+
|
|
139
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
140
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
141
|
+
except as required for reasonable and customary use in describing the
|
|
142
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
143
|
+
|
|
144
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
145
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
146
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
147
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
148
|
+
implied, including, without limitation, any warranties or conditions
|
|
149
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
150
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
151
|
+
appropriateness of using or redistributing the Work and assume any
|
|
152
|
+
risks associated with Your exercise of permissions under this License.
|
|
153
|
+
|
|
154
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
155
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
156
|
+
unless required by applicable law (such as deliberate and grossly
|
|
157
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
158
|
+
liable to You for damages, including any direct, indirect, special,
|
|
159
|
+
incidental, or consequential damages of any character arising as a
|
|
160
|
+
result of this License or out of the use or inability to use the
|
|
161
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
162
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
163
|
+
other commercial damages or losses), even if such Contributor
|
|
164
|
+
has been advised of the possibility of such damages.
|
|
165
|
+
|
|
166
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
167
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
168
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
169
|
+
or other liability obligations and/or rights consistent with this
|
|
170
|
+
License. However, in accepting such obligations, You may act only
|
|
171
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
172
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
173
|
+
defend, and hold each Contributor harmless for any liability
|
|
174
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
175
|
+
of your accepting any such warranty or additional liability.
|
|
176
|
+
|
|
177
|
+
END OF TERMS AND CONDITIONS
|
|
178
|
+
|
|
179
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
180
|
+
|
|
181
|
+
To apply the Apache License to your work, attach the following
|
|
182
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
183
|
+
replaced with your own identifying information. (Don't include
|
|
184
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
185
|
+
comment syntax for the file format. We also recommend that a
|
|
186
|
+
file or class name and description of purpose be included on the
|
|
187
|
+
same "printed page" as the copyright notice for easier
|
|
188
|
+
identification within third-party archives.
|
|
189
|
+
|
|
190
|
+
Copyright [yyyy] [name of copyright owner]
|
|
191
|
+
|
|
192
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
193
|
+
you may not use this file except in compliance with the License.
|
|
194
|
+
You may obtain a copy of the License at
|
|
195
|
+
|
|
196
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
197
|
+
|
|
198
|
+
Unless required by applicable law or agreed to in writing, software
|
|
199
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
200
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
201
|
+
See the License for the specific language governing permissions and
|
|
202
|
+
limitations under the License.
|
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
<!--
|
|
2
|
+
# license: Licensed to the Apache Software Foundation (ASF) under one
|
|
3
|
+
# or more contributor license agreements. See the NOTICE file
|
|
4
|
+
# distributed with this work for additional information
|
|
5
|
+
# regarding copyright ownership. The ASF licenses this file
|
|
6
|
+
# to you under the Apache License, Version 2.0 (the
|
|
7
|
+
# "License"); you may not use this file except in compliance
|
|
8
|
+
# with the License. You may obtain a copy of the License at
|
|
9
|
+
#
|
|
10
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
+
#
|
|
12
|
+
# Unless required by applicable law or agreed to in writing,
|
|
13
|
+
# software distributed under the License is distributed on an
|
|
14
|
+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
15
|
+
# KIND, either express or implied. See the License for the
|
|
16
|
+
# specific language governing permissions and limitations
|
|
17
|
+
# under the License.
|
|
18
|
+
-->
|
|
19
|
+
|
|
20
|
+
|AppVeyor|Travis CI|
|
|
21
|
+
|:-:|:-:|
|
|
22
|
+
|[](https://ci.appveyor.com/project/ApacheSoftwareFoundation/cordova-plugin-wkwebview-engine)|[](https://travis-ci.org/apache/cordova-plugin-wkwebview-engine)|
|
|
23
|
+
|
|
24
|
+
Cordova WKWebView Engine
|
|
25
|
+
======
|
|
26
|
+
|
|
27
|
+
This plugin makes `Cordova` use the `WKWebView` component instead of the default `UIWebView` component, and is installable only on a system with the iOS 9.0 SDK.
|
|
28
|
+
|
|
29
|
+
In iOS 9, Apple has fixed the [issue](http://www.openradar.me/18039024) present through iOS 8 where you cannot load locale files using file://, and must resort to using a local webserver. **However, you are still not able to use XHR from the file:// protocol without [CORS](https://developer.mozilla.org/en-US/docs/Web/HTTP/Access_control_CORS) enabled on your server.**
|
|
30
|
+
|
|
31
|
+
Installation
|
|
32
|
+
-----------
|
|
33
|
+
|
|
34
|
+
This plugin needs cordova-ios >4.0.0.
|
|
35
|
+
|
|
36
|
+
To install the current release:
|
|
37
|
+
|
|
38
|
+
cordova create wkwvtest my.project.id wkwvtest
|
|
39
|
+
cd wkwvtest
|
|
40
|
+
cordova platform add ios@4
|
|
41
|
+
cordova plugin add cordova-plugin-wkwebview-engine
|
|
42
|
+
|
|
43
|
+
To test the development version:
|
|
44
|
+
|
|
45
|
+
cordova create wkwvtest my.project.id wkwvtest
|
|
46
|
+
cd wkwvtest
|
|
47
|
+
cordova platform add https://github.com/apache/cordova-ios.git#master
|
|
48
|
+
cordova plugin add https://github.com/apache/cordova-plugin-wkwebview-engine.git#master
|
|
49
|
+
|
|
50
|
+
You also must have at least Xcode 7 (iOS 9 SDK) installed. Check your Xcode version by running:
|
|
51
|
+
|
|
52
|
+
xcode-select --print-path
|
|
53
|
+
|
|
54
|
+
Required Permissions
|
|
55
|
+
-----------
|
|
56
|
+
WKWebView may not fully launch (the deviceready event may not fire) unless if the following is included in config.xml. This should already be installed by Cordova in your platform config.xml when the plugin is installed.
|
|
57
|
+
|
|
58
|
+
#### config.xml
|
|
59
|
+
|
|
60
|
+
```xml
|
|
61
|
+
<feature name="CDVWKWebViewEngine">
|
|
62
|
+
<param name="ios-package" value="CDVWKWebViewEngine" />
|
|
63
|
+
</feature>
|
|
64
|
+
|
|
65
|
+
<preference name="CordovaWebViewEngine" value="CDVWKWebViewEngine" />
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
Notes
|
|
69
|
+
------
|
|
70
|
+
This plugin creates a shared `WKProcessPool` which ensures the cookie sharing happens correctly across `WKWebView` instances. `CDVWKProcessPoolFactory` class can be used to obtain the shared `WKProcessPool` instance if app creates `WKWebView` outside of this plugin.
|
|
71
|
+
|
|
72
|
+
On an iOS 8 system, Apache Cordova during runtime will switch to using the UIWebView engine instead of using this plugin. If you want to use WKWebView on both iOS 8 and iOS 9 platforms, you will have to resort to using a local webserver.
|
|
73
|
+
|
|
74
|
+
We have an [experimental plugin](https://github.com/apache/cordova-plugins/tree/wkwebview-engine-localhost) that does this. You would use that plugin instead of this one.
|
|
75
|
+
|
|
76
|
+
Application Transport Security (ATS) in iOS 9
|
|
77
|
+
-----------
|
|
78
|
+
|
|
79
|
+
Starting with [cordova-cli 5.4.0](https://www.npmjs.com/package/cordova), it will support automatic conversion of the [<access>](http://cordova.apache.org/docs/en/edge/guide/appdev/whitelist/index.html) tags in config.xml to Application Transport Security [ATS](https://developer.apple.com/library/prerelease/ios/documentation/General/Reference/InfoPlistKeyReference/Articles/CocoaKeys.html#//apple_ref/doc/uid/TP40009251-SW33) directives.
|
|
80
|
+
|
|
81
|
+
Upgrade to at least version 5.4.0 of the cordova-cli to use this new functionality.
|
|
82
|
+
|
|
83
|
+
Enabling Navigation Gestures ("Swipe Navigation")
|
|
84
|
+
-----------
|
|
85
|
+
|
|
86
|
+
In order to allow swiping backwards and forwards in browser history like Safari does, you can set the following preference in your `config.xml`:
|
|
87
|
+
|
|
88
|
+
```xml
|
|
89
|
+
<preference name="AllowBackForwardNavigationGestures" value="true" />
|
|
90
|
+
```
|
|
91
|
+
|
|
92
|
+
You can also set this preference dynamically from JavaScript:
|
|
93
|
+
|
|
94
|
+
```js
|
|
95
|
+
window.WkWebView.allowsBackForwardNavigationGestures(true)
|
|
96
|
+
window.WkWebView.allowsBackForwardNavigationGestures(false)
|
|
97
|
+
```
|
|
98
|
+
|
|
99
|
+
Disabling 3D Touch Link Previews
|
|
100
|
+
-----------
|
|
101
|
+
|
|
102
|
+
In order to disable preview popups when hard pressing links in iOS, you can set the following preference in your `config.xml`:
|
|
103
|
+
|
|
104
|
+
```xml
|
|
105
|
+
<preference name="Allow3DTouchLinkPreview" value="false" />
|
|
106
|
+
```
|
|
107
|
+
|
|
108
|
+
Limitations
|
|
109
|
+
--------
|
|
110
|
+
|
|
111
|
+
If you are upgrading from UIWebView, please note the limitations of using WKWebView as outlined in our [issue tracker](https://issues.apache.org/jira/issues/?jql=project%20%3D%20CB%20AND%20labels%20%3D%20wkwebview-known-issues).
|
|
112
|
+
|
|
113
|
+
Apple Issues
|
|
114
|
+
-------
|
|
115
|
+
|
|
116
|
+
The `AllowInlineMediaPlayback` preference will not work because of this [Apple bug](http://openradar.appspot.com/radar?id=6673091526656000). This bug [has been fixed](https://issues.apache.org/jira/browse/CB-11452) in [iOS 10](https://twitter.com/shazron/status/745546355796389889).
|
|
117
|
+
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
Supported Platforms
|
|
121
|
+
-------------------
|
|
122
|
+
|
|
123
|
+
- iOS
|
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
<!--
|
|
2
|
+
#
|
|
3
|
+
# Licensed to the Apache Software Foundation (ASF) under one
|
|
4
|
+
# or more contributor license agreements. See the NOTICE file
|
|
5
|
+
# distributed with this work for additional information
|
|
6
|
+
# regarding copyright ownership. The ASF licenses this file
|
|
7
|
+
# to you under the Apache License, Version 2.0 (the
|
|
8
|
+
# "License"); you may not use this file except in compliance
|
|
9
|
+
# with the License. You may obtain a copy of the License at
|
|
10
|
+
#
|
|
11
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
12
|
+
#
|
|
13
|
+
# Unless required by applicable law or agreed to in writing,
|
|
14
|
+
# software distributed under the License is distributed on an
|
|
15
|
+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
16
|
+
# KIND, either express or implied. See the License for the
|
|
17
|
+
# specific language governing permissions and limitations
|
|
18
|
+
# under the License.
|
|
19
|
+
#
|
|
20
|
+
-->
|
|
21
|
+
|
|
22
|
+
# Release Notes
|
|
23
|
+
|
|
24
|
+
### 1.2.1 (Jul 20, 2019)
|
|
25
|
+
|
|
26
|
+
- fix: Revert "CB-13987: (ios) Fix WKWebView doesn't layout properly at… ([#107](https://github.com/apache/cordova-plugin-wkwebview-engine/issues/107)) ([`dc8b277`](https://github.com/apache/cordova-plugin-wkwebview-engine/commit/dc8b277))
|
|
27
|
+
- ci(travis): upgrade to node8 ([`d8c8b3f`](https://github.com/apache/cordova-plugin-wkwebview-engine/commit/d8c8b3f))
|
|
28
|
+
- ci(appveyor): replace node 6 with node 12 ([`557e275`](https://github.com/apache/cordova-plugin-wkwebview-engine/commit/557e275))
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
### 1.2.0 (Jun 27, 2019)
|
|
32
|
+
|
|
33
|
+
- build: add `.gitattributes` to force LF (instead of possible CRLF on Windows) ([`797f088`](https://github.com/apache/cordova-plugin-wkwebview-engine/commit/797f088))
|
|
34
|
+
- build: add `.npmignore` to remove unneeded files from npm package ([`2ddcf98`](https://github.com/apache/cordova-plugin-wkwebview-engine/commit/2ddcf98))
|
|
35
|
+
- chore: add CONTRBUTING.md and NOTICE files that were missing ([`a8390a2`](https://github.com/apache/cordova-plugin-wkwebview-engine/commit/a8390a2))
|
|
36
|
+
- chore: fix repo and issue urls and license in package.json and plugin.xml ([`9d7c120`](https://github.com/apache/cordova-plugin-wkwebview-engine/commit/9d7c120))
|
|
37
|
+
- ci(travis): Update Travis CI configuration for new paramedic ([#93](https://github.com/apache/cordova-plugin-wkwebview-engine/issues/93)) ([`3697ee1`](https://github.com/apache/cordova-plugin-wkwebview-engine/commit/3697ee1))
|
|
38
|
+
- chore: add `ecosystem:cordova` to package.json keywords ([`4b14897`](https://github.com/apache/cordova-plugin-wkwebview-engine/commit/4b14897))
|
|
39
|
+
- chore: drop Node.js v4 support ([#91](https://github.com/apache/cordova-plugin-wkwebview-engine/issues/91)) ([`1f1a888`](https://github.com/apache/cordova-plugin-wkwebview-engine/commit/1f1a888))
|
|
40
|
+
- chore: remove leftover .jshintrc ([#90](https://github.com/apache/cordova-plugin-wkwebview-engine/issues/90)) ([`54af786`](https://github.com/apache/cordova-plugin-wkwebview-engine/commit/54af786))
|
|
41
|
+
- fix(ios): Bug fix in recent change in iOSExec.nativeCallback ([#78](https://github.com/apache/cordova-plugin-wkwebview-engine/issues/78)) ([`6f468f4`](https://github.com/apache/cordova-plugin-wkwebview-engine/commit/6f468f4))
|
|
42
|
+
- chore(github): Add or update GitHub pull request and issue template ([`76bca66`](https://github.com/apache/cordova-plugin-wkwebview-engine/commit/76bca66))
|
|
43
|
+
- feat(ios): [GH-68](https://github.com/apache/cordova-plugin-wkwebview-engine/issues/68) (ios): Support for disabling 3D Touch link previews ([#69](https://github.com/apache/cordova-plugin-wkwebview-engine/issues/69)) ([`d0bd80a`](https://github.com/apache/cordova-plugin-wkwebview-engine/commit/d0bd80a))
|
|
44
|
+
- fix(ios): CB-12815: (ios) Fix bug nativeCallback not executed when app is in background ([#49](https://github.com/apache/cordova-plugin-wkwebview-engine/issues/49)) ([`bf0f236`](https://github.com/apache/cordova-plugin-wkwebview-engine/commit/bf0f236))
|
|
45
|
+
- chore: Add cordova-ios in plugin keyword for npm plugin searching ([#47](https://github.com/apache/cordova-plugin-wkwebview-engine/issues/47)) ([`4f8503d`](https://github.com/apache/cordova-plugin-wkwebview-engine/commit/4f8503d))
|
|
46
|
+
- fix(ios): CB-13987: (ios) Fix WKWebView doesn't layout properly at launch on iPhone X ([`7684545`](https://github.com/apache/cordova-plugin-wkwebview-engine/commit/7684545), [`81eeade`](https://github.com/apache/cordova-plugin-wkwebview-engine/commit/81eeade))
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
### 1.1.4 (Nov 06, 2017)
|
|
50
|
+
* added missing license header
|
|
51
|
+
* [CB-13519](https://issues.apache.org/jira/browse/CB-13519) (all): Add 'protective' entry to `cordovaDependencies`
|
|
52
|
+
* [CB-12895](https://issues.apache.org/jira/browse/CB-12895) added `eslint` and removed `jshint`
|
|
53
|
+
* [CB-12847](https://issues.apache.org/jira/browse/CB-12847) fixed `bugs` entry in `package.json`.
|
|
54
|
+
|
|
55
|
+
### 1.1.3 (Apr 27, 2017)
|
|
56
|
+
* [CB-12696](https://issues.apache.org/jira/browse/CB-12696) (iOS) Fixing some Xcode warnings
|
|
57
|
+
* [CB-12685](https://issues.apache.org/jira/browse/CB-12685) added `package.json` to tests folder
|
|
58
|
+
* [CB-12575](https://issues.apache.org/jira/browse/CB-12575) cordova-plugin-wkwebview-engine missing LICENSE file
|
|
59
|
+
* [CB-12519](https://issues.apache.org/jira/browse/CB-12519) added missing license header
|
|
60
|
+
|
|
61
|
+
### 1.1.2 (Feb 28, 2017)
|
|
62
|
+
* [CB-12497](https://issues.apache.org/jira/browse/CB-12497) `location.href` links are silently disallowed
|
|
63
|
+
* [CB-12490](https://issues.apache.org/jira/browse/CB-12490) - Updated experimental plugin link
|
|
64
|
+
* Allow to configure navigation by gestures
|
|
65
|
+
* [CB-12297](https://issues.apache.org/jira/browse/CB-12297) Support `WKProcessPool` for cookie sharing
|
|
66
|
+
* [CB-12414](https://issues.apache.org/jira/browse/CB-12414) **iOS:** Forward error from provisional load error to standard load error
|
|
67
|
+
|
|
68
|
+
### 1.1.1 (Dec 07, 2016)
|
|
69
|
+
* [CB-12224](https://issues.apache.org/jira/browse/CB-12224) Updated version and RELEASENOTES.md for release 1.1.1
|
|
70
|
+
* [CB-10228](https://issues.apache.org/jira/browse/CB-10228) - AppendUserAgent not working with WKWebView
|
|
71
|
+
* [CB-11997](https://issues.apache.org/jira/browse/CB-11997) - Add crash recovery for iOS 8
|
|
72
|
+
* [CB-11917](https://issues.apache.org/jira/browse/CB-11917) - Remove pull request template checklist item: "iCLA has been submitted…"
|
|
73
|
+
* [CB-11818](https://issues.apache.org/jira/browse/CB-11818) - Avoid retain cycle: WKUserContentController retains its message handler, to break it we cannot pass directly CDVWKWebViewEngine's instance
|
|
74
|
+
* [CB-11832](https://issues.apache.org/jira/browse/CB-11832) Incremented plugin version.
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
### 1.1.0 (Sep 08, 2016)
|
|
78
|
+
* [CB-11824](https://issues.apache.org/jira/browse/CB-11824) - Update tests to include objective-c tests
|
|
79
|
+
* [CB-11554](https://issues.apache.org/jira/browse/CB-11554) - fixed unit tests
|
|
80
|
+
* [CB-11815](https://issues.apache.org/jira/browse/CB-11815) (**iOS**) Fix hard-coded bridge name "cordova"
|
|
81
|
+
* [CB-11554](https://issues.apache.org/jira/browse/CB-11554) - too 'brutal' app reload when title is empty
|
|
82
|
+
* [CB-11074](https://issues.apache.org/jira/browse/CB-11074) - Ensure settings from `config.xml` are taken into consideration
|
|
83
|
+
* Add ability to set the deceleration rate for the scrollview to 'fast'
|
|
84
|
+
* [CB-11496](https://issues.apache.org/jira/browse/CB-11496) - Add obj-c unit tests for `WKWebViewConfiguration`, `WKPreference`
|
|
85
|
+
* [CB-11496](https://issues.apache.org/jira/browse/CB-11496) - Create Obj-C unit-tests for `wkwebview-engine` (fix linker error)
|
|
86
|
+
* [CB-11452](https://issues.apache.org/jira/browse/CB-11452) - Update README.md with latest news about `AllowInlineMediaPlayback` fix
|
|
87
|
+
* [CB-9888](https://issues.apache.org/jira/browse/CB-9888) (**iOS**) check & reload `WKWebView`
|
|
88
|
+
* [CB-11375](https://issues.apache.org/jira/browse/CB-11375) - `onReset` method of `CDVPlugin` is never called
|
|
89
|
+
* Add pull request template.
|
|
90
|
+
* [CB-10818](https://issues.apache.org/jira/browse/CB-10818) - Support the scroll deceleration speed preference.
|
|
91
|
+
* [CB-10817](https://issues.apache.org/jira/browse/CB-10817) - Will now reload the `webView` if a crash occurs
|
|
92
|
+
|
|
93
|
+
### 1.0.3 (Apr 15, 2016)
|
|
94
|
+
* [CB-10636](https://issues.apache.org/jira/browse/CB-10636) Add `JSHint` for plugins
|
|
95
|
+
|
|
96
|
+
### 1.0.2 (Feb 09, 2016)
|
|
97
|
+
* [CB-10269](https://issues.apache.org/jira/browse/CB-10269) - Replace cordova exec only when present in wkwebview
|
|
98
|
+
* [CB-10202](https://issues.apache.org/jira/browse/CB-10202) - Add README quirk about WKWebview does not work with the AllowInlineMediaPlayback preference
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
### 1.0.1 (Dec 11, 2015)
|
|
102
|
+
|
|
103
|
+
* [CB-10190](https://issues.apache.org/jira/browse/CB-10190) - WKWebView engine is not releasing the user-agent lock
|
|
104
|
+
|
|
105
|
+
### 1.0.0 (Dec 04, 2015)
|
|
106
|
+
|
|
107
|
+
* [CB-10146](https://issues.apache.org/jira/browse/CB-10146) - Add to README WKWebViewEngine quirks that will affect migration from UIWebView
|
|
108
|
+
* [CB-10133](https://issues.apache.org/jira/browse/CB-10133) - DataClone DOM Exception 25 thrown for postMessage
|
|
109
|
+
* [CB-10106](https://issues.apache.org/jira/browse/CB-10106) - added bridge proxy
|
|
110
|
+
* [CB-10107](https://issues.apache.org/jira/browse/CB-10107) - nativeEvalAndFetch called for all bridges
|
|
111
|
+
* [CB-10106](https://issues.apache.org/jira/browse/CB-10106) - iOS bridges need to take into account bridge changes
|
|
112
|
+
* [CB-10073](https://issues.apache.org/jira/browse/CB-10073) - WKWebViewEngine should post CDVPluginResetNotification
|
|
113
|
+
* [CB-10035](https://issues.apache.org/jira/browse/CB-10035) Updated RELEASENOTES to be newest to oldest
|
|
114
|
+
* [CB-10002](https://issues.apache.org/jira/browse/CB-10002) - WKWebView should propagate shouldOverrideLoadWithRequest to plugins
|
|
115
|
+
* [CB-9979](https://issues.apache.org/jira/browse/CB-9979) [CB-9972](https://issues.apache.org/jira/browse/CB-9972) Change ATS link to new link
|
|
116
|
+
* [CB-9636](https://issues.apache.org/jira/browse/CB-9636) - Plugin should detect at runtime iOS 8 and use of file:// url and present an error
|
|
117
|
+
* [CB-8839](https://issues.apache.org/jira/browse/CB-8839) - WKWebView ignores DisallowOverscroll preference
|
|
118
|
+
* [CB-8556](https://issues.apache.org/jira/browse/CB-8556) - fix handleOpenURL for WKWebViewEngine plugin
|
|
119
|
+
* [CB-8666](https://issues.apache.org/jira/browse/CB-8666) - Update CDVWKWebViewEngine plugin to use 4.0.x branch code
|
|
120
|
+
|
|
121
|
+
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_from": "cordova-plugin-wkwebview-engine",
|
|
3
|
+
"_id": "cordova-plugin-wkwebview-engine@1.2.1",
|
|
4
|
+
"_inBundle": false,
|
|
5
|
+
"_integrity": "sha512-usp6pu+tJ1y0btVAXOjE5+tMjbvTY6hsiLfHJPMdyzkgHvxoNSePZ/NavTGj4CBJJlUjnMsN3TUq25+SeTZCow==",
|
|
6
|
+
"_location": "/cordova-plugin-wkwebview-engine",
|
|
7
|
+
"_phantomChildren": {},
|
|
8
|
+
"_requested": {
|
|
9
|
+
"type": "tag",
|
|
10
|
+
"registry": true,
|
|
11
|
+
"raw": "cordova-plugin-wkwebview-engine",
|
|
12
|
+
"name": "cordova-plugin-wkwebview-engine",
|
|
13
|
+
"escapedName": "cordova-plugin-wkwebview-engine",
|
|
14
|
+
"rawSpec": "",
|
|
15
|
+
"saveSpec": null,
|
|
16
|
+
"fetchSpec": "latest"
|
|
17
|
+
},
|
|
18
|
+
"_requiredBy": [
|
|
19
|
+
"#USER",
|
|
20
|
+
"/"
|
|
21
|
+
],
|
|
22
|
+
"_resolved": "https://registry.npmjs.org/cordova-plugin-wkwebview-engine/-/cordova-plugin-wkwebview-engine-1.2.1.tgz",
|
|
23
|
+
"_shasum": "f8972282969355d2d2f3458b23f604210e45eaf3",
|
|
24
|
+
"_spec": "cordova-plugin-wkwebview-engine",
|
|
25
|
+
"_where": "/Users/sergress/Documents/Work/xcode/Projects/SumSubstance/cordova-mobilesdk-plugin/demo",
|
|
26
|
+
"author": {
|
|
27
|
+
"name": "Apache Software Foundation"
|
|
28
|
+
},
|
|
29
|
+
"bugs": {
|
|
30
|
+
"url": "https://github.com/apache/cordova-plugin-wkwebview-engine/issues"
|
|
31
|
+
},
|
|
32
|
+
"bundleDependencies": false,
|
|
33
|
+
"deprecated": false,
|
|
34
|
+
"description": "The official Apache Cordova WKWebView Engine Plugin",
|
|
35
|
+
"devDependencies": {
|
|
36
|
+
"eslint": "^3.19.0",
|
|
37
|
+
"eslint-config-semistandard": "^11.0.0",
|
|
38
|
+
"eslint-config-standard": "^10.2.1",
|
|
39
|
+
"eslint-plugin-import": "^2.3.0",
|
|
40
|
+
"eslint-plugin-node": "^5.0.0",
|
|
41
|
+
"eslint-plugin-promise": "^3.5.0",
|
|
42
|
+
"eslint-plugin-standard": "^3.0.1"
|
|
43
|
+
},
|
|
44
|
+
"engines": {
|
|
45
|
+
"cordovaDependencies": {
|
|
46
|
+
"2.0.0": {
|
|
47
|
+
"cordova": ">100"
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
},
|
|
51
|
+
"homepage": "https://github.com/apache/cordova-plugin-wkwebview-engine#readme",
|
|
52
|
+
"keywords": [
|
|
53
|
+
"cordova",
|
|
54
|
+
"wkwebview",
|
|
55
|
+
"cordova-ios",
|
|
56
|
+
"ecosystem:cordova"
|
|
57
|
+
],
|
|
58
|
+
"license": "Apache-2.0",
|
|
59
|
+
"main": "index.js",
|
|
60
|
+
"name": "cordova-plugin-wkwebview-engine",
|
|
61
|
+
"repository": {
|
|
62
|
+
"type": "git",
|
|
63
|
+
"url": "git+https://github.com/apache/cordova-plugin-wkwebview-engine.git"
|
|
64
|
+
},
|
|
65
|
+
"scripts": {
|
|
66
|
+
"eslint": "eslint src",
|
|
67
|
+
"objc-tests": "cd tests/ios && npm test",
|
|
68
|
+
"preobjc-tests": "cd tests/ios && npm install",
|
|
69
|
+
"test": "npm run eslint && npm run objc-tests"
|
|
70
|
+
},
|
|
71
|
+
"version": "1.2.1"
|
|
72
|
+
}
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
|
|
3
|
+
<!--
|
|
4
|
+
Licensed to the Apache Software Foundation (ASF) under one
|
|
5
|
+
or more contributor license agreements. See the NOTICE file
|
|
6
|
+
distributed with this work for additional information
|
|
7
|
+
regarding copyright ownership. The ASF licenses this file
|
|
8
|
+
to you under the Apache License, Version 2.0 (the
|
|
9
|
+
"License"); you may not use this file except in compliance
|
|
10
|
+
with the License. You may obtain a copy of the License at
|
|
11
|
+
|
|
12
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
13
|
+
|
|
14
|
+
Unless required by applicable law or agreed to in writing,
|
|
15
|
+
software distributed under the License is distributed on an
|
|
16
|
+
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
17
|
+
KIND, either express or implied. See the License for the
|
|
18
|
+
specific language governing permissions and limitations
|
|
19
|
+
under the License.
|
|
20
|
+
-->
|
|
21
|
+
|
|
22
|
+
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
|
|
23
|
+
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
24
|
+
id="cordova-plugin-wkwebview-engine"
|
|
25
|
+
version="1.2.1">
|
|
26
|
+
<name>Cordova WKWebView Engine</name>
|
|
27
|
+
<description>Cordova WKWebView Engine Plugin</description>
|
|
28
|
+
<license>Apache 2.0</license>
|
|
29
|
+
<keywords>cordova,wkwebview,webview</keywords>
|
|
30
|
+
<repo>https://github.com/apache/cordova-plugin-wkwebview-engine</repo>
|
|
31
|
+
|
|
32
|
+
<engines>
|
|
33
|
+
<engine name="cordova-ios" version=">=4.0.0-dev" />
|
|
34
|
+
<engine name="apple-ios" version=">=9.0" />
|
|
35
|
+
</engines>
|
|
36
|
+
|
|
37
|
+
<!-- ios -->
|
|
38
|
+
<platform name="ios">
|
|
39
|
+
<js-module src="src/www/ios/ios-wkwebview-exec.js" name="ios-wkwebview-exec">
|
|
40
|
+
<clobbers target="cordova.exec" />
|
|
41
|
+
</js-module>
|
|
42
|
+
|
|
43
|
+
<js-module src="src/www/ios/ios-wkwebview.js" name="ios-wkwebview">
|
|
44
|
+
<clobbers target="window.WkWebView" />
|
|
45
|
+
</js-module>
|
|
46
|
+
|
|
47
|
+
<config-file target="config.xml" parent="/*">
|
|
48
|
+
<feature name="CDVWKWebViewEngine">
|
|
49
|
+
<param name="ios-package" value="CDVWKWebViewEngine" />
|
|
50
|
+
</feature>
|
|
51
|
+
<preference name="CordovaWebViewEngine" value="CDVWKWebViewEngine" />
|
|
52
|
+
</config-file>
|
|
53
|
+
|
|
54
|
+
<framework src="WebKit.framework" weak="true" />
|
|
55
|
+
|
|
56
|
+
<header-file src="src/ios/CDVWKWebViewEngine.h" />
|
|
57
|
+
<source-file src="src/ios/CDVWKWebViewEngine.m" />
|
|
58
|
+
<header-file src="src/ios/CDVWKWebViewUIDelegate.h" />
|
|
59
|
+
<source-file src="src/ios/CDVWKWebViewUIDelegate.m" />
|
|
60
|
+
<header-file src="src/ios/CDVWKProcessPoolFactory.h" />
|
|
61
|
+
<source-file src="src/ios/CDVWKProcessPoolFactory.m" />
|
|
62
|
+
</platform>
|
|
63
|
+
</plugin>
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
/*
|
|
2
|
+
Licensed to the Apache Software Foundation (ASF) under one
|
|
3
|
+
or more contributor license agreements. See the NOTICE file
|
|
4
|
+
distributed with this work for additional information
|
|
5
|
+
regarding copyright ownership. The ASF licenses this file
|
|
6
|
+
to you under the Apache License, Version 2.0 (the
|
|
7
|
+
"License"); you may not use this file except in compliance
|
|
8
|
+
with the License. You may obtain a copy of the License at
|
|
9
|
+
|
|
10
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
+
|
|
12
|
+
Unless required by applicable law or agreed to in writing,
|
|
13
|
+
software distributed under the License is distributed on an
|
|
14
|
+
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
15
|
+
KIND, either express or implied. See the License for the
|
|
16
|
+
specific language governing permissions and limitations
|
|
17
|
+
under the License.
|
|
18
|
+
*/
|
|
19
|
+
|
|
20
|
+
#import <WebKit/WebKit.h>
|
|
21
|
+
|
|
22
|
+
@interface CDVWKProcessPoolFactory : NSObject
|
|
23
|
+
@property (nonatomic, retain) WKProcessPool* sharedPool;
|
|
24
|
+
|
|
25
|
+
+(instancetype) sharedFactory;
|
|
26
|
+
-(WKProcessPool*) sharedProcessPool;
|
|
27
|
+
@end
|