<?xml version='1.0' encoding='utf-8'?>
<plugin id="toast-plugin" version="1.0.0" xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android">
    <name>toast-plugin</name>
    <js-module name="MyToast" src="www/toast-plugin.js">
        <clobbers target="MyToast" />
    </js-module>
    <platform name="android">
        <config-file target="res/xml/config.xml" parent="/*">  
            <feature name="MyToast">  
                <param name="android-package" value="com.ljm.hellotest
.MyToast"/>
            </feature>  
        </config-file>  
        <source-file src="src/android/MyToast.java" target-dir="src/java/com/ljm/hellotest" />
    </platform> 
</plugin>