12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <?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"
- id="cordova-plugin-themeablebrowser"
- version="0.2.17">
- <name>ThemeableBrowser</name>
- <description>Cordova ThemeableBrowser Plugin</description>
- <license>Apache 2.0</license>
- <keywords>cordova,in,app,browser,themeablebrowser</keywords>
- <repo>https://github.com/initialxy/cordova-plugin-themeablebrowser.git</repo>
- <issue>https://github.com/initialxy/cordova-plugin-themeablebrowser/issues</issue>
- <engines>
- <engine name="cordova" version=">=3.1.0" />
- </engines>
- <!-- android -->
- <platform name="android">
- <js-module src="www/themeablebrowser.js" name="themeablebrowser">
- <clobbers target="cordova.ThemeableBrowser" />
- </js-module>
- <config-file target="res/xml/config.xml" parent="/*">
- <feature name="ThemeableBrowser">
- <param name="android-package" value="com.initialxy.cordova.themeablebrowser.ThemeableBrowser"/>
- </feature>
- </config-file>
- <source-file src="src/android/ThemeableBrowser.java" target-dir="src/com/initialxy/cordova/themeablebrowser" />
- <source-file src="src/android/ThemeableBrowserDialog.java" target-dir="src/com/initialxy/cordova/themeablebrowser" />
- <source-file src="src/android/InAppChromeClient.java" target-dir="src/com/initialxy/cordova/themeablebrowser" />
- <source-file src="src/android/ThemeableBrowserUnmarshaller.java" target-dir="src/com/initialxy/cordova/themeablebrowser" />
- </platform>
- <!-- ios -->
- <platform name="ios">
- <js-module src="www/themeablebrowser.js" name="themeablebrowser">
- <clobbers target="cordova.ThemeableBrowser" />
- </js-module>
- <config-file target="config.xml" parent="/*">
- <feature name="ThemeableBrowser">
- <param name="ios-package" value="CDVThemeableBrowser" />
- </feature>
- </config-file>
- <header-file src="src/ios/CDVThemeableBrowser.h" />
- <source-file src="src/ios/CDVThemeableBrowser.m" />
- <framework src="CoreGraphics.framework" />
- </platform>
- </plugin>
|