File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed
android/android-app-curl-with-two-buttons Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -31,17 +31,21 @@ gradle wrapper --gradle-version 8.3 --distribution-type all
3131./gradlew --version
3232```
3333
34+ ## build
3435``` sh
3536rm -rf build .gradle app/build app/.gradle
3637gradle --stop
3738gradle --status
3839./gradlew --stop
3940./gradlew --status
40- ./gradlew clean :app:assembleDebug --no-build-cache
4141
42- # gradle wrapper --gradle-version 7.5 --distribution-type all
42+ ./gradlew clean :app:assembleDebug --no-build-cache
4343ls -la app/build/outputs/apk/debug/app-debug.apk
44+ ```
4445
45- # install on android
46+ ## install application on physical android device
47+ ``` sh
48+ adb devices
49+ # if no devices: https://github.com/cherkavi/cheat-sheet/blob/master/android-cheat-sheet.md#adb
4650adb install -r app/build/outputs/apk/debug/app-debug.apk
4751```
You can’t perform that action at this time.
0 commit comments