A collection of functions for deploying apps on Android
npm install @rnx-kit/tools-android

@rnx-kit/tools-android is a collection of functions for deploying apps on
Android.
Usage:
``typescript`
import * as tools from "@rnx-kit/tools-android";
| Category | Function | Description |
| -------- | --------------------------------------------------- | -------------------------------------------------------------------------------- |
| apk | getPackageName(apk) | Returns the package name and the first launchable activity of the specified APK. |install(device, apk, packageName)
| apk | | Installs the specified APK on specified emulator or physical device. |start(options, packageName, activityName)
| apk | | Starts the specified activity on specified emulator or physical device. |getDevices()
| device | | Returns a list of attached physical Android devices. |getEmulators()
| device | | Returns a list of available Android virtual devices. |launchEmulator(emulatorName)
| device | | Launches the emulator with the specified name. |selectDevice(emulatorName, logger)
| device | | Returns the emulator or physical device with the specified name. |assemble(projectDir, buildParams, additionalArgs)
| gradle | | Invokes Gradle build. |findOutputFile(projectDir, buildConfiguration)
| gradle | | Tries to find Gradle build output file. |getBuildToolsPath()` | Returns the path to Android SDK Build-Tools. |
| sdk |