-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
26 lines (25 loc) · 1.16 KB
/
plugin.xml
File metadata and controls
26 lines (25 loc) · 1.16 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
<?xml version='1.0' encoding='utf-8'?>
<plugin id="cn.owhat.leancloud.statistics" version="0.0.1" xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android">
<name>statistics</name>
<js-module name="statistics" src="www/statistics.js">
<clobbers target="cordova.plugins.statistics" />
</js-module>
<platform name="ios">
<config-file parent="/*" target="config.xml">
<feature name="statistics">
<param name="ios-package" value="CDVstatistics" />
</feature>
</config-file>
<source-file src="src/ios/CDVstatistics.m" />
</platform>
<platform name="android">
<config-file parent="/*" target="res/xml/config.xml">
<feature name="statistics">
<param name="android-package" value="cn.owhat.leancloud.statistics.CDVstatistics" />
</feature>
</config-file>
<config-file parent="/*" target="AndroidManifest.xml">
</config-file>
<source-file src="src/android/CDVstatistics.java" target-dir="src/cn/owhat/leancloud/statistics/CDVstatistics" />
</platform>
</plugin>