-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
28 lines (27 loc) · 1.48 KB
/
Copy pathplugin.xml
File metadata and controls
28 lines (27 loc) · 1.48 KB
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
<?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="com.alexwasner.parsesocialplugin" version="0.1.0">
<name>Parse Twitter Plugin</name>
<author>Alex Wasner</author>
<description>Cordova plugin to use Twitter and Facebook auth via Parse API.</description>
<keywords>cordova, twitter, parse</keywords>
<engines>
<engine name="cordova" version=">=3.0" />
</engines>
<js-module src="www/parsesocialplugin.js" name="ParseSocialPlugin">
<clobbers target="window.parsesocialplugin" />
</js-module>
<platform name="android">
<config-file target="config.xml" parent="/*">
<feature name="ParseSocialPlugin">
<param name="android-package" value="com.alexwasner.parsesocialplugin.ParseSocialPlugin" />
</feature>
</config-file>
<config-file target="AndroidManifest.xml" parent="/*">
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
</config-file>
<source-file src="src/android/parse/Parse-1.4.1.jar" target-dir="libs" framework="true" />
<source-file src="src/android/gson/gson-2.2.4.jar" target-dir="libs" framework="true" />
<source-file src="src/android/ParseSocialPlugin.java" target-dir="src/com/alexwasner/parsesocialplugin" />
</platform>
</plugin>