I need some help with Ruboto..
So I want to start doing some Android development using Ruboto. Here are the steps I took:
rvm install
gem install
export PATH=${PATH}:/Users/prem/android-sdks/tools:/Users/prem/android-sdks/platform-tools
ruboto gen ..
emulator -avd emulator-name
rake install start
but I get the following error:$ rake install start
You need to install the Android SDK Platform-tools!
Any ideas what I'm doing wrong?
EDIT:
I did the same thing on Ubuntu 12.04, I get the same error (need to install platform-tools!).
Thanks in advance!
So thanks to Scott for posting a solution to this on my question on Google groups here https://groups.google.com/forum/?fromgroups#!topic/ruboto/OI6MobKAiGY
If this problem persists, the way to solve it is to install the latest version of Ruboto (pre-release candidate) by running:
gem install ruboto --pre
That solved it for me!