Reputation: 1022
In the build script of Samsung's Gear VR framework there's a line:
android update lib-project -p .
What's this "android" and where to get it? Obviously this is a bit hard to google :)
Upvotes: 1
Views: 65
Reputation: 47865
This tool can be found in the SDK. Take a look at this:
http://developer.android.com/tools/projects/projects-cmdline.html
Upvotes: 1
Reputation: 29436
This is the android
sdk tool.
It ships with android sdk and is located at <sdk directory>/tools/
.
It supports library project update commands:
> android --help
> - create lib-project : Creates a new Android library project.
> - update lib-project : Updates an Android library project (must already have an AndroidManifest.xml).
Upvotes: 1
Reputation: 8277
You can find the android binary in $ANDROID_HOME/tools, $ANDROID_HOME is the path to the directory of your android sdk, you can either add it to the $PATH environment variable, or you can just cd
to $ANDROID_HOME/tools
then invoke ./android
with required arguments
Upvotes: 1