-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathplugin.xml
54 lines (41 loc) · 1.89 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
<?xml version="1.0" encoding="UTF-8"?>
<plugin
xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
id="cordova-launch-review"
version="4.1.1">
<name>Launch Review</name>
<description>Cordova/Phonegap plugin for iOS and Android to assist in leaving user reviews/ratings in the App Stores.</description>
<author>Dave Alden</author>
<repo>https://github.com/dpa99c/cordova-launch-review.git</repo>
<issue>https://github.com/dpa99c/cordova-launch-review/issues</issue>
<keywords>ecosystem:cordova,cordova,phonegap,ios,android,review,rating</keywords>
<license>MIT</license>
<js-module src="www/launchreview.js" name="LaunchReview">
<clobbers target="LaunchReview"/>
</js-module>
<dependency id="cordova-plugin-device" version="*" />
<!-- ios -->
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="LaunchReview">
<param name="ios-package" value="LaunchReview"/>
</feature>
</config-file>
<header-file src="src/ios/LaunchReview.h"/>
<source-file src="src/ios/LaunchReview.m"/>
<header-file src="src/ios/UIWindow+DismissNotification.h"/>
<source-file src="src/ios/UIWindow+DismissNotification.m"/>
<framework src="StoreKit.framework"/>
</platform>
<!-- android -->
<platform name="android">
<framework src="com.google.android.play:review:2.0.1" />
<config-file target="res/xml/config.xml" parent="/*">
<feature name="LaunchReview">
<param name="android-package" value="uk.co.workingedge.phonegap.plugin.LaunchReview"/>
</feature>
</config-file>
<source-file src="src/android/LaunchReview.java" target-dir="src/uk/co/workingedge/phonegap/plugin"/>
</platform>
</plugin>