構建移動應用
Meteor 使用 Cordova 將你的應用程式打包成混合移動應用程式。打包後,App 可以像原生應用程式一樣分發(通過 Apple App Store,Google Play Store 等)
meteor add-platform android
meteor add-platform ios # Only available with Mac OS
meteor run android # You may need to configure a default Android emulator first
對於 iOS(僅適用於 Mac OS):
meteor run ios # This will auto start an iOS simulator
- 構建你的 App 包以進行分發:
meteor build <output_folder> --server <url_app_should_connect_to>
這將在你的伺服器包旁邊建立 android
和/或 ios
資料夾。
android
資料夾包含你需要簽名和 zip 對齊的release-unsigned.apk
檔案。ios
資料夾包含你需要簽名的 Xcode 專案。
另請參閱 Meteor Mobile Apps 主題。
參考頁面: 流星指南>構建>移動