1#!/bin/bash 2 3# locate some directories 4cd "$(dirname $0)" 5SCRIPT_DIR="${PWD}" 6cd ../.. 7TOP="${PWD}" 8 9message='usage: tapas [<App1> <App2> ...] [arm|x86|mips|arm64|x86_64|mips64] [eng|userdebug|user] 10 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" 24