-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathplugin.xml
More file actions
20 lines (20 loc) · 790 Bytes
/
plugin.xml
File metadata and controls
20 lines (20 loc) · 790 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
id="cordova-plugin-afnetworking"
version="2.5.2">
<name>AFNetworking Cordova Plugin</name>
<description>This plugin adds the AFNetworking library for iOS</description>
<license>MIT</license>
<keywords>cordova,device</keywords>
<engines>
<engine name="cordova" version=">=3.0.0" />
</engines>
<platform name="ios">
<framework src="src/ios/AFNetworking.framework" custom="true"/>
<framework src="Foundation.framework" weak="true" />
<framework src="CFNetwork.framework" />
<framework src="Security.framework" />
<framework src="SystemConfiguration.framework" />
</platform>
</plugin>