-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathplugin.xml
56 lines (46 loc) · 2.46 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
47
48
49
50
51
52
53
54
55
56
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0" id="com.outsystems.moneystories.plugin" version="1.0.0">
<name>MoneyStoriesPlugin</name>
<description>MoneyStoriesPlugin to display stories by date information using MoneyStory SDK</description>
<license>MIT</license>
<engines>
<engine name="cordova" version=">=10.1.0" />
<engine name="cordova-android" version=">=9.0.0" />
<engine name="cordova-ios" version=">=6.2.0" />
</engines>
<keywords>cordova,android,ios</keywords>
<js-module name="MoneyStoriesPlugin" src="www/MoneyStoriesPlugin.js">
<clobbers target="cordova.plugins.MoneyStoriesPlugin" />
</js-module>
<!-- ios side -->
<platform name="ios">
<config-file parent="/*" target="config.xml">
<feature name="MoneyStoriesPlugin">
<param name="ios-package" value="MoneyStoriesPlugin" />
</feature>
</config-file>
<header-file src="src/ios/MoneyStoriesPlugin.h" />
<source-file src="src/ios/MoneyStoriesPlugin.m" />
<framework custom="true" embed="true" src="src/ios/framework/MoneyStories.framework" />
</platform>
<!-- android side -->
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="MoneyStoriesPlugin">
<param name="android-package" value="com.outsystems.moneystories.plugin.MoneyStoriesPlugin" />
</feature>
</config-file>
<config-file target="AndroidManifest.xml" parent="/manifest">
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
</config-file>
<config-file target="AndroidManifest.xml" parent="/manifest/application">
<activity android:label="@string/app_name" android:name="com.outsystems.moneystories.BridgeActivity"
android:theme="@style/Theme.AppCompat.Light"></activity>
</config-file>
<source-file src="src/android/MoneyStoriesPlugin.java" target-dir="src/com/outsystems/moneystories/plugin" />
<framework src="src/android/moneystories.gradle" custom="true" type="gradleReference" />
<lib-file src="src/android/libs/moneystories-anb-release.aar" target="libs/moneystories-anb-release.aar" />
<lib-file src="src/android/libs/api-gateway-api-android-1.13.2.aar"
target="libs/api-gateway-api-android-1.13.2.aar" />
</platform>
</plugin>