Skip to content

Commit a43a321

Browse files
committed
Add faster android-install task
1 parent 1d20393 commit a43a321

2 files changed

Lines changed: 10 additions & 0 deletions

File tree

Taskfile.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,3 +122,8 @@ tasks:
122122
fw-lite-android:
123123
aliases: [android]
124124
deps: [fw-lite:run-maui-android]
125+
126+
fw-lite-android-install:
127+
aliases: [android-install]
128+
desc: Install without building
129+
deps: [fw-lite:install-maui-android]

backend/FwLite/Taskfile.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,11 @@ tasks:
7272
dir: ./FwLiteMaui
7373
cmd: dotnet build -f net9.0-android -t:InstallAndroidDependencies -p:AcceptAndroidSdkLicenses=True {{.CLI_ARGS}} # "-p:AndroidSdkDirectory=D:\tools\android"
7474

75+
install-maui-android:
76+
desc: Retry install + run without rebuilding (for when you miss the permission prompt) - uses existing build artifacts
77+
dir: ./FwLiteMaui
78+
cmd: dotnet build -f net9.0-android -t:Install,Run --no-restore --no-dependencies
79+
7580
build-mini-lcm-sdk:
7681
desc: Builds the sdk, a zip with the FwLiteWeb server with a project and config to run locally
7782
dir: ./FwLiteWeb

0 commit comments

Comments
 (0)