-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
39 lines (39 loc) · 1.85 KB
/
Copy pathplugin.xml
File metadata and controls
39 lines (39 loc) · 1.85 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
32
33
34
35
36
37
38
39
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<plugin id="cordova-khipu" version="2.11.0" xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android">
<name>Cordova Khipu</name>
<engines>
<engine name="cordova-ios" version=">=7.0.0"/>
<engine name="cordova-android" version=">=13.0.0"/>
</engines>
<js-module name="Khipu" src="www/cordova-khipu.js">
<clobbers target="window.Khipu"/>
</js-module>
<platform name="android">
<framework src="src/android/khipu.gradle" custom="true" type="gradleReference"/>
<config-file parent="/*" target="res/xml/config.xml">
<feature name="cordova-khipu">
<param name="android-package" value="com.khipu.cordova.KhipuPlugin"/>
</feature>
</config-file>
<source-file src="src/android/com/khipu/cordova/KhipuPlugin.java" target-dir="src/com/khipu/cordova"/>
<source-file src="src/android/com/khipu/cordova/KhipuOptionsInput.java" target-dir="src/com/khipu/cordova"/>
<source-file src="src/android/com/khipu/cordova/KhipuOptionsMapper.java" target-dir="src/com/khipu/cordova"/>
<source-file src="src/android/com/khipu/cordova/KhipuResultMapper.java" target-dir="src/com/khipu/cordova"/>
</platform>
<platform name="ios" package="swift">
<config-file parent="/*" target="config.xml">
<feature name="cordova-khipu">
<param name="ios-package" value="KhipuPlugin"/>
</feature>
</config-file>
<podspec>
<pods>
<pod name="KhipuClientIOS" spec="2.17.1" swift-version="5.1" nospm="true"/>
</pods>
</podspec>
<source-file src="src/ios/KhipuPlugin.swift"/>
<source-file src="src/ios/KhipuOptionsMapper.swift"/>
<hook type="after_prepare" src="scripts/configure-swift-ios.js"/>
</platform>
<hook type="after_prepare" src="scripts/enable-gradle-kotlin-plugin.js"/>
</plugin>