-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
46 lines (36 loc) · 1.49 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
40
41
42
43
44
45
46
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
id="cordova-plugin-googledrive"
version="1.0.0">
<name>GoogleDrive</name>
<engines>
<engine name="cordova" version=">=3.0.0" />
</engines>
<js-module src="www/googleDrive.js" name="GoogleDrive">
<clobbers target="cordova.plugins.googleDrive" />
</js-module>
<!-- android -->
<platform name="android">
<framework src="com.google.android.gms:play-services-auth:11.6.2" type="gradleReference" />
<framework src="com.google.android.gms:play-services-drive:11.6.2" type="gradleReference" />
<framework src="com.google.android.gms:play-services-tasks:11.6.2" type="gradleReference" />
<config-file target="res/xml/config.xml" parent="/*">
<feature name="GoogleDrive" >
<param name="android-package" value="org.loyalx.GoogleDrive"/>
</feature>
</config-file>
<source-file src="src/android/GoogleDrive.java" target-dir="src/org/loyalx" />
</platform>
<!-- TODO: Uncomment this if you would like to add iOS support -->
<!-- ios -->
<!--
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="GoogleDrive">
<param name="ios-package" value="CDVGoogleDrive"/>
</feature>
</config-file>
<source-file src="src/ios/CDVGoogleDrive.m" />
</platform>
-->
</plugin>