-
Notifications
You must be signed in to change notification settings - Fork 10
/
plugin.xml
74 lines (59 loc) · 2.82 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright 2020-2023 Ayogo Health Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
https://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android" id="cordova-plugin-update-notifier" version="3.0.0">
<name>cordova-plugin-update-notifier</name>
<description>Cordova plugin for showing a notification for app updates.</description>
<keywords>cordova,ios,android</keywords>
<license>Apache 2.0</license>
<repo>https://github.com/AyogoHealth/cordova-plugin-update-notifier.git</repo>
<issues>https://github.com/AyogoHealth/cordova-plugin-update-notifier/issues</issues>
<engines>
<engine name="cordova-ios" version=">= 5.0.0" />
<engine name="cordova-android" version=">= 9.0.0" />
</engines>
<platform name="ios">
<config-file parent="/*" target="config.xml">
<feature name="UpdateNotifier">
<param name="ios-package" value="CDVUpdateNotifierPlugin" />
<param name="onload" value="true" />
</feature>
<preference name="SwiftVersion" value="5.0" />
</config-file>
<source-file src="src/ios/UpdateNotifierPlugin.swift" />
<podspec>
<config></config>
<pods use-frameworks="true">
<pod name="Siren" />
</pods>
</podspec>
</platform>
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="UpdateNotifier">
<param name="android-package" value="com.ayogo.cordova.updatenotifier.UpdateNotifierPlugin" />
<param name="onload" value="true" />
</feature>
<preference name="AndroidXEnabled" value="true" />
</config-file>
<source-file src="src/android/UpdateNotifierPlugin.java" target-dir="src/com/ayogo/cordova/updatenotifier" />
<config-file target="res/values/strings.xml" parent="/resources">
<string name="app_update_ready">An update has just been downloaded.</string>
<string name="app_update_install">RESTART</string>
</config-file>
<preference name="ANDROIDX_MATERIAL_DESIGN_VERSION" default="[1.0,2)" />
<preference name="PLAY_APP_UPDATE_SDK_VERSION" default="[2.0,3)" />
<framework src="com.google.android.material:material:$ANDROIDX_MATERIAL_DESIGN_VERSION" />
<framework src="com.google.android.play:app-update:$PLAY_APP_UPDATE_SDK_VERSION" />
</platform>
</plugin>