commit | d9e95cb7f2aae6a5fc151d34d8c10eb5f2f9d5d5 | [log] [tgz] |
---|---|---|
author | Cole Faust <colefaust@google.com> | Tue Aug 31 16:56:07 2021 -0700 |
committer | Ram Parameswaran <rampara@google.com> | Wed Oct 20 20:57:04 2021 +0000 |
tree | 8c8bf63883063689b7e029ff3ea3d51017a9a8b1 | |
parent | 417642546b0595d50ea6a2fffff0fda16c3a7521 [diff] |
Add generate-overlays.py Similar to generate-overlayable.py, but for the <overlay> entry. This assumes that the resources that the RRO uses to replace app resources are named exactly the same as the app's resources. The user can also supply the app's res folder to the script, in which case it will know to ignore any resources that are not also present in the app. Fixes: 169707403 Test: Manually Change-Id: I33340f8f711fefa0166c7d775881eab82d1f8907 (cherry picked from commit 38cb3702eda83b7977e78690a635b8a7079e2caf) Merged-In: I33340f8f711fefa0166c7d775881eab82d1f8907
This repository is only for car test applications. They can be unbundled from Android devices.
git clone -b $BRANCH https://android.googlesource.com/platform/packages/apps/Car/tests cd tests f=`git rev-parse --git-dir`/hooks/commit-msg ; mkdir -p $(dirname $f) ; curl -Lo $f https://gerrit-review.googlesource.com/tools/hooks/commit-msg ; chmod +x $f
tests
project by Android Studio and do your magic.TestMediaApp should be one of the run configurations. The green Run button should build and install the app on your phone.
To see TestMediaApp in Android Auto Projected:
RotaryPlayground is a test and reference application for the AAOS Rotary framework to use with an external rotary input device.
Beside building in Android Studio, you can also build and install RotaryPlayground into an AAOS device:
$ make RotaryPlayground $ adb install -r -g out/target/[path]/system/app/RotaryPlayground/RotaryPlayground.apk
RotaryIME is a sample input method for rotary controllers.
To build and install RotaryIME onto an AAOS device:
$ make RotaryIME $ adb install -r -g out/target/[path]/system/app/RotaryIME/RotaryIME.apk
Install repo command line tool. Then run:
sudo apt-get install gitk sudo apt-get install git-gui mkdir WORKING_DIRECTORY_FOR_GIT_REPO cd WORKING_DIRECTORY_FOR_GIT_REPO repo init -u https://android.googlesource.com/platform/manifest -b $BRANCH -g name:platform/tools/repohooks,name:platform/packages/apps/Car/tests --depth=1 repo sync
repo start BRANCH_NAME . # Make some changes git gui & # Use GUI to create a CL. Check amend box to update a work-in-progress CL repo upload .
# Make some changes git add . git commit git push origin HEAD:refs/for/$BRANCH