makefile: add missing TARGET for android-clean

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2020-04-21 12:06:40 +02:00
parent 938f3df843
commit 4670ae7549
No known key found for this signature in database
GPG Key ID: 4EF064D0E6D63020
1 changed files with 3 additions and 2 deletions

View File

@ -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
@ -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