Skip to content
Austin Guest edited this page Mar 11, 2015 · 9 revisions

TOC

## Guides * [Meteor Tutorial](https://www.meteor.com/install) * [Meteor Getting Started Wiki](https://github.com/meteor/meteor/wiki/Meteor-Cordova-Phonegap-integration) * [Submitting to PlayStore](https://github.com/meteor/meteor/wiki/How-to-submit-your-Android-app-to-Play-Store) * [Example App](https://github.com/meteor/mobile-packages/tree/master/examples/solomo) * [Phonegap APIs](http://docs.phonegap.com/en/edge/cordova_plugins_pluginapis.md.html#Plugin%20APIs) ## Config / Run * Clone repo * [Add platforms](https://github.com/meteor/meteor/wiki/Meteor-Cordova-Phonegap-integration#addingremoving-platforms) * Deploy locally with `meteor run` from project root * deploy with `meteor deploy where-at.meteor.com` ## Deploy to Android * build with `meteor build ../target --server=where-at.meteor.com` * sign the app with a private key [using these instructions](https://github.com/meteor/meteor/wiki/How-to-submit-your-Android-app-to-Play-Store): * `keytool -genkey -alias where-at -keyalg RSA -keysize 2048 -validity 10000` * `cd ../target/android/` * `jarsigner -digestalg SHA1 unaligned.apk your-app-name` * `~/.meteor/android_bundle/android-sdk/build-tools/20.0.0/zipalign 4 \ unaligned.apk production.apk` * load it to your phone [using these instructions](http://www.ubergizmo.com/how-to/how-to-install-apk-files-sideloading-on-android/) * might require installing [Android File Transfer for Mac](https://www.android.com/filetransfer/#tips)
Clone this wiki locally