|
@@ -0,0 +1,15 @@
|
|
|
+# 添加自定义插件
|
|
|
+## plugman
|
|
|
+ npm install -g plugman
|
|
|
+
|
|
|
+## create customize plugin
|
|
|
+ plugman create --name plugin --plugin_id com.plugin.plugin --plugin_version 1.0.0
|
|
|
+
|
|
|
+## add plugform file
|
|
|
+ plugman platform add --platform_name android/ios
|
|
|
+
|
|
|
+## add package.json
|
|
|
+ npm init
|
|
|
+
|
|
|
+## using customize plugin
|
|
|
+ ionic cordova plugin add path --you customize plugin path
|