Reputation: 7476
I've created an application with the RhoStudio SDK. On the iPhone simulator it is working well. Now I would like to install it to an android tablet. Is it possible to create a binary file which then can be copied to my device and run it? Does anybody have experience with this?
Upvotes: 0
Views: 106
Reputation: 1486
Yes, it is possible.
Run this command:
rake device:android:debug
And it will generate an .APK for you. You will need Android SDK and NDK.
Upvotes: 1