「Cordova/helloworld」の版間の差分
提供: 初心者エンジニアの簡易メモ
(ページの作成:「==プロジェクト作成== cordova create hello_world com.example.helloworld helloworld 参考:https://qiita.com/AyumuSuzuki/items/17945ea1cfff1418e364 アクセ...」) |
|||
行1: | 行1: | ||
==プロジェクト作成== | ==プロジェクト作成== | ||
cordova create hello_world com.example.helloworld helloworld | cordova create hello_world com.example.helloworld helloworld | ||
+ | cd helloworld | ||
− | + | ==プラットフォーム追加== | |
+ | cordova platform add android | ||
+ | cordova platform add ios | ||
+ | cordova platform add browser | ||
+ | |||
+ | ==browerをビルドする== | ||
+ | cordova build browser | ||
アクセス | アクセス | ||
ttp://localhost:8000/index.html | ttp://localhost:8000/index.html | ||
+ | |||
+ | ==参考== | ||
+ | https://qiita.com/AyumuSuzuki/items/17945ea1cfff1418e364 |
2020年5月27日 (水) 12:20時点における版
プロジェクト作成
cordova create hello_world com.example.helloworld helloworld cd helloworld
プラットフォーム追加
cordova platform add android cordova platform add ios cordova platform add browser
browerをビルドする
cordova build browser
アクセス ttp://localhost:8000/index.html