Streamlined Android build process and install/uninstall batch files (#97)

This commit is contained in:
saschawillems 2016-03-26 11:49:37 +01:00
parent dcb161bcae
commit 1288672fd9
20 changed files with 125 additions and 44 deletions

14
android/install-all.bat Normal file
View file

@ -0,0 +1,14 @@
@echo off
SET /P ANSWER=Install all vulkan examples on attached device (Y/N)?
if /i {%ANSWER%}=={y} (goto :install)
if /i {%ANSWER%}=={yes} (goto :install)
goto :exit
:install
call build-all.bat -deploy
goto finish
:exit
echo Cancelled
:finish