i have a simple batch script for GRADLE android as below
@ECHO ON
set DIR=path
set APP=%DIR%\app1
cd %APP%
./gradlew assembleDebug
next i want to check when Gradlew build is done, i can continue next command something like
if(./gradlew assembleDebug) then echo "pass"
else echo "failed"
but i don't know how to implement in batch script
anyone know please tell me how to implement
thanks