Upgraded original RothenburgAR to Unity version 2017.4.5f1 (and upgrading from standalone vuforia to the version integrated in unity)

This commit is contained in:
2018-08-03 15:43:36 +02:00
parent 64f296a0aa
commit 13041e7a70
738 changed files with 592316 additions and 0 deletions

36
Deploy/deploy.cmd Normal file
View File

@@ -0,0 +1,36 @@
@echo off
@title RothenburgAR Deploy
rem Variablendefinitionen
SET ApkPath=..\Output\rc3.apk
SET DataSourcePath=%appdata%\..\LocalLow\FHWS\RothenburgAR\data\
SET DataTargetPath=/storage/emulated/0/Android/data/de.fhws.rothenburgar/files/data/
rem Dieser Pfad muss unbedingt angepasst werden!
SET adbPath=C:\Program Files\Unity\Editor\Android\platform-tools\adb.exe
SET ClearBeforeCopy=1
rem Hier beginnt das Script
echo Installing "%ApkPath%" to connected devices.
rem "%adbPath%" install -r "%ApkPath%"
if "%ClearBeforeCopy%"=="1" (
echo Clearing data
"%adbPath%" shell rm -r %DataTargetPath%
)
CALL :CopyData colors.xml
CALL :CopyData localization.xml
CALL :CopyData localization
CALL :CopyData exhibition
CALL :CopyData poi
echo Done!
EXIT /B %ERRORLEVEL%
:CopyData
rem echo Copying data/%1 to connected devices.
"%adbPath%" push %DataSourcePath%\%1 %DataTargetPath%/%1
EXIT /B 0