This repository was archived by the owner on Sep 17, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathplugin.xml
More file actions
27 lines (20 loc) · 1.06 KB
/
plugin.xml
File metadata and controls
27 lines (20 loc) · 1.06 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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
id="cordova-android-support-gradle-release"
version="3.0.1">
<name>cordova-android-support-gradle-release</name>
<description>Cordova/Phonegap plugin to align various versions of the Android Support libraries specified by other plugins to a specific version</description>
<author>Dave Alden</author>
<engines>
<engine name="cordova" version=">=6.2.0" />
<engine name="cordova-android" version=">=6.0.0" />
</engines>
<platform name="android">
<hook type="after_prepare" src="scripts/apply-changes.js" />
<hook type="before_build" src="scripts/apply-changes.js" />
<hook type="after_plugin_install" src="scripts/apply-changes.js" />
<preference name="ANDROID_SUPPORT_VERSION" default="27.+" />
<framework src="cordova-android-support-gradle-release.gradle" custom="true" type="gradleReference" />
</platform>
</plugin>