空のCordovaプラグインを作成する
最終更新日:2015-08-12
まずは空のプラグインを作ってみましょう。フォルダを1つ作り、plugin.xmlファイルを配置したら出来上がりです。
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
id="my-plugin"
version="0.0.1">
<name>MyPlugin</name>
<description>MyWonderfulPlugin</description>
<license>Apache 2.0</license>
</plugin>
各要素の意味は次の通りです。
- plugin : ルート要素。id属性でプラグインのIDを、version属性でバージョンを指定します。
- name : プラグインの名前を指定します。
- description : プラグインの説明を書きます。
- license : プラグインのライセンスを書きます。