UNPKG

cordova-plugin-ionic-webview

Version:
123 lines (107 loc) 6.63 kB
<?xml version="1.0" encoding="UTF-8"?> <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:rim="http://www.blackberry.com/ns/widgets" xmlns:android="http://schemas.android.com/apk/res/android" id="cordova-plugin-ionic-webview" version="2.3.0"> <name>cordova-plugin-ionic-webview</name> <description>Ionic Web View Engine Plugin</description> <license>Apache-2.0</license> <keywords>cordova,wkwebview</keywords> <repo>https://github.com/ionic-team/cordova-plugin-ionic-webview</repo> <engines> <engine name="cordova-ios" version=">=4.0.0-dev"/> <engine name="apple-ios" version=">=9.0"/> <engine name="cordova-android" version=">=6.4.0"/> </engines> <js-module src="src/www/util.js" name="IonicWebView"> <clobbers target="Ionic.WebView"/> </js-module> <platform name="android"> <config-file target="config.xml" parent="/*"> <allow-navigation href="http://localhost:8080/*"/> <preference name="webView" value="com.ionicframework.cordova.webview.IonicWebViewEngine"/> <feature name="IonicWebView"> <param name="android-package" value="com.ionicframework.cordova.webview.IonicWebView"/> </feature> </config-file> <source-file src="src/android/com/ionicframework/cordova/webview/IonicWebViewEngine.java" target-dir="src/com/ionicframework/cordova/webview"/> <source-file src="src/android/com/ionicframework/cordova/webview/IonicWebView.java" target-dir="src/com/ionicframework/cordova/webview"/> <source-file src="src/android/com/ionicframework/cordova/webview/AndroidProtocolHandler.java" target-dir="src/com/ionicframework/cordova/webview"/> <source-file src="src/android/com/ionicframework/cordova/webview/UriMatcher.java" target-dir="src/com/ionicframework/cordova/webview"/> <source-file src="src/android/com/ionicframework/cordova/webview/WebViewLocalServer.java" target-dir="src/com/ionicframework/cordova/webview"/> <preference name="ANDROID_SUPPORT_ANNOTATIONS_VERSION" default="27.+"/> <framework src="com.android.support:support-annotations:$ANDROID_SUPPORT_ANNOTATIONS_VERSION"/> </platform> <!-- ios --> <platform name="ios"> <js-module src="src/www/ios/ios-wkwebview-exec.js" name="ios-wkwebview-exec"> <clobbers target="cordova.exec"/> </js-module> <config-file target="config.xml" parent="/*"> <allow-navigation href="http://localhost:8080/*"/> <allow-navigation href="http://127.0.0.1:8080/*"/> <allow-navigation href="ionic://*"/> <feature name="IonicWebView"> <param name="ios-package" value="CDVWKWebViewEngine"/> </feature> <preference name="CordovaWebViewEngine" value="CDVWKWebViewEngine"/> </config-file> <framework src="WebKit.framework" weak="true"/> <header-file src="src/ios/CDVWKWebViewEngine.h"/> <source-file src="src/ios/CDVWKWebViewEngine.m"/> <header-file src="src/ios/CDVWKWebViewUIDelegate.h"/> <source-file src="src/ios/CDVWKWebViewUIDelegate.m"/> <header-file src="src/ios/CDVWKProcessPoolFactory.h"/> <source-file src="src/ios/CDVWKProcessPoolFactory.m"/> <header-file src="src/ios/IONAssetHandler.h"/> <source-file src="src/ios/IONAssetHandler.m"/> <asset src="src/ios/wk-plugin.js" target="wk-plugin.js"/> <!--GCDWebServer headers--> <header-file src="src/ios/GCDWebServer/Core/GCDWebServer.h"/> <header-file src="src/ios/GCDWebServer/Core/GCDWebServerConnection.h"/> <header-file src="src/ios/GCDWebServer/Core/GCDWebServerFunctions.h"/> <header-file src="src/ios/GCDWebServer/Core/GCDWebServerHTTPStatusCodes.h"/> <header-file src="src/ios/GCDWebServer/Core/GCDWebServerPrivate.h"/> <header-file src="src/ios/GCDWebServer/Core/GCDWebServerRequest.h"/> <header-file src="src/ios/GCDWebServer/Core/GCDWebServerResponse.h"/> <header-file src="src/ios/GCDWebServer/Requests/GCDWebServerDataRequest.h"/> <header-file src="src/ios/GCDWebServer/Requests/GCDWebServerFileRequest.h"/> <header-file src="src/ios/GCDWebServer/Requests/GCDWebServerMultiPartFormRequest.h"/> <header-file src="src/ios/GCDWebServer/Requests/GCDWebServerURLEncodedFormRequest.h"/> <header-file src="src/ios/GCDWebServer/Responses/GCDWebServerDataResponse.h"/> <header-file src="src/ios/GCDWebServer/Responses/GCDWebServerErrorResponse.h"/> <header-file src="src/ios/GCDWebServer/Responses/GCDWebServerFileResponse.h"/> <header-file src="src/ios/GCDWebServer/Responses/GCDWebServerStreamedResponse.h"/> <!--GCDWebServer source--> <source-file src="src/ios/GCDWebServer/Core/GCDWebServer.m"/> <source-file src="src/ios/GCDWebServer/Core/GCDWebServerConnection.m"/> <source-file src="src/ios/GCDWebServer/Core/GCDWebServerFunctions.m"/> <source-file src="src/ios/GCDWebServer/Core/GCDWebServerRequest.m"/> <source-file src="src/ios/GCDWebServer/Core/GCDWebServerResponse.m"/> <source-file src="src/ios/GCDWebServer/Requests/GCDWebServerDataRequest.m"/> <source-file src="src/ios/GCDWebServer/Requests/GCDWebServerFileRequest.m"/> <source-file src="src/ios/GCDWebServer/Requests/GCDWebServerMultiPartFormRequest.m"/> <source-file src="src/ios/GCDWebServer/Requests/GCDWebServerURLEncodedFormRequest.m"/> <source-file src="src/ios/GCDWebServer/Responses/GCDWebServerDataResponse.m"/> <source-file src="src/ios/GCDWebServer/Responses/GCDWebServerErrorResponse.m"/> <source-file src="src/ios/GCDWebServer/Responses/GCDWebServerFileResponse.m"/> <source-file src="src/ios/GCDWebServer/Responses/GCDWebServerStreamedResponse.m"/> <!--GCDWebServer dependencies--> <framework src="libz.tbd"/> </platform> <issue>https://github.com/ionic-team/cordova-plugin-ionic-webview/issues</issue> <author>Ionic Team</author> </plugin>