Hello

Use Full ADB Commands





    ADB Command ဆိုတာ ADB Command Line မွ တဆင့္ မိမိရဲ့ Android Phone ကို လိုသလို ထိန္းေၾကာင္းျပင္ဆင္နိုင္ပါတယ္။ ADB Command မ်ားကို အသံုး၀င္ေသာ အေၾကာင္းအရာမ်ားသာ    ေရြးၿပီး ေဖာ္ျပ ေပးလိုက္ပါတယ္။ 




ADB push (sends files to your phone) -- adb push c:\example.apk /sdcard/example.apk

ADB pull (Receives files from your phone) -- adb pull /system/app/example.apk c:\example.apk

ADB install (installs application) -- adb install c:\example.apk

adb shell (Begins shell connection with phone)

adb reboot (reboots phone)

adb reboot recovery (reboots phone into recovery)

adb reboot bootloader (reboots the phone into bootloader/the white screen)

adb remount (remounts the system)

cd (changes directories) -- cd /system/app

ls (lists all files in the directory) -- cd /system/app

rm (removes files) -- rm /system/app/example.apk

cp (copies files) similar to cat -- cp /system/app/example.apk /sdcard/example.apk

cat (copies files) -- cat /system/app/example.apk > /sdcard/example.apk

exit (exits shell) -- exit

0 comments: