forked from pushandplay/cordova-plugin-apprate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
92 lines (71 loc) · 2.99 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<?xml version="1.0" encoding="UTF-8"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you 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
http://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://cordova.apache.org/ns/plugins/1.0"
id="org.pushandplay.cordova.apprate"
version="1.1.5">
<name>AppRate</name>
<description>This plugin provide the "rate this app" functionality into your Cordova/Phonegap application
</description>
<author email="hello@pushandplay.ru" href="http://pushandplay.ru">pushandplay</author>
<keywords>cordova,phonegap,AppRate,App Rate,rate,iRate,rate in iTunes,write a review,rate us,rate my application</keywords>
<license>Apache 2.0</license>
<info>Cross-platform AppRate plugin for Cordova / PhoneGap</info>
<repo>https://github.com/pushandplay/cordova-plugin-apprate.git</repo>
<issue>https://github.com/pushandplay/cordova-plugin-apprate/issues</issue>
<engines>
<engine name="cordova" version=">=3.0.0"/>
</engines>
<dependency id="org.apache.cordova.dialogs"/>
<dependency id="org.apache.cordova.globalization"/>
<js-module src="www/AppRate.js" name="AppRate">
<clobbers target="AppRate"/>
</js-module>
<js-module src="www/locales.js" name="locales">
<runs target="AppRateLocales"/>
</js-module>
<!-- android -->
<platform name="android">
<dependency id="org.apache.cordova.inappbrowser"/>
<source-file src="src/android/AppRate.java" target-dir="src/org/apache/cordova/apprate"/>
<config-file target="res/xml/config.xml" parent="/*">
<feature name="AppRate">
<param name="android-package" value="org.pushandplay.cordova.apprate.AppRate"/>
</feature>
</config-file>
</platform>
<!-- ios -->
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="AppRate">
<param name="ios-package" value="CDVAppRate"/>
</feature>
</config-file>
<header-file src="src/ios/CDVAppRate.h"/>
<source-file src="src/ios/CDVAppRate.m"/>
<framework src="StoreKit.framework"/>
</platform>
<!-- blackberry10 -->
<platform name="blackberry10">
</platform>
<!-- wp8 -->
<platform name="wp8">
</platform>
<!-- windows8 -->
<platform name="windows8">
</platform>
</plugin>