Skip to content

Instantly share code, notes, and snippets.

@LieutenantChips
Created May 28, 2018 16:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save LieutenantChips/ac05405324e40bb37da17a2d15408920 to your computer and use it in GitHub Desktop.
Save LieutenantChips/ac05405324e40bb37da17a2d15408920 to your computer and use it in GitHub Desktop.
echo off
rem Copyright (C) 2010 The Android Open Source Project
rem
rem Licensed under the Apache License, Version 2.0 (the "License");
rem you may not use this file except in compliance with the License.
rem You may obtain a copy of the License at
rem
rem http://www.apache.org/licenses/LICENSE-2.0
rem
rem Unless required by applicable law or agreed to in writing, software
rem distributed under the License is distributed on an "AS IS" BASIS,
rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
rem See the License for the specific language governing permissions and
rem limitations under the License.
rem don't modify the caller's environment
setlocal
rem Set up prog to be the path of this script, including following symlinks,
rem and set up progdir to be the fully-qualified pathname of its directory.
set prog=%~f0
echo progdir pathname to dir : %~f0
rem Change current directory and drive to where the script is, to avoid
rem issues with directories containing whitespaces.
cd /d %~dp0
rem Check we have a valid Java.exe in the path.
set java_exe=
call ..\lib\find_java.bat
if not defined java_exe goto :EOF
for /f %%a in ("%APP_HOME%\lib\monkeyrunner-26.0.0-dev.jar") do set jarfile=%%~nxa
set frameworkdir=.
set libdir=
if exist %frameworkdir%\%jarfile% goto JarFileOk
set frameworkdir=C:\Users\vkaraku2\AppData\Local\Android\Sdk\tools\lib
if exist %frameworkdir%\%jarfile% goto JarFileOk
rem set frameworkdir=..\framework
:JarFileOk
set jarpath=%frameworkdir%\%jarfile%
echo VOLGA :: JARPATH :: %frameworkdir%\%jarfile%
if not defined ANDROID_SWT goto QueryArch
set swt_path=C:\Users\vkaraku2\AppData\Local\Android\Sdk\tools\lib
goto SwtDone
echo %APP_HOME%\lib\x86_64
:QueryArch
for /f "delims=" %%a in ('%frameworkdir%\..\bin\archquery') do set swt_path=%frameworkdir%\%%a
:SwtDone
if exist "%swt_path%" goto SetPath
echo SWT folder '%swt_path%' does not exist.
echo volga :: %APP_HOME%\lib\x86_64
echo Please set ANDROID_SWT to point to the folder containing swt.jar for your platform.
rem exit /B
set swt_path=C:\Users\vkaraku2\AppData\Local\Android\Sdk\tools\lib
:SetPath
echo volga :: \lib -jar %jarpath% %*
call "%java_exe%" -Xmx512m "-Djava.ext.dirs=%frameworkdir%;%swt_path%" -Dcom.android.monkeyrunner.bindir=../../platform-tools -jar %jarpath% %*
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment