mirror of
https://github.com/Catfriend1/syncthing-android.git
synced 2025-11-05 13:29:46 +08:00
12 lines
249 B
Batchfile
12 lines
249 B
Batchfile
@echo off
|
|
setlocal enabledelayedexpansion
|
|
::
|
|
SET "SCRIPT_PATH=%~dp0"
|
|
SET "PROJECT_ROOT=%SCRIPT_PATH%..\..\.."
|
|
SET "APK_FULLFN=%PROJECT_ROOT%\app\build\outputs\apk\debug\app-debug.apk"
|
|
::
|
|
dir "%APK_FULLFN%"
|
|
adb install -r "%APK_FULLFN%"
|
|
::
|
|
goto :eof
|