├── .asf.yaml ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE.md ├── ISSUE_TEMPLATE │ ├── BUG_REPORT.md │ ├── FEATURE_REQUEST.md │ └── SUPPORT_QUESTION.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── ci.yml │ ├── docs.yml │ └── release-audit.yml ├── .gitignore ├── .npmignore ├── .npmrc ├── .ratignore ├── CONTRIBUTING.md ├── Cordova.podspec ├── CordovaLib ├── .gitignore ├── Classes │ ├── Private │ │ ├── CDVCommandDelegateImpl.h │ │ ├── CDVCommandDelegateImpl.m │ │ ├── CDVDebug.h │ │ ├── CDVJSON_private.h │ │ ├── CDVJSON_private.m │ │ ├── CDVPlugin+Private.h │ │ ├── CDVViewController+Private.h │ │ └── Plugins │ │ │ ├── CDVGestureHandler │ │ │ ├── CDVGestureHandler.h │ │ │ └── CDVGestureHandler.m │ │ │ ├── CDVHandleOpenURL │ │ │ ├── CDVHandleOpenURL.h │ │ │ └── CDVHandleOpenURL.m │ │ │ ├── CDVIntentAndNavigationFilter │ │ │ ├── CDVAllowList.h │ │ │ ├── CDVAllowList.m │ │ │ ├── CDVIntentAndNavigationFilter.h │ │ │ └── CDVIntentAndNavigationFilter.m │ │ │ ├── CDVLaunchScreen │ │ │ ├── CDVLaunchScreen.h │ │ │ └── CDVLaunchScreen.m │ │ │ ├── CDVLogger │ │ │ ├── CDVLogger.h │ │ │ └── CDVLogger.m │ │ │ ├── CDVStatusBarInternal │ │ │ ├── CDVStatusBarInternal.h │ │ │ └── CDVStatusBarInternal.m │ │ │ └── CDVWebViewEngine │ │ │ ├── CDVURLSchemeHandler.h │ │ │ ├── CDVURLSchemeHandler.m │ │ │ ├── CDVWebViewEngine.h │ │ │ ├── CDVWebViewEngine.m │ │ │ ├── CDVWebViewUIDelegate.h │ │ │ └── CDVWebViewUIDelegate.m │ └── Public │ │ ├── CDVAppDelegate.m │ │ ├── CDVCommandQueue.m │ │ ├── CDVConfigParser.m │ │ ├── CDVInvokedUrlCommand.m │ │ ├── CDVPlugin+Resources.m │ │ ├── CDVPlugin.m │ │ ├── CDVPluginResult.m │ │ ├── CDVSceneDelegate.m │ │ ├── CDVSettingsDictionary.m │ │ ├── CDVTimer.m │ │ ├── CDVViewController.m │ │ ├── CDVWebViewProcessPoolFactory.m │ │ ├── NSDictionary+CordovaPreferences.m │ │ └── NSMutableArray+QueueAdditions.m ├── CordovaLib.docc │ ├── CordovaLib.md │ └── upgrading-8.md ├── CordovaLib.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── Cordova.xcscheme ├── Info.plist ├── PrivacyInfo.xcprivacy └── include │ └── Cordova │ ├── CDV.h │ ├── CDVAppDelegate.h │ ├── CDVAvailability.h │ ├── CDVAvailabilityDeprecated.h │ ├── CDVCommandDelegate.h │ ├── CDVCommandQueue.h │ ├── CDVConfigParser.h │ ├── CDVInvokedUrlCommand.h │ ├── CDVPlugin+Resources.h │ ├── CDVPlugin.h │ ├── CDVPluginNotifications.h │ ├── CDVPluginResult.h │ ├── CDVSceneDelegate.h │ ├── CDVScreenOrientationDelegate.h │ ├── CDVSettingsDictionary.h │ ├── CDVTimer.h │ ├── CDVViewController.h │ ├── CDVWebViewEngineProtocol.h │ ├── CDVWebViewProcessPoolFactory.h │ ├── Cordova.h │ ├── NSDictionary+CordovaPreferences.h │ └── NSMutableArray+QueueAdditions.h ├── LICENSE ├── NOTICE ├── Package.swift ├── README.md ├── RELEASENOTES.md ├── cordova-js-src ├── exec.js ├── platform.js └── plugin │ └── ios │ ├── console.js │ ├── launchscreen.js │ ├── logger.js │ ├── statusbar.js │ └── wkwebkit.js ├── eslint.config.js ├── guides ├── API changes in 4.0.md ├── Cordova Custom URL Scheme Handling.md └── Setting Delegates, Preferences and Script Message Handlers in the WebView.md ├── lib ├── Api.js ├── BridgingHeader.js ├── PlatformConfigParser.js ├── Podfile.js ├── PodsJson.js ├── SwiftPackage.js ├── build.js ├── check_reqs.js ├── clean.js ├── create.js ├── listDevices.js ├── listEmulatorBuildTargets.js ├── listEmulatorImages.js ├── plugman │ └── pluginHandlers.js ├── prepare.js ├── projectFile.js ├── run.js ├── simctlHelper.js └── versions.js ├── licence_checker.yml ├── package.json ├── templates ├── cordova │ ├── Api.js │ ├── apple_ios_version │ ├── apple_osx_version │ ├── apple_xcode_version │ ├── defaults.xml │ ├── lib │ │ ├── list-devices │ │ └── list-emulator-images │ ├── loggingHelper.js │ └── version └── project │ ├── App.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ ├── App.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── xcschemes │ │ └── App.xcscheme │ ├── App │ ├── App-Info.plist │ ├── AppDelegate.h │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ └── icon.png │ │ ├── BackgroundColor.colorset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── LaunchStoryboard.imageset │ │ │ └── Contents.json │ │ ├── SplashScreenBackgroundColor.colorset │ │ │ └── Contents.json │ │ └── StatusBarBackgroundColor.colorset │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── CDVLaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Bridging-Header.h │ ├── Entitlements-Debug.plist │ ├── Entitlements-Release.plist │ ├── MainViewController.h │ ├── Plugins │ │ └── README │ ├── PrivacyInfo.xcprivacy │ ├── Resources │ │ └── README │ ├── SceneDelegate.swift │ ├── ViewController.swift │ ├── config.xml │ └── gitignore │ ├── cordova │ ├── build-debug.xcconfig │ ├── build-extras.xcconfig │ ├── build-release.xcconfig │ └── build.xcconfig │ ├── packages │ └── cordova-ios-plugins │ │ ├── Package.swift │ │ └── Sources │ │ └── CordovaPlugins │ │ └── CordovaPlugins.swift │ ├── pods-debug.xcconfig │ ├── pods-release.xcconfig │ └── www │ ├── css │ └── index.css │ ├── img │ └── logo.png │ ├── index.html │ └── js │ └── index.js ├── tests ├── CordovaLibTests │ ├── .gitignore │ ├── CDVAllowListTests.m │ ├── CDVBase64Tests.m │ ├── CDVCommandDelegateTests.m │ ├── CDVFakeFileManager.h │ ├── CDVFakeFileManager.m │ ├── CDVInvokedUrlCommandTests.m │ ├── CDVLocalStorageTests.m │ ├── CDVPluginInitTests.m │ ├── CDVPluginResultJSONSerializationTests.m │ ├── CDVSettingsDictionarySwiftTests.swift │ ├── CDVSettingsDictionaryTests.m │ ├── CDVStartPageTests.m │ ├── CDVUserAgentTest.m │ ├── CDVViewControllerTest.m │ ├── CDVWebViewDelegateTests.m │ ├── CDVWebViewEngineTest.m │ ├── CDVWebViewTest.h │ ├── CDVWebViewTest.m │ ├── CordovaApp │ │ ├── AppDelegate.swift │ │ ├── Plugins │ │ │ └── SwiftInitPlugin.swift │ │ ├── SceneDelegate.swift │ │ ├── ViewController.swift │ │ ├── config.xml │ │ └── www │ │ │ └── index.html │ ├── CordovaTests-Info.plist │ ├── CordovaTests.xcodeproj │ │ └── project.pbxproj │ ├── CordovaTests.xctestplan │ ├── Default-568h@2x.png │ ├── config-custom.xml │ └── en.lproj │ │ └── InfoPlist.strings ├── cordova-ios.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ ├── cordova-ios.xccheckout │ │ └── xcschemes │ │ └── CordovaTestApp.xcscheme └── spec │ ├── Api.spec.js │ ├── BridgingHeader.spec.js │ ├── Plugman │ ├── common.spec.js │ └── pluginHandler.spec.js │ ├── Podfile.spec.js │ ├── PodsJson.spec.js │ ├── SwiftPackage.spec.js │ ├── build.spec.js │ ├── check_reqs.spec.js │ ├── create.spec.js │ ├── createAndBuild.spec.js │ ├── fixtures │ ├── dummyProj │ │ ├── config.xml │ │ ├── platforms │ │ │ └── .gitkeep │ │ └── www │ │ │ └── .gitkeep │ ├── icon-support │ │ ├── configs │ │ │ ├── multi.xml │ │ │ ├── none.xml │ │ │ ├── single-only.xml │ │ │ └── single-variants.xml │ │ ├── contents-json │ │ │ ├── multi.js │ │ │ ├── none.js │ │ │ ├── single-only.js │ │ │ └── single-variants.js │ │ └── res │ │ │ └── ios │ │ │ ├── AppIcon-1024x1024@1x.png │ │ │ ├── AppIcon-20x20@2x.png │ │ │ ├── AppIcon-20x20@3x.png │ │ │ ├── AppIcon-29x29@2x.png │ │ │ ├── AppIcon-29x29@3x.png │ │ │ ├── AppIcon-38x38@2x.png │ │ │ ├── AppIcon-38x38@3x.png │ │ │ ├── AppIcon-40x40@2x.png │ │ │ ├── AppIcon-40x40@3x.png │ │ │ ├── AppIcon-60x60@2x.png │ │ │ ├── AppIcon-60x60@3x.png │ │ │ ├── AppIcon-64x64@2x.png │ │ │ ├── AppIcon-64x64@3x.png │ │ │ ├── AppIcon-68x68@2x.png │ │ │ ├── AppIcon-76x76@2x.png │ │ │ ├── AppIcon-83.5x83.5@2x.png │ │ │ ├── appicon-dark.png │ │ │ ├── appicon-tint.png │ │ │ └── appicon.png │ ├── ios-config-xml │ │ ├── App.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ ├── App.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── xcschemes │ │ │ │ └── App.xcscheme │ │ ├── App │ │ │ ├── .gitignore │ │ │ ├── App-Info.plist │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.swift │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── icon.png │ │ │ │ ├── BackgroundColor.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── LaunchStoryboard.imageset │ │ │ │ │ └── Contents.json │ │ │ │ ├── SplashScreenBackgroundColor.colorset │ │ │ │ │ └── Contents.json │ │ │ │ └── StatusBarBackgroundColor.colorset │ │ │ │ │ └── Contents.json │ │ │ ├── Base.lproj │ │ │ │ ├── CDVLaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ ├── Bridging-Header.h │ │ │ ├── Entitlements-Debug.plist │ │ │ ├── Entitlements-Release.plist │ │ │ ├── MainViewController.h │ │ │ ├── Plugins │ │ │ │ └── README │ │ │ ├── PrivacyInfo.xcprivacy │ │ │ ├── Resources │ │ │ │ └── README │ │ │ ├── SceneDelegate.swift │ │ │ ├── ViewController.swift │ │ │ └── config.xml │ │ ├── CordovaPlugins │ │ │ ├── Package.swift │ │ │ └── Sources │ │ │ │ └── CordovaPlugins │ │ │ │ └── CordovaPlugins.swift │ │ ├── cordova │ │ │ └── defaults.xml │ │ ├── platform_www │ │ │ └── .gitkeep │ │ └── www │ │ │ └── .gitkeep │ ├── ios-packageswift-config-xml │ │ ├── App.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ ├── App.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── xcschemes │ │ │ │ └── App.xcscheme │ │ ├── App │ │ │ ├── .gitignore │ │ │ ├── App-Info.plist │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.swift │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── icon.png │ │ │ │ ├── BackgroundColor.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── LaunchStoryboard.imageset │ │ │ │ │ └── Contents.json │ │ │ │ ├── SplashScreenBackgroundColor.colorset │ │ │ │ │ └── Contents.json │ │ │ │ └── StatusBarBackgroundColor.colorset │ │ │ │ │ └── Contents.json │ │ │ ├── Base.lproj │ │ │ │ ├── CDVLaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ ├── Bridging-Header.h │ │ │ ├── Entitlements-Debug.plist │ │ │ ├── Entitlements-Release.plist │ │ │ ├── MainViewController.h │ │ │ ├── Plugins │ │ │ │ └── README │ │ │ ├── PrivacyInfo.xcprivacy │ │ │ ├── Resources │ │ │ │ └── README │ │ │ ├── SceneDelegate.swift │ │ │ ├── ViewController.swift │ │ │ └── config.xml │ │ ├── CordovaPlugins │ │ │ ├── Package.swift │ │ │ └── Sources │ │ │ │ └── CordovaPlugins │ │ │ │ └── CordovaPlugins.swift │ │ ├── cordova │ │ │ └── defaults.xml │ │ ├── packages │ │ │ ├── cordova-ios-plugins │ │ │ │ └── Package.swift │ │ │ └── cordova-ios │ │ │ │ └── Package.swift │ │ ├── platform_www │ │ │ └── .gitkeep │ │ └── www │ │ │ └── .gitkeep │ ├── launch-storyboard-support │ │ ├── configs │ │ │ ├── legacy-only.xml │ │ │ ├── modern-and-legacy.xml │ │ │ ├── modern-only.xml │ │ │ └── none.xml │ │ ├── contents-json │ │ │ ├── empty.js │ │ │ ├── single-2xanyany.js │ │ │ ├── typical-universal.js │ │ │ ├── varied-device-and-theme.js │ │ │ └── varied-device.js │ │ ├── contents-map │ │ │ ├── empty-map.js │ │ │ ├── single-2xanyany-map.js │ │ │ ├── typical-universal-map.js │ │ │ ├── varied-device-and-theme-map.js │ │ │ └── varied-device-map.js │ │ └── res │ │ │ └── screen │ │ │ └── ios │ │ │ ├── Default@2x~universal~anyany.png │ │ │ ├── Default@2x~universal~comany.png │ │ │ ├── Default@2x~universal~comcom.png │ │ │ ├── Default@3x~universal~anyany.png │ │ │ ├── Default@3x~universal~anycom.png │ │ │ └── Default@3x~universal~comany.png │ ├── org.test.plugins.dummyplugin │ │ ├── plugin.xml │ │ ├── src │ │ │ └── ios │ │ │ │ ├── Custom.framework │ │ │ │ ├── someFheader.h │ │ │ │ └── somebinlib │ │ │ │ ├── CustomEmbeddable.framework │ │ │ │ ├── someFheader.h │ │ │ │ └── somebinlib │ │ │ │ ├── DummyPlugin.bundle │ │ │ │ ├── DummyPluginCommand.h │ │ │ │ ├── DummyPluginCommand.m │ │ │ │ ├── SourceWithFramework.m │ │ │ │ ├── TargetDirTest.h │ │ │ │ ├── TargetDirTest.m │ │ │ │ └── libsqlite3.dylib │ │ └── www │ │ │ ├── dummyplugin.js │ │ │ └── dummyplugin │ │ │ └── image.jpg │ ├── org.test.plugins.embedlinkplugin │ │ ├── plugin.xml │ │ └── src │ │ │ └── ios │ │ │ └── CustomEmbeddable.framework │ │ │ ├── someFheader.h │ │ │ └── somebinlib │ ├── org.test.plugins.faultyplugin │ │ ├── plugin.xml │ │ └── src │ │ │ └── ios │ │ │ ├── FaultyPlugin.h │ │ │ └── FaultyPlugin.m │ ├── org.test.plugins.swiftpackagecocoapodplugin │ │ ├── Package.swift │ │ ├── package.json │ │ ├── plugin.xml │ │ └── src │ │ │ └── ios │ │ │ └── PackagePodPlugin.swift │ ├── org.test.plugins.swiftpackageplugin │ │ ├── Package.swift │ │ ├── plugin.xml │ │ └── src │ │ │ └── ios │ │ │ └── PackagePlugin.swift │ ├── org.test.plugins.weblessplugin │ │ ├── plugin.xml │ │ └── src │ │ │ └── ios │ │ │ ├── WeblessPlugin.bundle │ │ │ ├── arrow_left.png │ │ │ ├── arrow_left@2x.png │ │ │ ├── arrow_right.png │ │ │ ├── arrow_right@2x.png │ │ │ ├── but_refresh.png │ │ │ ├── but_refresh@2x.png │ │ │ ├── compass.png │ │ │ └── compass@2x.png │ │ │ ├── WeblessPluginCommand.h │ │ │ ├── WeblessPluginCommand.m │ │ │ ├── WeblessPluginViewController.h │ │ │ ├── WeblessPluginViewController.m │ │ │ └── WeblessPluginViewController.xib │ ├── prepare │ │ ├── allows-arbitrary-loads-for-media-false.xml │ │ ├── allows-arbitrary-loads-for-media-true.xml │ │ ├── allows-arbitrary-loads-in-media-false.xml │ │ ├── allows-arbitrary-loads-in-media-true.xml │ │ ├── allows-arbitrary-loads-in-web-content-true.xml │ │ ├── allows-local-networking-true.xml │ │ ├── no-privacy-manifest.xml │ │ ├── privacy-manifest.xml │ │ ├── set-origin-with-mixed-nsallows.xml │ │ ├── wildcard-navigation-with-mixed-nsallows.xml │ │ ├── wildcard-navigation.xml │ │ └── wildcard-with-mixed-nsallows.xml │ ├── resource-file-support │ │ ├── config.xml │ │ ├── image-1234.png │ │ ├── image-5678.png │ │ └── image-8888.png │ ├── sample-ioreg-output.txt │ ├── simctl-list-issue-262.json │ ├── simctl-list.json │ ├── test-Bridging-Header.h │ ├── test-Package.swift │ ├── test-config-2.xml │ ├── test-config-3.xml │ ├── test-config.xml │ └── testProj │ │ └── platforms │ │ └── ios │ │ └── .gitignore │ ├── list-devices.spec.js │ ├── list-emulator-images.spec.js │ ├── pluginAdd.spec.js │ ├── prepare.spec.js │ ├── preparePlatform.spec.js │ ├── projectFile.spec.js │ ├── run.spec.js │ ├── simctlHelper.spec.js │ ├── unit.json │ └── versions.spec.js └── types └── index.d.ts /.asf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/.asf.yaml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/BUG_REPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/.github/ISSUE_TEMPLATE/BUG_REPORT.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/SUPPORT_QUESTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/.github/ISSUE_TEMPLATE/SUPPORT_QUESTION.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/release-audit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/.github/workflows/release-audit.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/.npmignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/.npmrc -------------------------------------------------------------------------------- /.ratignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/.ratignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Cordova.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/Cordova.podspec -------------------------------------------------------------------------------- /CordovaLib/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/CordovaLib/.gitignore -------------------------------------------------------------------------------- /CordovaLib/Classes/Private/CDVCommandDelegateImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/CordovaLib/Classes/Private/CDVCommandDelegateImpl.h -------------------------------------------------------------------------------- /CordovaLib/Classes/Private/CDVCommandDelegateImpl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/CordovaLib/Classes/Private/CDVCommandDelegateImpl.m -------------------------------------------------------------------------------- /CordovaLib/Classes/Private/CDVDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/CordovaLib/Classes/Private/CDVDebug.h -------------------------------------------------------------------------------- /CordovaLib/Classes/Private/CDVJSON_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/CordovaLib/Classes/Private/CDVJSON_private.h -------------------------------------------------------------------------------- /CordovaLib/Classes/Private/CDVJSON_private.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/CordovaLib/Classes/Private/CDVJSON_private.m -------------------------------------------------------------------------------- /CordovaLib/Classes/Private/CDVPlugin+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/CordovaLib/Classes/Private/CDVPlugin+Private.h -------------------------------------------------------------------------------- /CordovaLib/Classes/Private/CDVViewController+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/CordovaLib/Classes/Private/CDVViewController+Private.h -------------------------------------------------------------------------------- /CordovaLib/Classes/Private/Plugins/CDVGestureHandler/CDVGestureHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/CordovaLib/Classes/Private/Plugins/CDVGestureHandler/CDVGestureHandler.h -------------------------------------------------------------------------------- /CordovaLib/Classes/Private/Plugins/CDVGestureHandler/CDVGestureHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/CordovaLib/Classes/Private/Plugins/CDVGestureHandler/CDVGestureHandler.m -------------------------------------------------------------------------------- /CordovaLib/Classes/Private/Plugins/CDVHandleOpenURL/CDVHandleOpenURL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/CordovaLib/Classes/Private/Plugins/CDVHandleOpenURL/CDVHandleOpenURL.h -------------------------------------------------------------------------------- /CordovaLib/Classes/Private/Plugins/CDVHandleOpenURL/CDVHandleOpenURL.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/CordovaLib/Classes/Private/Plugins/CDVHandleOpenURL/CDVHandleOpenURL.m -------------------------------------------------------------------------------- /CordovaLib/Classes/Private/Plugins/CDVIntentAndNavigationFilter/CDVAllowList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/CordovaLib/Classes/Private/Plugins/CDVIntentAndNavigationFilter/CDVAllowList.h -------------------------------------------------------------------------------- /CordovaLib/Classes/Private/Plugins/CDVIntentAndNavigationFilter/CDVAllowList.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/CordovaLib/Classes/Private/Plugins/CDVIntentAndNavigationFilter/CDVAllowList.m -------------------------------------------------------------------------------- /CordovaLib/Classes/Private/Plugins/CDVIntentAndNavigationFilter/CDVIntentAndNavigationFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/CordovaLib/Classes/Private/Plugins/CDVIntentAndNavigationFilter/CDVIntentAndNavigationFilter.h -------------------------------------------------------------------------------- /CordovaLib/Classes/Private/Plugins/CDVIntentAndNavigationFilter/CDVIntentAndNavigationFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/CordovaLib/Classes/Private/Plugins/CDVIntentAndNavigationFilter/CDVIntentAndNavigationFilter.m -------------------------------------------------------------------------------- /CordovaLib/Classes/Private/Plugins/CDVLaunchScreen/CDVLaunchScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/CordovaLib/Classes/Private/Plugins/CDVLaunchScreen/CDVLaunchScreen.h -------------------------------------------------------------------------------- /CordovaLib/Classes/Private/Plugins/CDVLaunchScreen/CDVLaunchScreen.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/CordovaLib/Classes/Private/Plugins/CDVLaunchScreen/CDVLaunchScreen.m -------------------------------------------------------------------------------- /CordovaLib/Classes/Private/Plugins/CDVLogger/CDVLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/CordovaLib/Classes/Private/Plugins/CDVLogger/CDVLogger.h -------------------------------------------------------------------------------- /CordovaLib/Classes/Private/Plugins/CDVLogger/CDVLogger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/CordovaLib/Classes/Private/Plugins/CDVLogger/CDVLogger.m -------------------------------------------------------------------------------- /CordovaLib/Classes/Private/Plugins/CDVStatusBarInternal/CDVStatusBarInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/CordovaLib/Classes/Private/Plugins/CDVStatusBarInternal/CDVStatusBarInternal.h -------------------------------------------------------------------------------- /CordovaLib/Classes/Private/Plugins/CDVStatusBarInternal/CDVStatusBarInternal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/CordovaLib/Classes/Private/Plugins/CDVStatusBarInternal/CDVStatusBarInternal.m -------------------------------------------------------------------------------- /CordovaLib/Classes/Private/Plugins/CDVWebViewEngine/CDVURLSchemeHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/CordovaLib/Classes/Private/Plugins/CDVWebViewEngine/CDVURLSchemeHandler.h -------------------------------------------------------------------------------- /CordovaLib/Classes/Private/Plugins/CDVWebViewEngine/CDVURLSchemeHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/CordovaLib/Classes/Private/Plugins/CDVWebViewEngine/CDVURLSchemeHandler.m -------------------------------------------------------------------------------- /CordovaLib/Classes/Private/Plugins/CDVWebViewEngine/CDVWebViewEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/CordovaLib/Classes/Private/Plugins/CDVWebViewEngine/CDVWebViewEngine.h -------------------------------------------------------------------------------- /CordovaLib/Classes/Private/Plugins/CDVWebViewEngine/CDVWebViewEngine.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/CordovaLib/Classes/Private/Plugins/CDVWebViewEngine/CDVWebViewEngine.m -------------------------------------------------------------------------------- /CordovaLib/Classes/Private/Plugins/CDVWebViewEngine/CDVWebViewUIDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/CordovaLib/Classes/Private/Plugins/CDVWebViewEngine/CDVWebViewUIDelegate.h -------------------------------------------------------------------------------- /CordovaLib/Classes/Private/Plugins/CDVWebViewEngine/CDVWebViewUIDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/CordovaLib/Classes/Private/Plugins/CDVWebViewEngine/CDVWebViewUIDelegate.m -------------------------------------------------------------------------------- /CordovaLib/Classes/Public/CDVAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/CordovaLib/Classes/Public/CDVAppDelegate.m -------------------------------------------------------------------------------- /CordovaLib/Classes/Public/CDVCommandQueue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/CordovaLib/Classes/Public/CDVCommandQueue.m -------------------------------------------------------------------------------- /CordovaLib/Classes/Public/CDVConfigParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/CordovaLib/Classes/Public/CDVConfigParser.m -------------------------------------------------------------------------------- /CordovaLib/Classes/Public/CDVInvokedUrlCommand.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/CordovaLib/Classes/Public/CDVInvokedUrlCommand.m -------------------------------------------------------------------------------- /CordovaLib/Classes/Public/CDVPlugin+Resources.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/CordovaLib/Classes/Public/CDVPlugin+Resources.m -------------------------------------------------------------------------------- /CordovaLib/Classes/Public/CDVPlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/CordovaLib/Classes/Public/CDVPlugin.m -------------------------------------------------------------------------------- /CordovaLib/Classes/Public/CDVPluginResult.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/CordovaLib/Classes/Public/CDVPluginResult.m -------------------------------------------------------------------------------- /CordovaLib/Classes/Public/CDVSceneDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/CordovaLib/Classes/Public/CDVSceneDelegate.m -------------------------------------------------------------------------------- /CordovaLib/Classes/Public/CDVSettingsDictionary.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/CordovaLib/Classes/Public/CDVSettingsDictionary.m -------------------------------------------------------------------------------- /CordovaLib/Classes/Public/CDVTimer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/CordovaLib/Classes/Public/CDVTimer.m -------------------------------------------------------------------------------- /CordovaLib/Classes/Public/CDVViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/CordovaLib/Classes/Public/CDVViewController.m -------------------------------------------------------------------------------- /CordovaLib/Classes/Public/CDVWebViewProcessPoolFactory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/CordovaLib/Classes/Public/CDVWebViewProcessPoolFactory.m -------------------------------------------------------------------------------- /CordovaLib/Classes/Public/NSDictionary+CordovaPreferences.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/CordovaLib/Classes/Public/NSDictionary+CordovaPreferences.m -------------------------------------------------------------------------------- /CordovaLib/Classes/Public/NSMutableArray+QueueAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/CordovaLib/Classes/Public/NSMutableArray+QueueAdditions.m -------------------------------------------------------------------------------- /CordovaLib/CordovaLib.docc/CordovaLib.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/CordovaLib/CordovaLib.docc/CordovaLib.md -------------------------------------------------------------------------------- /CordovaLib/CordovaLib.docc/upgrading-8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/CordovaLib/CordovaLib.docc/upgrading-8.md -------------------------------------------------------------------------------- /CordovaLib/CordovaLib.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/CordovaLib/CordovaLib.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CordovaLib/CordovaLib.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/CordovaLib/CordovaLib.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CordovaLib/CordovaLib.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/CordovaLib/CordovaLib.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /CordovaLib/CordovaLib.xcodeproj/xcshareddata/xcschemes/Cordova.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/CordovaLib/CordovaLib.xcodeproj/xcshareddata/xcschemes/Cordova.xcscheme -------------------------------------------------------------------------------- /CordovaLib/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/CordovaLib/Info.plist -------------------------------------------------------------------------------- /CordovaLib/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/CordovaLib/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /CordovaLib/include/Cordova/CDV.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/CordovaLib/include/Cordova/CDV.h -------------------------------------------------------------------------------- /CordovaLib/include/Cordova/CDVAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/CordovaLib/include/Cordova/CDVAppDelegate.h -------------------------------------------------------------------------------- /CordovaLib/include/Cordova/CDVAvailability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/CordovaLib/include/Cordova/CDVAvailability.h -------------------------------------------------------------------------------- /CordovaLib/include/Cordova/CDVAvailabilityDeprecated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/CordovaLib/include/Cordova/CDVAvailabilityDeprecated.h -------------------------------------------------------------------------------- /CordovaLib/include/Cordova/CDVCommandDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/CordovaLib/include/Cordova/CDVCommandDelegate.h -------------------------------------------------------------------------------- /CordovaLib/include/Cordova/CDVCommandQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/CordovaLib/include/Cordova/CDVCommandQueue.h -------------------------------------------------------------------------------- /CordovaLib/include/Cordova/CDVConfigParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/CordovaLib/include/Cordova/CDVConfigParser.h -------------------------------------------------------------------------------- /CordovaLib/include/Cordova/CDVInvokedUrlCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/CordovaLib/include/Cordova/CDVInvokedUrlCommand.h -------------------------------------------------------------------------------- /CordovaLib/include/Cordova/CDVPlugin+Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/CordovaLib/include/Cordova/CDVPlugin+Resources.h -------------------------------------------------------------------------------- /CordovaLib/include/Cordova/CDVPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/CordovaLib/include/Cordova/CDVPlugin.h -------------------------------------------------------------------------------- /CordovaLib/include/Cordova/CDVPluginNotifications.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/CordovaLib/include/Cordova/CDVPluginNotifications.h -------------------------------------------------------------------------------- /CordovaLib/include/Cordova/CDVPluginResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/CordovaLib/include/Cordova/CDVPluginResult.h -------------------------------------------------------------------------------- /CordovaLib/include/Cordova/CDVSceneDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/CordovaLib/include/Cordova/CDVSceneDelegate.h -------------------------------------------------------------------------------- /CordovaLib/include/Cordova/CDVScreenOrientationDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/CordovaLib/include/Cordova/CDVScreenOrientationDelegate.h -------------------------------------------------------------------------------- /CordovaLib/include/Cordova/CDVSettingsDictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/CordovaLib/include/Cordova/CDVSettingsDictionary.h -------------------------------------------------------------------------------- /CordovaLib/include/Cordova/CDVTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/CordovaLib/include/Cordova/CDVTimer.h -------------------------------------------------------------------------------- /CordovaLib/include/Cordova/CDVViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/CordovaLib/include/Cordova/CDVViewController.h -------------------------------------------------------------------------------- /CordovaLib/include/Cordova/CDVWebViewEngineProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/CordovaLib/include/Cordova/CDVWebViewEngineProtocol.h -------------------------------------------------------------------------------- /CordovaLib/include/Cordova/CDVWebViewProcessPoolFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/CordovaLib/include/Cordova/CDVWebViewProcessPoolFactory.h -------------------------------------------------------------------------------- /CordovaLib/include/Cordova/Cordova.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/CordovaLib/include/Cordova/Cordova.h -------------------------------------------------------------------------------- /CordovaLib/include/Cordova/NSDictionary+CordovaPreferences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/CordovaLib/include/Cordova/NSDictionary+CordovaPreferences.h -------------------------------------------------------------------------------- /CordovaLib/include/Cordova/NSMutableArray+QueueAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/CordovaLib/include/Cordova/NSMutableArray+QueueAdditions.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/NOTICE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/README.md -------------------------------------------------------------------------------- /RELEASENOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/RELEASENOTES.md -------------------------------------------------------------------------------- /cordova-js-src/exec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/cordova-js-src/exec.js -------------------------------------------------------------------------------- /cordova-js-src/platform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/cordova-js-src/platform.js -------------------------------------------------------------------------------- /cordova-js-src/plugin/ios/console.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/cordova-js-src/plugin/ios/console.js -------------------------------------------------------------------------------- /cordova-js-src/plugin/ios/launchscreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/cordova-js-src/plugin/ios/launchscreen.js -------------------------------------------------------------------------------- /cordova-js-src/plugin/ios/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/cordova-js-src/plugin/ios/logger.js -------------------------------------------------------------------------------- /cordova-js-src/plugin/ios/statusbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/cordova-js-src/plugin/ios/statusbar.js -------------------------------------------------------------------------------- /cordova-js-src/plugin/ios/wkwebkit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/cordova-js-src/plugin/ios/wkwebkit.js -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/eslint.config.js -------------------------------------------------------------------------------- /guides/API changes in 4.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/guides/API changes in 4.0.md -------------------------------------------------------------------------------- /guides/Cordova Custom URL Scheme Handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/guides/Cordova Custom URL Scheme Handling.md -------------------------------------------------------------------------------- /guides/Setting Delegates, Preferences and Script Message Handlers in the WebView.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/guides/Setting Delegates, Preferences and Script Message Handlers in the WebView.md -------------------------------------------------------------------------------- /lib/Api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/lib/Api.js -------------------------------------------------------------------------------- /lib/BridgingHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/lib/BridgingHeader.js -------------------------------------------------------------------------------- /lib/PlatformConfigParser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/lib/PlatformConfigParser.js -------------------------------------------------------------------------------- /lib/Podfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/lib/Podfile.js -------------------------------------------------------------------------------- /lib/PodsJson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/lib/PodsJson.js -------------------------------------------------------------------------------- /lib/SwiftPackage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/lib/SwiftPackage.js -------------------------------------------------------------------------------- /lib/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/lib/build.js -------------------------------------------------------------------------------- /lib/check_reqs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/lib/check_reqs.js -------------------------------------------------------------------------------- /lib/clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/lib/clean.js -------------------------------------------------------------------------------- /lib/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/lib/create.js -------------------------------------------------------------------------------- /lib/listDevices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/lib/listDevices.js -------------------------------------------------------------------------------- /lib/listEmulatorBuildTargets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/lib/listEmulatorBuildTargets.js -------------------------------------------------------------------------------- /lib/listEmulatorImages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/lib/listEmulatorImages.js -------------------------------------------------------------------------------- /lib/plugman/pluginHandlers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/lib/plugman/pluginHandlers.js -------------------------------------------------------------------------------- /lib/prepare.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/lib/prepare.js -------------------------------------------------------------------------------- /lib/projectFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/lib/projectFile.js -------------------------------------------------------------------------------- /lib/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/lib/run.js -------------------------------------------------------------------------------- /lib/simctlHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/lib/simctlHelper.js -------------------------------------------------------------------------------- /lib/versions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/lib/versions.js -------------------------------------------------------------------------------- /licence_checker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/licence_checker.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/package.json -------------------------------------------------------------------------------- /templates/cordova/Api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/templates/cordova/Api.js -------------------------------------------------------------------------------- /templates/cordova/apple_ios_version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/templates/cordova/apple_ios_version -------------------------------------------------------------------------------- /templates/cordova/apple_osx_version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/templates/cordova/apple_osx_version -------------------------------------------------------------------------------- /templates/cordova/apple_xcode_version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/templates/cordova/apple_xcode_version -------------------------------------------------------------------------------- /templates/cordova/defaults.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/templates/cordova/defaults.xml -------------------------------------------------------------------------------- /templates/cordova/lib/list-devices: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/templates/cordova/lib/list-devices -------------------------------------------------------------------------------- /templates/cordova/lib/list-emulator-images: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/templates/cordova/lib/list-emulator-images -------------------------------------------------------------------------------- /templates/cordova/loggingHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/templates/cordova/loggingHelper.js -------------------------------------------------------------------------------- /templates/cordova/version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/templates/cordova/version -------------------------------------------------------------------------------- /templates/project/App.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/templates/project/App.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /templates/project/App.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/templates/project/App.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /templates/project/App.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/templates/project/App.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /templates/project/App.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/templates/project/App.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /templates/project/App.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/templates/project/App.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /templates/project/App.xcworkspace/xcshareddata/xcschemes/App.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/templates/project/App.xcworkspace/xcshareddata/xcschemes/App.xcscheme -------------------------------------------------------------------------------- /templates/project/App/App-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/templates/project/App/App-Info.plist -------------------------------------------------------------------------------- /templates/project/App/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/templates/project/App/AppDelegate.h -------------------------------------------------------------------------------- /templates/project/App/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/templates/project/App/AppDelegate.swift -------------------------------------------------------------------------------- /templates/project/App/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/templates/project/App/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /templates/project/App/Assets.xcassets/AppIcon.appiconset/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/templates/project/App/Assets.xcassets/AppIcon.appiconset/icon.png -------------------------------------------------------------------------------- /templates/project/App/Assets.xcassets/BackgroundColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/templates/project/App/Assets.xcassets/BackgroundColor.colorset/Contents.json -------------------------------------------------------------------------------- /templates/project/App/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/templates/project/App/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /templates/project/App/Assets.xcassets/LaunchStoryboard.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/templates/project/App/Assets.xcassets/LaunchStoryboard.imageset/Contents.json -------------------------------------------------------------------------------- /templates/project/App/Assets.xcassets/SplashScreenBackgroundColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/templates/project/App/Assets.xcassets/SplashScreenBackgroundColor.colorset/Contents.json -------------------------------------------------------------------------------- /templates/project/App/Assets.xcassets/StatusBarBackgroundColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/templates/project/App/Assets.xcassets/StatusBarBackgroundColor.colorset/Contents.json -------------------------------------------------------------------------------- /templates/project/App/Base.lproj/CDVLaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/templates/project/App/Base.lproj/CDVLaunchScreen.storyboard -------------------------------------------------------------------------------- /templates/project/App/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/templates/project/App/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /templates/project/App/Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/templates/project/App/Bridging-Header.h -------------------------------------------------------------------------------- /templates/project/App/Entitlements-Debug.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/templates/project/App/Entitlements-Debug.plist -------------------------------------------------------------------------------- /templates/project/App/Entitlements-Release.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/templates/project/App/Entitlements-Release.plist -------------------------------------------------------------------------------- /templates/project/App/MainViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/templates/project/App/MainViewController.h -------------------------------------------------------------------------------- /templates/project/App/Plugins/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/templates/project/App/Plugins/README -------------------------------------------------------------------------------- /templates/project/App/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/templates/project/App/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /templates/project/App/Resources/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/templates/project/App/Resources/README -------------------------------------------------------------------------------- /templates/project/App/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/templates/project/App/SceneDelegate.swift -------------------------------------------------------------------------------- /templates/project/App/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/templates/project/App/ViewController.swift -------------------------------------------------------------------------------- /templates/project/App/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/templates/project/App/config.xml -------------------------------------------------------------------------------- /templates/project/App/gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/templates/project/App/gitignore -------------------------------------------------------------------------------- /templates/project/cordova/build-debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/templates/project/cordova/build-debug.xcconfig -------------------------------------------------------------------------------- /templates/project/cordova/build-extras.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/templates/project/cordova/build-extras.xcconfig -------------------------------------------------------------------------------- /templates/project/cordova/build-release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/templates/project/cordova/build-release.xcconfig -------------------------------------------------------------------------------- /templates/project/cordova/build.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/templates/project/cordova/build.xcconfig -------------------------------------------------------------------------------- /templates/project/packages/cordova-ios-plugins/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/templates/project/packages/cordova-ios-plugins/Package.swift -------------------------------------------------------------------------------- /templates/project/packages/cordova-ios-plugins/Sources/CordovaPlugins/CordovaPlugins.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/templates/project/packages/cordova-ios-plugins/Sources/CordovaPlugins/CordovaPlugins.swift -------------------------------------------------------------------------------- /templates/project/pods-debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/templates/project/pods-debug.xcconfig -------------------------------------------------------------------------------- /templates/project/pods-release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/templates/project/pods-release.xcconfig -------------------------------------------------------------------------------- /templates/project/www/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/templates/project/www/css/index.css -------------------------------------------------------------------------------- /templates/project/www/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/templates/project/www/img/logo.png -------------------------------------------------------------------------------- /templates/project/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/templates/project/www/index.html -------------------------------------------------------------------------------- /templates/project/www/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/templates/project/www/js/index.js -------------------------------------------------------------------------------- /tests/CordovaLibTests/.gitignore: -------------------------------------------------------------------------------- 1 | build -------------------------------------------------------------------------------- /tests/CordovaLibTests/CDVAllowListTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/CordovaLibTests/CDVAllowListTests.m -------------------------------------------------------------------------------- /tests/CordovaLibTests/CDVBase64Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/CordovaLibTests/CDVBase64Tests.m -------------------------------------------------------------------------------- /tests/CordovaLibTests/CDVCommandDelegateTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/CordovaLibTests/CDVCommandDelegateTests.m -------------------------------------------------------------------------------- /tests/CordovaLibTests/CDVFakeFileManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/CordovaLibTests/CDVFakeFileManager.h -------------------------------------------------------------------------------- /tests/CordovaLibTests/CDVFakeFileManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/CordovaLibTests/CDVFakeFileManager.m -------------------------------------------------------------------------------- /tests/CordovaLibTests/CDVInvokedUrlCommandTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/CordovaLibTests/CDVInvokedUrlCommandTests.m -------------------------------------------------------------------------------- /tests/CordovaLibTests/CDVLocalStorageTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/CordovaLibTests/CDVLocalStorageTests.m -------------------------------------------------------------------------------- /tests/CordovaLibTests/CDVPluginInitTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/CordovaLibTests/CDVPluginInitTests.m -------------------------------------------------------------------------------- /tests/CordovaLibTests/CDVPluginResultJSONSerializationTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/CordovaLibTests/CDVPluginResultJSONSerializationTests.m -------------------------------------------------------------------------------- /tests/CordovaLibTests/CDVSettingsDictionarySwiftTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/CordovaLibTests/CDVSettingsDictionarySwiftTests.swift -------------------------------------------------------------------------------- /tests/CordovaLibTests/CDVSettingsDictionaryTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/CordovaLibTests/CDVSettingsDictionaryTests.m -------------------------------------------------------------------------------- /tests/CordovaLibTests/CDVStartPageTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/CordovaLibTests/CDVStartPageTests.m -------------------------------------------------------------------------------- /tests/CordovaLibTests/CDVUserAgentTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/CordovaLibTests/CDVUserAgentTest.m -------------------------------------------------------------------------------- /tests/CordovaLibTests/CDVViewControllerTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/CordovaLibTests/CDVViewControllerTest.m -------------------------------------------------------------------------------- /tests/CordovaLibTests/CDVWebViewDelegateTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/CordovaLibTests/CDVWebViewDelegateTests.m -------------------------------------------------------------------------------- /tests/CordovaLibTests/CDVWebViewEngineTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/CordovaLibTests/CDVWebViewEngineTest.m -------------------------------------------------------------------------------- /tests/CordovaLibTests/CDVWebViewTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/CordovaLibTests/CDVWebViewTest.h -------------------------------------------------------------------------------- /tests/CordovaLibTests/CDVWebViewTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/CordovaLibTests/CDVWebViewTest.m -------------------------------------------------------------------------------- /tests/CordovaLibTests/CordovaApp/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/CordovaLibTests/CordovaApp/AppDelegate.swift -------------------------------------------------------------------------------- /tests/CordovaLibTests/CordovaApp/Plugins/SwiftInitPlugin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/CordovaLibTests/CordovaApp/Plugins/SwiftInitPlugin.swift -------------------------------------------------------------------------------- /tests/CordovaLibTests/CordovaApp/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/CordovaLibTests/CordovaApp/SceneDelegate.swift -------------------------------------------------------------------------------- /tests/CordovaLibTests/CordovaApp/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/CordovaLibTests/CordovaApp/ViewController.swift -------------------------------------------------------------------------------- /tests/CordovaLibTests/CordovaApp/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/CordovaLibTests/CordovaApp/config.xml -------------------------------------------------------------------------------- /tests/CordovaLibTests/CordovaApp/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/CordovaLibTests/CordovaApp/www/index.html -------------------------------------------------------------------------------- /tests/CordovaLibTests/CordovaTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/CordovaLibTests/CordovaTests-Info.plist -------------------------------------------------------------------------------- /tests/CordovaLibTests/CordovaTests.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/CordovaLibTests/CordovaTests.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /tests/CordovaLibTests/CordovaTests.xctestplan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/CordovaLibTests/CordovaTests.xctestplan -------------------------------------------------------------------------------- /tests/CordovaLibTests/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/CordovaLibTests/Default-568h@2x.png -------------------------------------------------------------------------------- /tests/CordovaLibTests/config-custom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/CordovaLibTests/config-custom.xml -------------------------------------------------------------------------------- /tests/CordovaLibTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/CordovaLibTests/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /tests/cordova-ios.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/cordova-ios.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /tests/cordova-ios.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/cordova-ios.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /tests/cordova-ios.xcworkspace/xcshareddata/cordova-ios.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/cordova-ios.xcworkspace/xcshareddata/cordova-ios.xccheckout -------------------------------------------------------------------------------- /tests/cordova-ios.xcworkspace/xcshareddata/xcschemes/CordovaTestApp.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/cordova-ios.xcworkspace/xcshareddata/xcschemes/CordovaTestApp.xcscheme -------------------------------------------------------------------------------- /tests/spec/Api.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/Api.spec.js -------------------------------------------------------------------------------- /tests/spec/BridgingHeader.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/BridgingHeader.spec.js -------------------------------------------------------------------------------- /tests/spec/Plugman/common.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/Plugman/common.spec.js -------------------------------------------------------------------------------- /tests/spec/Plugman/pluginHandler.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/Plugman/pluginHandler.spec.js -------------------------------------------------------------------------------- /tests/spec/Podfile.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/Podfile.spec.js -------------------------------------------------------------------------------- /tests/spec/PodsJson.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/PodsJson.spec.js -------------------------------------------------------------------------------- /tests/spec/SwiftPackage.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/SwiftPackage.spec.js -------------------------------------------------------------------------------- /tests/spec/build.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/build.spec.js -------------------------------------------------------------------------------- /tests/spec/check_reqs.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/check_reqs.spec.js -------------------------------------------------------------------------------- /tests/spec/create.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/create.spec.js -------------------------------------------------------------------------------- /tests/spec/createAndBuild.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/createAndBuild.spec.js -------------------------------------------------------------------------------- /tests/spec/fixtures/dummyProj/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/dummyProj/config.xml -------------------------------------------------------------------------------- /tests/spec/fixtures/dummyProj/platforms/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/spec/fixtures/dummyProj/www/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/spec/fixtures/icon-support/configs/multi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/icon-support/configs/multi.xml -------------------------------------------------------------------------------- /tests/spec/fixtures/icon-support/configs/none.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/icon-support/configs/none.xml -------------------------------------------------------------------------------- /tests/spec/fixtures/icon-support/configs/single-only.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/icon-support/configs/single-only.xml -------------------------------------------------------------------------------- /tests/spec/fixtures/icon-support/configs/single-variants.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/icon-support/configs/single-variants.xml -------------------------------------------------------------------------------- /tests/spec/fixtures/icon-support/contents-json/multi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/icon-support/contents-json/multi.js -------------------------------------------------------------------------------- /tests/spec/fixtures/icon-support/contents-json/none.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/icon-support/contents-json/none.js -------------------------------------------------------------------------------- /tests/spec/fixtures/icon-support/contents-json/single-only.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/icon-support/contents-json/single-only.js -------------------------------------------------------------------------------- /tests/spec/fixtures/icon-support/contents-json/single-variants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/icon-support/contents-json/single-variants.js -------------------------------------------------------------------------------- /tests/spec/fixtures/icon-support/res/ios/AppIcon-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/icon-support/res/ios/AppIcon-1024x1024@1x.png -------------------------------------------------------------------------------- /tests/spec/fixtures/icon-support/res/ios/AppIcon-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/icon-support/res/ios/AppIcon-20x20@2x.png -------------------------------------------------------------------------------- /tests/spec/fixtures/icon-support/res/ios/AppIcon-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/icon-support/res/ios/AppIcon-20x20@3x.png -------------------------------------------------------------------------------- /tests/spec/fixtures/icon-support/res/ios/AppIcon-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/icon-support/res/ios/AppIcon-29x29@2x.png -------------------------------------------------------------------------------- /tests/spec/fixtures/icon-support/res/ios/AppIcon-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/icon-support/res/ios/AppIcon-29x29@3x.png -------------------------------------------------------------------------------- /tests/spec/fixtures/icon-support/res/ios/AppIcon-38x38@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/icon-support/res/ios/AppIcon-38x38@2x.png -------------------------------------------------------------------------------- /tests/spec/fixtures/icon-support/res/ios/AppIcon-38x38@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/icon-support/res/ios/AppIcon-38x38@3x.png -------------------------------------------------------------------------------- /tests/spec/fixtures/icon-support/res/ios/AppIcon-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/icon-support/res/ios/AppIcon-40x40@2x.png -------------------------------------------------------------------------------- /tests/spec/fixtures/icon-support/res/ios/AppIcon-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/icon-support/res/ios/AppIcon-40x40@3x.png -------------------------------------------------------------------------------- /tests/spec/fixtures/icon-support/res/ios/AppIcon-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/icon-support/res/ios/AppIcon-60x60@2x.png -------------------------------------------------------------------------------- /tests/spec/fixtures/icon-support/res/ios/AppIcon-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/icon-support/res/ios/AppIcon-60x60@3x.png -------------------------------------------------------------------------------- /tests/spec/fixtures/icon-support/res/ios/AppIcon-64x64@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/icon-support/res/ios/AppIcon-64x64@2x.png -------------------------------------------------------------------------------- /tests/spec/fixtures/icon-support/res/ios/AppIcon-64x64@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/icon-support/res/ios/AppIcon-64x64@3x.png -------------------------------------------------------------------------------- /tests/spec/fixtures/icon-support/res/ios/AppIcon-68x68@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/icon-support/res/ios/AppIcon-68x68@2x.png -------------------------------------------------------------------------------- /tests/spec/fixtures/icon-support/res/ios/AppIcon-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/icon-support/res/ios/AppIcon-76x76@2x.png -------------------------------------------------------------------------------- /tests/spec/fixtures/icon-support/res/ios/AppIcon-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/icon-support/res/ios/AppIcon-83.5x83.5@2x.png -------------------------------------------------------------------------------- /tests/spec/fixtures/icon-support/res/ios/appicon-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/icon-support/res/ios/appicon-dark.png -------------------------------------------------------------------------------- /tests/spec/fixtures/icon-support/res/ios/appicon-tint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/icon-support/res/ios/appicon-tint.png -------------------------------------------------------------------------------- /tests/spec/fixtures/icon-support/res/ios/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/icon-support/res/ios/appicon.png -------------------------------------------------------------------------------- /tests/spec/fixtures/ios-config-xml/App.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/ios-config-xml/App.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /tests/spec/fixtures/ios-config-xml/App.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/ios-config-xml/App.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /tests/spec/fixtures/ios-config-xml/App.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/ios-config-xml/App.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /tests/spec/fixtures/ios-config-xml/App.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/ios-config-xml/App.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /tests/spec/fixtures/ios-config-xml/App.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/ios-config-xml/App.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /tests/spec/fixtures/ios-config-xml/App.xcworkspace/xcshareddata/xcschemes/App.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/ios-config-xml/App.xcworkspace/xcshareddata/xcschemes/App.xcscheme -------------------------------------------------------------------------------- /tests/spec/fixtures/ios-config-xml/App/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/ios-config-xml/App/.gitignore -------------------------------------------------------------------------------- /tests/spec/fixtures/ios-config-xml/App/App-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/ios-config-xml/App/App-Info.plist -------------------------------------------------------------------------------- /tests/spec/fixtures/ios-config-xml/App/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/ios-config-xml/App/AppDelegate.h -------------------------------------------------------------------------------- /tests/spec/fixtures/ios-config-xml/App/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/ios-config-xml/App/AppDelegate.swift -------------------------------------------------------------------------------- /tests/spec/fixtures/ios-config-xml/App/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/ios-config-xml/App/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /tests/spec/fixtures/ios-config-xml/App/Assets.xcassets/AppIcon.appiconset/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/ios-config-xml/App/Assets.xcassets/AppIcon.appiconset/icon.png -------------------------------------------------------------------------------- /tests/spec/fixtures/ios-config-xml/App/Assets.xcassets/BackgroundColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/ios-config-xml/App/Assets.xcassets/BackgroundColor.colorset/Contents.json -------------------------------------------------------------------------------- /tests/spec/fixtures/ios-config-xml/App/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/ios-config-xml/App/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /tests/spec/fixtures/ios-config-xml/App/Assets.xcassets/LaunchStoryboard.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/ios-config-xml/App/Assets.xcassets/LaunchStoryboard.imageset/Contents.json -------------------------------------------------------------------------------- /tests/spec/fixtures/ios-config-xml/App/Assets.xcassets/SplashScreenBackgroundColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/ios-config-xml/App/Assets.xcassets/SplashScreenBackgroundColor.colorset/Contents.json -------------------------------------------------------------------------------- /tests/spec/fixtures/ios-config-xml/App/Assets.xcassets/StatusBarBackgroundColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/ios-config-xml/App/Assets.xcassets/StatusBarBackgroundColor.colorset/Contents.json -------------------------------------------------------------------------------- /tests/spec/fixtures/ios-config-xml/App/Base.lproj/CDVLaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/ios-config-xml/App/Base.lproj/CDVLaunchScreen.storyboard -------------------------------------------------------------------------------- /tests/spec/fixtures/ios-config-xml/App/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/ios-config-xml/App/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /tests/spec/fixtures/ios-config-xml/App/Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/ios-config-xml/App/Bridging-Header.h -------------------------------------------------------------------------------- /tests/spec/fixtures/ios-config-xml/App/Entitlements-Debug.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/ios-config-xml/App/Entitlements-Debug.plist -------------------------------------------------------------------------------- /tests/spec/fixtures/ios-config-xml/App/Entitlements-Release.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/ios-config-xml/App/Entitlements-Release.plist -------------------------------------------------------------------------------- /tests/spec/fixtures/ios-config-xml/App/MainViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/ios-config-xml/App/MainViewController.h -------------------------------------------------------------------------------- /tests/spec/fixtures/ios-config-xml/App/Plugins/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/ios-config-xml/App/Plugins/README -------------------------------------------------------------------------------- /tests/spec/fixtures/ios-config-xml/App/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/ios-config-xml/App/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /tests/spec/fixtures/ios-config-xml/App/Resources/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/ios-config-xml/App/Resources/README -------------------------------------------------------------------------------- /tests/spec/fixtures/ios-config-xml/App/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/ios-config-xml/App/SceneDelegate.swift -------------------------------------------------------------------------------- /tests/spec/fixtures/ios-config-xml/App/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/ios-config-xml/App/ViewController.swift -------------------------------------------------------------------------------- /tests/spec/fixtures/ios-config-xml/App/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/ios-config-xml/App/config.xml -------------------------------------------------------------------------------- /tests/spec/fixtures/ios-config-xml/CordovaPlugins/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/ios-config-xml/CordovaPlugins/Package.swift -------------------------------------------------------------------------------- /tests/spec/fixtures/ios-config-xml/CordovaPlugins/Sources/CordovaPlugins/CordovaPlugins.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/ios-config-xml/CordovaPlugins/Sources/CordovaPlugins/CordovaPlugins.swift -------------------------------------------------------------------------------- /tests/spec/fixtures/ios-config-xml/cordova/defaults.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/ios-config-xml/cordova/defaults.xml -------------------------------------------------------------------------------- /tests/spec/fixtures/ios-config-xml/platform_www/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/spec/fixtures/ios-config-xml/www/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/spec/fixtures/ios-packageswift-config-xml/App.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/ios-packageswift-config-xml/App.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /tests/spec/fixtures/ios-packageswift-config-xml/App.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/ios-packageswift-config-xml/App.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /tests/spec/fixtures/ios-packageswift-config-xml/App.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/ios-packageswift-config-xml/App.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /tests/spec/fixtures/ios-packageswift-config-xml/App.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/ios-packageswift-config-xml/App.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /tests/spec/fixtures/ios-packageswift-config-xml/App.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/ios-packageswift-config-xml/App.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /tests/spec/fixtures/ios-packageswift-config-xml/App.xcworkspace/xcshareddata/xcschemes/App.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/ios-packageswift-config-xml/App.xcworkspace/xcshareddata/xcschemes/App.xcscheme -------------------------------------------------------------------------------- /tests/spec/fixtures/ios-packageswift-config-xml/App/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/ios-packageswift-config-xml/App/.gitignore -------------------------------------------------------------------------------- /tests/spec/fixtures/ios-packageswift-config-xml/App/App-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/ios-packageswift-config-xml/App/App-Info.plist -------------------------------------------------------------------------------- /tests/spec/fixtures/ios-packageswift-config-xml/App/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/ios-packageswift-config-xml/App/AppDelegate.h -------------------------------------------------------------------------------- /tests/spec/fixtures/ios-packageswift-config-xml/App/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/ios-packageswift-config-xml/App/AppDelegate.swift -------------------------------------------------------------------------------- /tests/spec/fixtures/ios-packageswift-config-xml/App/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/ios-packageswift-config-xml/App/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /tests/spec/fixtures/ios-packageswift-config-xml/App/Assets.xcassets/AppIcon.appiconset/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/ios-packageswift-config-xml/App/Assets.xcassets/AppIcon.appiconset/icon.png -------------------------------------------------------------------------------- /tests/spec/fixtures/ios-packageswift-config-xml/App/Assets.xcassets/BackgroundColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/ios-packageswift-config-xml/App/Assets.xcassets/BackgroundColor.colorset/Contents.json -------------------------------------------------------------------------------- /tests/spec/fixtures/ios-packageswift-config-xml/App/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/ios-packageswift-config-xml/App/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /tests/spec/fixtures/ios-packageswift-config-xml/App/Assets.xcassets/LaunchStoryboard.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/ios-packageswift-config-xml/App/Assets.xcassets/LaunchStoryboard.imageset/Contents.json -------------------------------------------------------------------------------- /tests/spec/fixtures/ios-packageswift-config-xml/App/Assets.xcassets/SplashScreenBackgroundColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/ios-packageswift-config-xml/App/Assets.xcassets/SplashScreenBackgroundColor.colorset/Contents.json -------------------------------------------------------------------------------- /tests/spec/fixtures/ios-packageswift-config-xml/App/Assets.xcassets/StatusBarBackgroundColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/ios-packageswift-config-xml/App/Assets.xcassets/StatusBarBackgroundColor.colorset/Contents.json -------------------------------------------------------------------------------- /tests/spec/fixtures/ios-packageswift-config-xml/App/Base.lproj/CDVLaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/ios-packageswift-config-xml/App/Base.lproj/CDVLaunchScreen.storyboard -------------------------------------------------------------------------------- /tests/spec/fixtures/ios-packageswift-config-xml/App/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/ios-packageswift-config-xml/App/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /tests/spec/fixtures/ios-packageswift-config-xml/App/Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/ios-packageswift-config-xml/App/Bridging-Header.h -------------------------------------------------------------------------------- /tests/spec/fixtures/ios-packageswift-config-xml/App/Entitlements-Debug.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/ios-packageswift-config-xml/App/Entitlements-Debug.plist -------------------------------------------------------------------------------- /tests/spec/fixtures/ios-packageswift-config-xml/App/Entitlements-Release.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/ios-packageswift-config-xml/App/Entitlements-Release.plist -------------------------------------------------------------------------------- /tests/spec/fixtures/ios-packageswift-config-xml/App/MainViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/ios-packageswift-config-xml/App/MainViewController.h -------------------------------------------------------------------------------- /tests/spec/fixtures/ios-packageswift-config-xml/App/Plugins/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/ios-packageswift-config-xml/App/Plugins/README -------------------------------------------------------------------------------- /tests/spec/fixtures/ios-packageswift-config-xml/App/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/ios-packageswift-config-xml/App/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /tests/spec/fixtures/ios-packageswift-config-xml/App/Resources/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/ios-packageswift-config-xml/App/Resources/README -------------------------------------------------------------------------------- /tests/spec/fixtures/ios-packageswift-config-xml/App/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/ios-packageswift-config-xml/App/SceneDelegate.swift -------------------------------------------------------------------------------- /tests/spec/fixtures/ios-packageswift-config-xml/App/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/ios-packageswift-config-xml/App/ViewController.swift -------------------------------------------------------------------------------- /tests/spec/fixtures/ios-packageswift-config-xml/App/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/ios-packageswift-config-xml/App/config.xml -------------------------------------------------------------------------------- /tests/spec/fixtures/ios-packageswift-config-xml/CordovaPlugins/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/ios-packageswift-config-xml/CordovaPlugins/Package.swift -------------------------------------------------------------------------------- /tests/spec/fixtures/ios-packageswift-config-xml/CordovaPlugins/Sources/CordovaPlugins/CordovaPlugins.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/ios-packageswift-config-xml/CordovaPlugins/Sources/CordovaPlugins/CordovaPlugins.swift -------------------------------------------------------------------------------- /tests/spec/fixtures/ios-packageswift-config-xml/cordova/defaults.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/ios-packageswift-config-xml/cordova/defaults.xml -------------------------------------------------------------------------------- /tests/spec/fixtures/ios-packageswift-config-xml/packages/cordova-ios-plugins/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/ios-packageswift-config-xml/packages/cordova-ios-plugins/Package.swift -------------------------------------------------------------------------------- /tests/spec/fixtures/ios-packageswift-config-xml/packages/cordova-ios/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/ios-packageswift-config-xml/packages/cordova-ios/Package.swift -------------------------------------------------------------------------------- /tests/spec/fixtures/ios-packageswift-config-xml/platform_www/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/spec/fixtures/ios-packageswift-config-xml/www/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/spec/fixtures/launch-storyboard-support/configs/legacy-only.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/launch-storyboard-support/configs/legacy-only.xml -------------------------------------------------------------------------------- /tests/spec/fixtures/launch-storyboard-support/configs/modern-and-legacy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/launch-storyboard-support/configs/modern-and-legacy.xml -------------------------------------------------------------------------------- /tests/spec/fixtures/launch-storyboard-support/configs/modern-only.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/launch-storyboard-support/configs/modern-only.xml -------------------------------------------------------------------------------- /tests/spec/fixtures/launch-storyboard-support/configs/none.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/launch-storyboard-support/configs/none.xml -------------------------------------------------------------------------------- /tests/spec/fixtures/launch-storyboard-support/contents-json/empty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/launch-storyboard-support/contents-json/empty.js -------------------------------------------------------------------------------- /tests/spec/fixtures/launch-storyboard-support/contents-json/single-2xanyany.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/launch-storyboard-support/contents-json/single-2xanyany.js -------------------------------------------------------------------------------- /tests/spec/fixtures/launch-storyboard-support/contents-json/typical-universal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/launch-storyboard-support/contents-json/typical-universal.js -------------------------------------------------------------------------------- /tests/spec/fixtures/launch-storyboard-support/contents-json/varied-device-and-theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/launch-storyboard-support/contents-json/varied-device-and-theme.js -------------------------------------------------------------------------------- /tests/spec/fixtures/launch-storyboard-support/contents-json/varied-device.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/launch-storyboard-support/contents-json/varied-device.js -------------------------------------------------------------------------------- /tests/spec/fixtures/launch-storyboard-support/contents-map/empty-map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/launch-storyboard-support/contents-map/empty-map.js -------------------------------------------------------------------------------- /tests/spec/fixtures/launch-storyboard-support/contents-map/single-2xanyany-map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/launch-storyboard-support/contents-map/single-2xanyany-map.js -------------------------------------------------------------------------------- /tests/spec/fixtures/launch-storyboard-support/contents-map/typical-universal-map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/launch-storyboard-support/contents-map/typical-universal-map.js -------------------------------------------------------------------------------- /tests/spec/fixtures/launch-storyboard-support/contents-map/varied-device-and-theme-map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/launch-storyboard-support/contents-map/varied-device-and-theme-map.js -------------------------------------------------------------------------------- /tests/spec/fixtures/launch-storyboard-support/contents-map/varied-device-map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/launch-storyboard-support/contents-map/varied-device-map.js -------------------------------------------------------------------------------- /tests/spec/fixtures/launch-storyboard-support/res/screen/ios/Default@2x~universal~anyany.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/launch-storyboard-support/res/screen/ios/Default@2x~universal~anyany.png -------------------------------------------------------------------------------- /tests/spec/fixtures/launch-storyboard-support/res/screen/ios/Default@2x~universal~comany.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/launch-storyboard-support/res/screen/ios/Default@2x~universal~comany.png -------------------------------------------------------------------------------- /tests/spec/fixtures/launch-storyboard-support/res/screen/ios/Default@2x~universal~comcom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/launch-storyboard-support/res/screen/ios/Default@2x~universal~comcom.png -------------------------------------------------------------------------------- /tests/spec/fixtures/launch-storyboard-support/res/screen/ios/Default@3x~universal~anyany.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/launch-storyboard-support/res/screen/ios/Default@3x~universal~anyany.png -------------------------------------------------------------------------------- /tests/spec/fixtures/launch-storyboard-support/res/screen/ios/Default@3x~universal~anycom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/launch-storyboard-support/res/screen/ios/Default@3x~universal~anycom.png -------------------------------------------------------------------------------- /tests/spec/fixtures/launch-storyboard-support/res/screen/ios/Default@3x~universal~comany.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/launch-storyboard-support/res/screen/ios/Default@3x~universal~comany.png -------------------------------------------------------------------------------- /tests/spec/fixtures/org.test.plugins.dummyplugin/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/org.test.plugins.dummyplugin/plugin.xml -------------------------------------------------------------------------------- /tests/spec/fixtures/org.test.plugins.dummyplugin/src/ios/Custom.framework/someFheader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/org.test.plugins.dummyplugin/src/ios/Custom.framework/someFheader.h -------------------------------------------------------------------------------- /tests/spec/fixtures/org.test.plugins.dummyplugin/src/ios/Custom.framework/somebinlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/org.test.plugins.dummyplugin/src/ios/Custom.framework/somebinlib -------------------------------------------------------------------------------- /tests/spec/fixtures/org.test.plugins.dummyplugin/src/ios/CustomEmbeddable.framework/someFheader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/org.test.plugins.dummyplugin/src/ios/CustomEmbeddable.framework/someFheader.h -------------------------------------------------------------------------------- /tests/spec/fixtures/org.test.plugins.dummyplugin/src/ios/CustomEmbeddable.framework/somebinlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/org.test.plugins.dummyplugin/src/ios/CustomEmbeddable.framework/somebinlib -------------------------------------------------------------------------------- /tests/spec/fixtures/org.test.plugins.dummyplugin/src/ios/DummyPlugin.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/org.test.plugins.dummyplugin/src/ios/DummyPlugin.bundle -------------------------------------------------------------------------------- /tests/spec/fixtures/org.test.plugins.dummyplugin/src/ios/DummyPluginCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/org.test.plugins.dummyplugin/src/ios/DummyPluginCommand.h -------------------------------------------------------------------------------- /tests/spec/fixtures/org.test.plugins.dummyplugin/src/ios/DummyPluginCommand.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/org.test.plugins.dummyplugin/src/ios/DummyPluginCommand.m -------------------------------------------------------------------------------- /tests/spec/fixtures/org.test.plugins.dummyplugin/src/ios/SourceWithFramework.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/org.test.plugins.dummyplugin/src/ios/SourceWithFramework.m -------------------------------------------------------------------------------- /tests/spec/fixtures/org.test.plugins.dummyplugin/src/ios/TargetDirTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/org.test.plugins.dummyplugin/src/ios/TargetDirTest.h -------------------------------------------------------------------------------- /tests/spec/fixtures/org.test.plugins.dummyplugin/src/ios/TargetDirTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/org.test.plugins.dummyplugin/src/ios/TargetDirTest.m -------------------------------------------------------------------------------- /tests/spec/fixtures/org.test.plugins.dummyplugin/src/ios/libsqlite3.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/org.test.plugins.dummyplugin/src/ios/libsqlite3.dylib -------------------------------------------------------------------------------- /tests/spec/fixtures/org.test.plugins.dummyplugin/www/dummyplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/org.test.plugins.dummyplugin/www/dummyplugin.js -------------------------------------------------------------------------------- /tests/spec/fixtures/org.test.plugins.dummyplugin/www/dummyplugin/image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/org.test.plugins.dummyplugin/www/dummyplugin/image.jpg -------------------------------------------------------------------------------- /tests/spec/fixtures/org.test.plugins.embedlinkplugin/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/org.test.plugins.embedlinkplugin/plugin.xml -------------------------------------------------------------------------------- /tests/spec/fixtures/org.test.plugins.embedlinkplugin/src/ios/CustomEmbeddable.framework/someFheader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/org.test.plugins.embedlinkplugin/src/ios/CustomEmbeddable.framework/someFheader.h -------------------------------------------------------------------------------- /tests/spec/fixtures/org.test.plugins.embedlinkplugin/src/ios/CustomEmbeddable.framework/somebinlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/org.test.plugins.embedlinkplugin/src/ios/CustomEmbeddable.framework/somebinlib -------------------------------------------------------------------------------- /tests/spec/fixtures/org.test.plugins.faultyplugin/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/org.test.plugins.faultyplugin/plugin.xml -------------------------------------------------------------------------------- /tests/spec/fixtures/org.test.plugins.faultyplugin/src/ios/FaultyPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/org.test.plugins.faultyplugin/src/ios/FaultyPlugin.h -------------------------------------------------------------------------------- /tests/spec/fixtures/org.test.plugins.faultyplugin/src/ios/FaultyPlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/org.test.plugins.faultyplugin/src/ios/FaultyPlugin.m -------------------------------------------------------------------------------- /tests/spec/fixtures/org.test.plugins.swiftpackagecocoapodplugin/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/org.test.plugins.swiftpackagecocoapodplugin/Package.swift -------------------------------------------------------------------------------- /tests/spec/fixtures/org.test.plugins.swiftpackagecocoapodplugin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/org.test.plugins.swiftpackagecocoapodplugin/package.json -------------------------------------------------------------------------------- /tests/spec/fixtures/org.test.plugins.swiftpackagecocoapodplugin/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/org.test.plugins.swiftpackagecocoapodplugin/plugin.xml -------------------------------------------------------------------------------- /tests/spec/fixtures/org.test.plugins.swiftpackagecocoapodplugin/src/ios/PackagePodPlugin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/org.test.plugins.swiftpackagecocoapodplugin/src/ios/PackagePodPlugin.swift -------------------------------------------------------------------------------- /tests/spec/fixtures/org.test.plugins.swiftpackageplugin/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/org.test.plugins.swiftpackageplugin/Package.swift -------------------------------------------------------------------------------- /tests/spec/fixtures/org.test.plugins.swiftpackageplugin/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/org.test.plugins.swiftpackageplugin/plugin.xml -------------------------------------------------------------------------------- /tests/spec/fixtures/org.test.plugins.swiftpackageplugin/src/ios/PackagePlugin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/org.test.plugins.swiftpackageplugin/src/ios/PackagePlugin.swift -------------------------------------------------------------------------------- /tests/spec/fixtures/org.test.plugins.weblessplugin/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/org.test.plugins.weblessplugin/plugin.xml -------------------------------------------------------------------------------- /tests/spec/fixtures/org.test.plugins.weblessplugin/src/ios/WeblessPlugin.bundle/arrow_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/org.test.plugins.weblessplugin/src/ios/WeblessPlugin.bundle/arrow_left.png -------------------------------------------------------------------------------- /tests/spec/fixtures/org.test.plugins.weblessplugin/src/ios/WeblessPlugin.bundle/arrow_left@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/org.test.plugins.weblessplugin/src/ios/WeblessPlugin.bundle/arrow_left@2x.png -------------------------------------------------------------------------------- /tests/spec/fixtures/org.test.plugins.weblessplugin/src/ios/WeblessPlugin.bundle/arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/org.test.plugins.weblessplugin/src/ios/WeblessPlugin.bundle/arrow_right.png -------------------------------------------------------------------------------- /tests/spec/fixtures/org.test.plugins.weblessplugin/src/ios/WeblessPlugin.bundle/arrow_right@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/org.test.plugins.weblessplugin/src/ios/WeblessPlugin.bundle/arrow_right@2x.png -------------------------------------------------------------------------------- /tests/spec/fixtures/org.test.plugins.weblessplugin/src/ios/WeblessPlugin.bundle/but_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/org.test.plugins.weblessplugin/src/ios/WeblessPlugin.bundle/but_refresh.png -------------------------------------------------------------------------------- /tests/spec/fixtures/org.test.plugins.weblessplugin/src/ios/WeblessPlugin.bundle/but_refresh@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/org.test.plugins.weblessplugin/src/ios/WeblessPlugin.bundle/but_refresh@2x.png -------------------------------------------------------------------------------- /tests/spec/fixtures/org.test.plugins.weblessplugin/src/ios/WeblessPlugin.bundle/compass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/org.test.plugins.weblessplugin/src/ios/WeblessPlugin.bundle/compass.png -------------------------------------------------------------------------------- /tests/spec/fixtures/org.test.plugins.weblessplugin/src/ios/WeblessPlugin.bundle/compass@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/org.test.plugins.weblessplugin/src/ios/WeblessPlugin.bundle/compass@2x.png -------------------------------------------------------------------------------- /tests/spec/fixtures/org.test.plugins.weblessplugin/src/ios/WeblessPluginCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/org.test.plugins.weblessplugin/src/ios/WeblessPluginCommand.h -------------------------------------------------------------------------------- /tests/spec/fixtures/org.test.plugins.weblessplugin/src/ios/WeblessPluginCommand.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/org.test.plugins.weblessplugin/src/ios/WeblessPluginCommand.m -------------------------------------------------------------------------------- /tests/spec/fixtures/org.test.plugins.weblessplugin/src/ios/WeblessPluginViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/org.test.plugins.weblessplugin/src/ios/WeblessPluginViewController.h -------------------------------------------------------------------------------- /tests/spec/fixtures/org.test.plugins.weblessplugin/src/ios/WeblessPluginViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/org.test.plugins.weblessplugin/src/ios/WeblessPluginViewController.m -------------------------------------------------------------------------------- /tests/spec/fixtures/org.test.plugins.weblessplugin/src/ios/WeblessPluginViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/org.test.plugins.weblessplugin/src/ios/WeblessPluginViewController.xib -------------------------------------------------------------------------------- /tests/spec/fixtures/prepare/allows-arbitrary-loads-for-media-false.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/prepare/allows-arbitrary-loads-for-media-false.xml -------------------------------------------------------------------------------- /tests/spec/fixtures/prepare/allows-arbitrary-loads-for-media-true.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/prepare/allows-arbitrary-loads-for-media-true.xml -------------------------------------------------------------------------------- /tests/spec/fixtures/prepare/allows-arbitrary-loads-in-media-false.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/prepare/allows-arbitrary-loads-in-media-false.xml -------------------------------------------------------------------------------- /tests/spec/fixtures/prepare/allows-arbitrary-loads-in-media-true.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/prepare/allows-arbitrary-loads-in-media-true.xml -------------------------------------------------------------------------------- /tests/spec/fixtures/prepare/allows-arbitrary-loads-in-web-content-true.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/prepare/allows-arbitrary-loads-in-web-content-true.xml -------------------------------------------------------------------------------- /tests/spec/fixtures/prepare/allows-local-networking-true.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/prepare/allows-local-networking-true.xml -------------------------------------------------------------------------------- /tests/spec/fixtures/prepare/no-privacy-manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/prepare/no-privacy-manifest.xml -------------------------------------------------------------------------------- /tests/spec/fixtures/prepare/privacy-manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/prepare/privacy-manifest.xml -------------------------------------------------------------------------------- /tests/spec/fixtures/prepare/set-origin-with-mixed-nsallows.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/prepare/set-origin-with-mixed-nsallows.xml -------------------------------------------------------------------------------- /tests/spec/fixtures/prepare/wildcard-navigation-with-mixed-nsallows.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/prepare/wildcard-navigation-with-mixed-nsallows.xml -------------------------------------------------------------------------------- /tests/spec/fixtures/prepare/wildcard-navigation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/prepare/wildcard-navigation.xml -------------------------------------------------------------------------------- /tests/spec/fixtures/prepare/wildcard-with-mixed-nsallows.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/prepare/wildcard-with-mixed-nsallows.xml -------------------------------------------------------------------------------- /tests/spec/fixtures/resource-file-support/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/resource-file-support/config.xml -------------------------------------------------------------------------------- /tests/spec/fixtures/resource-file-support/image-1234.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/resource-file-support/image-1234.png -------------------------------------------------------------------------------- /tests/spec/fixtures/resource-file-support/image-5678.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/resource-file-support/image-5678.png -------------------------------------------------------------------------------- /tests/spec/fixtures/resource-file-support/image-8888.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/resource-file-support/image-8888.png -------------------------------------------------------------------------------- /tests/spec/fixtures/sample-ioreg-output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/sample-ioreg-output.txt -------------------------------------------------------------------------------- /tests/spec/fixtures/simctl-list-issue-262.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/simctl-list-issue-262.json -------------------------------------------------------------------------------- /tests/spec/fixtures/simctl-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/simctl-list.json -------------------------------------------------------------------------------- /tests/spec/fixtures/test-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/test-Bridging-Header.h -------------------------------------------------------------------------------- /tests/spec/fixtures/test-Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/test-Package.swift -------------------------------------------------------------------------------- /tests/spec/fixtures/test-config-2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/test-config-2.xml -------------------------------------------------------------------------------- /tests/spec/fixtures/test-config-3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/test-config-3.xml -------------------------------------------------------------------------------- /tests/spec/fixtures/test-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/test-config.xml -------------------------------------------------------------------------------- /tests/spec/fixtures/testProj/platforms/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/fixtures/testProj/platforms/ios/.gitignore -------------------------------------------------------------------------------- /tests/spec/list-devices.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/list-devices.spec.js -------------------------------------------------------------------------------- /tests/spec/list-emulator-images.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/list-emulator-images.spec.js -------------------------------------------------------------------------------- /tests/spec/pluginAdd.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/pluginAdd.spec.js -------------------------------------------------------------------------------- /tests/spec/prepare.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/prepare.spec.js -------------------------------------------------------------------------------- /tests/spec/preparePlatform.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/preparePlatform.spec.js -------------------------------------------------------------------------------- /tests/spec/projectFile.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/projectFile.spec.js -------------------------------------------------------------------------------- /tests/spec/run.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/run.spec.js -------------------------------------------------------------------------------- /tests/spec/simctlHelper.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/simctlHelper.spec.js -------------------------------------------------------------------------------- /tests/spec/unit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/unit.json -------------------------------------------------------------------------------- /tests/spec/versions.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/tests/spec/versions.spec.js -------------------------------------------------------------------------------- /types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-ios/HEAD/types/index.d.ts --------------------------------------------------------------------------------