Skip to content

Instantly share code, notes, and snippets.

View NativeDevlopment's full-sized avatar

Amarendra kumar jha NativeDevlopment

View GitHub Profile
@NativeDevlopment
NativeDevlopment / Adb Command list
Last active October 22, 2023 07:19
Collection of some useful ADB command list
restart adbd with root permissions
>> adb root
adb re write permission
>> adb remount
app installation - push a single package to the device and install it
>> adb install test.apk
app reinstall and as debuggable
>> adb install -r -d test.apk
app install as a system apk - push app inside priv-app folder
>> adb push test.apk /system/priv-app/TestApp