forked from NestedLooper/cordova-plugin-ios-frameworks
-
Notifications
You must be signed in to change notification settings - Fork 1
/
plugin.xml
executable file
·39 lines (39 loc) · 1.9 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
27
28
29
30
31
32
33
34
35
36
37
38
39
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" id="cordova-plugin-ios-frameworks" version="1.0.1">
<name>iOS Frameworks</name>
<description>Add additional libraries/frameworks to your Xcode project on Prepare/Build/Run</description>
<license>Apache License, Version 2.0</license>
<keywords>ionic,cordova,phonegap,ios,xcode,frameworks,binary,additions</keywords>
<repo>https://github.com/NestedLooper/cordova-plugin-ios-frameworks.git</repo>
<issue>https://github.com/NestedLooper/cordova-plugin-ios-frameworks/issues</issue>
<!-- ios only -->
<platform name="ios">
<js-module src="www/plugin.js" name="plugin">
<runs/>
<clobbers target="iOSFrameworks" />
</js-module>
<config-file target="config.xml" parent="/*">
<feature name="iOSFrameworks">
<param name="ios-package" value="iOSFrameworks" onload="true" />
</feature>
</config-file>
<header-file src="src/ios/iOSFrameworks.h" />
<source-file src="src/ios/iOSFrameworks.m" />
<!-- Add your additional iOS frameworks below -->
<framework src="AdSupport.framework" />
<!--<framework src="CFNetwork.framework" />
<framework src="CoreFoundation.framework" />
<framework src="Foundation.framework" />
<framework src="FrontBoardServices.framework" />
<framework src="JavaScriptCore.framework" />
<framework src="MobileCoreServices.framework" />
<framework src="UIKit.framework" />
<framework src="WebCore.framework" />
<framework src="libdispatch.tbd" />
<framework src="libdyld.tbd" />
<framework src="libsystem_pthread.tbd" />
<framework src="libsystem_platform.tbd" />
<framework src="libsystem_malloc.tbd" />-->
<!-- End Additional Frameworks -->
</platform>
</plugin>