11 lines
214 B
Batchfile
11 lines
214 B
Batchfile
@echo off
|
|
|
|
set TOOLCHAIN_PATH=.\win
|
|
set HAP_PATH=..\hap
|
|
|
|
cd %TOOLCHAIN_PATH%
|
|
.\hdc.exe uninstall com.oh.dts
|
|
echo "uninstall success"
|
|
.\hdc.exe install -r %HAP_PATH%\entry-default-signed.hap
|
|
echo "all success"
|
|
pause |