ruby - How to add Ruboto path to android sdk? -
i new ruboto gem. working on android ruboto. know android. have installed requirements rubuto. try created sample project using following command,
$ ruboto gen app --package org.sample.rubotoapp --target android-17 output: android sdk not in path /bin/sh: android: not found
please can solve problem. thanks....
it looks android sdk tools directory not in path. if check path variable
echo $path
it not contain android sdk tools directory. also, can check if "android" command in path using
which android
you empty response.
if use ruboto 0.12.0, should able use
ruboto setup
to configure environment. recently, in android sdk r22, path build tools changed. break setup, , have add
<android sdk location>/build-tools/17.0.0
to path manually. fixed ruboto 0.13.0 released in june.
Comments
Post a Comment