forked from adapt-it/cordova-fonts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
26 lines (26 loc) · 1.05 KB
/
plugin.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?xml version='1.0' encoding='utf-8'?>
<plugin id="org.adapt-it.cordova.fonts"
version="0.0.1"
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">
<name>Fonts</name>
<description>Cordova Fonts Plugin</description>
<author>Erik Brommers</author>
<license>Apache 2.0 License</license>
<keywords>cordova,fonts</keywords>
<repo>https://github.com/adapt-it/cordova-fonts.git</repo>
<issue>https://github.com/adapt-it/cordova-fonts/issues</issue>
<js-module name="fonts" src="www/fonts.js">
<clobbers target="cordova.plugins.fonts" />
</js-module>
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="Fonts">
<param name="ios-package" value="CDVFonts"/>
</feature>
</config-file>
<header-file src="src/ios/CDVFonts.h" />
<source-file src="src/ios/CDVFonts.m" />
</platform>
</plugin>