This page is part of the App Framework Documentation
App Framework does many adjustments in the background to enable you to deploy your App easily as Web App or as native App. So you could start fast and become professional later on without any change. But what are the differences?
Web App | Native App | |
---|---|---|
Installation | Are running in the device browser and could be pinned to the homescreen. | Are installed from an App Store or manually to the device (Android only). |
Performance | Reload on reopen, but could be cached for offline usage. Offline warning. | Kept in runtime of the device, smoother usage. No offline warning. |
Capability | Only browser features. | Access to the device hardware and OS features. |
Deployment | In seconds. | Additional native build plus approval process, which takes some time and could be refused at the Apple App Store. |
Costs | Firebase hosting service is free for small apps. | Apple App Store requires developer program (around 99€ per year), Google Play store requires registration fee (around 25 USD once). For selling apps, Apple and Google charge around 30% of the sales. |
Promotion | All regular ways. | All regular ways plus special promotions and user ratings in the store. |
- Run
npm run ftp
to deploy your latest build to your FTP server, on first call, the config file ftp-config.json is created automatically and you have to update it with your FTP server data - For rollback, run
npm run ftp -- --version x.y.z
- Run
npm run firebase
to deploy your latest build, database rules and storage rules to Firebase Hosting - Run
npm run database
to deploy your latest build database rules to Firebase - Run
npm run storage
to deploy your latest build storage rules to Firebase - Run
npm run hosting
to deploy your latest build static files to Firebase - For rollback, run all the commands above and extend with
-- --version x.y.z
or use the Firebase Console
- You need a Mac with macOS and installed Xcode (free)
- You need to sign to the Apple developer program (around 99€ per year)
- Create a production certificate in iTunes Connect, download and install it on your Mac
- Create a distribution provisioning profile in iTunes Connect, download and install it on your Mac
- Create a new App in iTunes Connect
- Configure the SKU from iTunes Connect in the configuration file as
appStoreId
- You need to prepare the publishing in iTunes Connect
- Run
npm run xcode
to create a project file for Xcode, based on Cordova - Make screenshots on the biggest iPhone (you will need them in iTunes Connect later on)
- Deactivate automatic managed signing, select your certificate and provisioning profiles created before
- Select the Generic iOS Device
- Create an archive (Product > Archive) of the Xcode project and upload it to iTunes Connect
- Send your App in iTunes Connect for the review to Apple
- For rollback, run
npm run xcode -- --version x.y.z
or use iTunes Connect
- You need to install the Android Studio
- You need to register at the Google Play Developer Console (around 25 USD once)
- Create a new App in the Google Play Developer Console
- Configure the app ID in the configuration file as
playStoreId
- Run
npm run studio
to create a project file for Android Studio, based on Cordova - Select your project and confirm Gradle sync
- Make screenshots, you will need them later in the Google Play Developer Console
- Generate signed APK
- Deploy your application from the Google Play Developer Console
- For rollback, run
npm run studio -- --version x.y.z
or use the Google Play Developer Console