maybug

导航

adb shell获取package信息

# to obtain apk path

adb shell pm list packages

adb shell pm path com.example.someapp

# or just

adb shell list pacakges -f

 

# pull to PC

adb pull /path/to/app

# or

adb shell cp /path/to/app /sdcard/myapp.apk

adb pull /sdcard/myapp.apk

 

 

get launcheable activity:

aapt dump badging /path/to/apk

# or

adb shell dumpsys package com.excample.packagename

posted on 2022-01-18 17:30  maybug  阅读(154)  评论(0编辑  收藏  举报