### Install APK with ADB Source: https://github.com/android/car-samples/blob/main/car_app_library/README.md After assembling the APKs, use the Android Debug Bridge (ADB) command-line tool to install the sample app APK onto a device or emulator. ```bash adb install ``` -------------------------------- ### Assemble APKs from Command Line Source: https://github.com/android/car-samples/blob/main/car_app_library/README.md Use Gradle to assemble APKs for both mobile and automotive platforms from the command line. Ensure the Gradle wrapper files are downloaded by opening the project in Android Studio first. ```bash ./gradlew :showcase:mobile:assemble ./gradlew :showcase:automotive:assemble ``` -------------------------------- ### Configure SDK Location Source: https://github.com/android/car-samples/blob/main/car_app_library/README.md If the SDK location is not found during the build process, create a `local.properties` file in the project directory and define the `sdk.dir` path. ```properties sdk.dir = ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.