Skip to content

Commit

Permalink
makefile: add missing TARGET for android-clean
Browse files Browse the repository at this point in the history
Signed-off-by: Jakub Sokołowski <jakub@status.im>
  • Loading branch information
jakubgs committed Apr 21, 2020
1 parent 938f3df commit 4670ae7
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -327,9 +327,10 @@ geth-connect: ##@other Connect to Geth on the device
adb forward tcp:8545 tcp:8545 && \
build/bin/geth attach http://localhost:8545

android-clean: export TARGET := android
android-clean: ##@prepare Clean Gradle state
git clean -dxf -f ./android/app/build
[ -d android/.gradle ] && cd android && ./gradlew clean
[[ -d android/.gradle ]] && cd android && ./gradlew clean

android-ports: export TARGET := android-env
android-ports: ##@other Add proxies to Android Device/Simulator
Expand All @@ -348,7 +349,7 @@ android-logcat: ##@other Read status-react logs from Android phone using adb

android-install: export TARGET := android-env
android-install: export BUILD_TYPE ?= release
android-install:
android-install: ##@other Install APK on device using adb
adb install result/app-$(BUILD_TYPE).apk

_list: SHELL := /bin/sh
Expand Down

0 comments on commit 4670ae7

Please sign in to comment.