12 lines
		
	
	
		
			484 B
		
	
	
	
		
			Batchfile
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			484 B
		
	
	
	
		
			Batchfile
		
	
	
	
	
	
| @echo off
 | |
| set TOOLCHAIN_PATH=.\win
 | |
| set DOWNLOAD_PATH=..\scan
 | |
| 
 | |
| cd %TOOLCHAIN_PATH%
 | |
| .\hdc.exe shell mount -o remount,rw /
 | |
| .\hdc.exe file send %DOWNLOAD_PATH%/libmedia_library.z.so /system/lib/platformsdk/
 | |
| .\hdc.exe file send %DOWNLOAD_PATH%/libmedialibrary_data_extension.z.so /system/lib/
 | |
| .\hdc.exe file send %DOWNLOAD_PATH%/libmedialibrary_data_extension.z.so /data/app/el1/bundle/public/com.ohos.medialibrary.medialibrarydata/libs/arm/
 | |
| .\hdc.exe shell reboot
 | |
| echo "all success"
 | |
| pause |