feat(kotlin-compose): design system + 33 components + gallery_kt + e2e android emulator + scaffolder fixes

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-05-11 16:28:50 +02:00
parent 0bdb8454e1
commit cb6d9e61d1
152 changed files with 148262 additions and 25 deletions
+18
View File
@@ -0,0 +1,18 @@
#!/usr/bin/env bash
# android_shell — Execute arbitrary shell command on Android device via adb shell
# shellcheck source=./adb_wsl.sh
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
source "$SCRIPT_DIR/adb_wsl.sh"
android_shell() {
adb_pick_serial "$@" || exit 3
local serial="$ADB_PICK_SERIAL"
set -- "${ADB_PICK_REST[@]}"
adb_s "$serial" shell "$@"
}
if [[ "${BASH_SOURCE[0]}" == "${0}" ]]; then
android_shell "$@"
fi