<?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-plugin-myket"
        version="1.0.1">

    <name>Myket Intents</name>
    <description>This plugin helps peoples that need use Myket.ir Market intents in cordova projects</description>

    <author>Mohammad Reza Maghoul</author>
    <keywords>myket,myket-intent,myket-rate</keywords>
    <license>Apache 2.0</license>

    <engines>
        <engine name="cordova" version=">=3.0.0"/>
    </engines>

    <js-module src="www/Myket.js" name="Myket">
        <clobbers target="Myket" />
    </js-module>

    <platform name="android">
        <config-file target="res/xml/config.xml" parent="/*">
            <allow-intent href="myket://*" />
            <feature name="Myket">
                <param name="android-package" value="org.apache.cordova.plugin.Myket" />
            </feature>
        </config-file>
        <source-file src="src/android/Myket.java"
                     target-dir="src/org/apache/cordova/plugin"/>
    </platform>
</plugin>