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
@@ -0,0 +1,19 @@
#!/usr/bin/env bash
# gradle_assemble_debug — Build APK debug de un modulo Android via gradlew assembleDebug.
set -euo pipefail
source "$(dirname "${BASH_SOURCE[0]}")/gradle_run.sh"
gradle_assemble_debug() {
local project_dir="$1"
local module="${2:-app}"
gradle_run "$project_dir" ":$module:assembleDebug"
local apk
apk=$(find "$project_dir/$module/build/outputs/apk/debug" -name "*.apk" | head -1)
echo "APK: $apk"
}
gradle_assemble_debug "$@"