-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathplugin.xml
More file actions
30 lines (23 loc) · 1.32 KB
/
plugin.xml
File metadata and controls
30 lines (23 loc) · 1.32 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
<?xml version='1.0' encoding='utf-8'?>
<plugin id="cordova-plugin-checkHuaweiServices" version="1.0.0" xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android">
<name>CheckHuaweiServices</name>
<author>Hernán Giraldo</author>
<description>Cordova Plugin to check Huawei Services Availability</description>
<keywords>cordova,android,huawei,huawei services, plugin</keywords>
<license>MIT</license>
<repo>https://github.com/hernangiraldo/CheckHuaweiServices</repo>
<issue>https://github.com/hernangiraldo/CheckHuaweiServices/issues</issue>
<js-module name="CheckHuaweiServices" src="www/CheckHuaweiServices.js">
<clobbers target="CheckHuaweiServices" />
</js-module>
<platform name="android">
<config-file parent="/*" target="res/xml/config.xml">
<feature name="CheckHuaweiServices">
<param name="android-package" value="com.checkhuaweiservices.CheckHuaweiServices" />
</feature>
</config-file>
<config-file parent="/*" target="AndroidManifest.xml"></config-file>
<source-file src="src/android/com/checkhuaweiservices/CheckHuaweiServices.java" target-dir="src/cordova-plugin-checkHuaweiServices/CheckHuaweiServices" />
<framework custom="true" src="src/android/build-extras.gradle" type="gradleReference"/>
</platform>
</plugin>