mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
1.4 KiB
1.4 KiB
{{#template name="basicMobile"}}
Building Mobile Apps
Once you've built your web app with Meteor, you can easily build a native wrapper for your app and publish it to the Google Play Store or iOS App Store with just a few commands. We've put a lot of work into making the same packages and APIs work on desktop and mobile, so that you don't have to worry about a lot of the edge cases associated with mobile app development.
Instaling mobile SDKs
Install the development tools for Android or iOS with one command:
meteor install-sdk android # for Android
meteor install-sdk ios # for iOS
Adding platforms
Add the relevant platform to your app:
meteor add-platform android # for Android
meteor add-platform ios # for iOS
Running on a simulator
meteor run android # for Android
meteor run ios # for iOS
Running on a device
meteor run android-device # for Android
meteor run ios-device # for iOS
Configuring app icons and metadata
You can configure your app's icons, title, version number, splash screen, and other metadata with the special mobile-config.js file.
Learn more about Meteor's mobile support on the GitHub wiki page.
{{/template}}