-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathplugin.xml
More file actions
31 lines (30 loc) · 1.44 KB
/
plugin.xml
File metadata and controls
31 lines (30 loc) · 1.44 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
28
29
30
31
<?xml version='1.0' encoding='utf-8'?>
<plugin
id="cordova-clover-plugin"
version="0.0.1"
xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android">
<name>Cordova Clover Plugin</name>
<author>Rytis Tekorius</author>
<js-module name="cordova-clover-plugin" src="www/cordova-clover-plugin.js">
<clobbers target="plugins.clover" />
</js-module>
<platform name="android">
<config-file parent="/*" target="res/xml/config.xml">
<feature name="CordovaCloverPlugin">
<param name="android-package" value="com.tekorius.cordovaCloverPlugin.CordovaCloverPlugin" />
</feature>
</config-file>
<config-file parent="/*" target="AndroidManifest.xml">
<uses-permission android:name="android.permission.GET_ACCOUNTS"/>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.USE_CREDENTIALS"/>
<uses-permission android:name="clover.permission.ACTION_PAY"/>
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
</config-file>
<source-file
src="src/android/CordovaCloverPlugin.java"
target-dir="src/com/tekorius/cordovaCloverPlugin/" />
<framework src="src/android/clover.gradle" custom="true" type="gradleReference"/>
</platform>
</plugin>