-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathplugin.xml
40 lines (36 loc) · 1.52 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
<?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.outsystems.plugins.loggerproxy" version="0.1.0">
<name>OSLoggerProxy</name>
<description>OutSystems Logger Proxy for Cordova applications</description>
<license>Apache 2.0</license>
<keywords>cordova,outsystems</keywords>
<repo></repo>
<issue></issue>
<!-- js -->
<js-module name="OSLoggerProxy" src="www/OSLoggerProxy.js">
<clobbers target="OSLoggerProxy" />
</js-module>
<!-- ios -->
<platform name="ios">
<config-file parent="/*" target="config.xml">
<feature name="OSLoggerProxy">
<param name="ios-package" value="OSLoggerProxyPlugin" />
<param name="onload" value="true" />
</feature>
</config-file>
<header-file src="src/ios/OSLoggerProxyPlugin.h"/>
<source-file src="src/ios/OSLoggerProxyPlugin.m" />
</platform>
<!-- android -->
<platform name="android">
<config-file parent="/*" target="config.xml">
<feature name="OSLoggerProxy">
<param name="android-package" value="com.outsystems.plugins.loggerproxy.OSLoggerProxyPlugin"/>
<param name="onload" value="true" />
</feature>
</config-file>
<source-file src="src/android/OSLoggerProxyPlugin.java" target-dir="src/com/outsystems/plugins/loggerproxy" />
</platform>
</plugin>