blob: 0f461304a37150f46d9926e3fa1d3cb41d16a550 [file] [log] [blame]
Jeff Gaston9fb05d82017-08-21 18:27:00 -07001#!/bin/bash
2
3# locate some directories
4cd "$(dirname $0)"
5SCRIPT_DIR="${PWD}"
6cd ../..
7TOP="${PWD}"
8
Elliott Hughesf71c05a2020-03-06 16:46:59 -08009message='usage: tapas [<App1> <App2> ...] [arm|x86|arm64|x86_64] [eng|userdebug|user]
Jeff Gaston9fb05d82017-08-21 18:27:00 -070010
11tapas selects individual apps to be built by the Android build system. Unlike
12"lunch", "tapas" does not request the building of images for a device.
13Additionally, an app built with "tapas" will have its dex file inside its apk,
14which should cause it to be suitable for installing on any api-compatible
15device. In other words, "tapas" configures the build of unbundled apps.
16
17The names <App1> <App2> ... should match LOCAL_PACKAGE_NAME as defined in an
18Android.mk
19
20The usage of the other arguments matches that of the rest of the platform
21build system and can be found by running `m help`'
22
23echo "$message"