UNPKG

cordova-launch-review

Version:

Cordova/Phonegap plugin for iOS and Android to assist in leaving user reviews/ratings in the App Stores.

55 lines (41 loc) 1.94 kB
<?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>