Last active
November 28, 2015 22:09
-
-
Save adamlutz/f96bf673ba62939e148b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
install meteor | |
deploy app to meteor cloud | |
$ meteor build ~/Meteor/ \ | |
--server=lutz.meteor.com | |
install android studio: http://developer.android.com/sdk/installing/index.html?pkg=studio | |
start new project + create AVD from API 22. | |
$ brew install android-platform-tools | |
$ meteor add-platform android | |
$ keytool -genkey -alias simple-todos -keyalg RSA -keysize 2048 -validity 10000 | |
$ jarsigner -verbose -sigalg SHA1withRSA -digestalg SHA1 release-unsigned.apk simple-todos | |
$ adb -d install ~/Meteor/android/release-unsigned.apk |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment