Ask Your Question
3

Can you provide assistance with updating/downloading Google Play Store apps using the ADB command line?

asked 2021-07-24 11:00:00 +0000

ladyg gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
3

answered 2022-01-24 15:00:00 +0000

lakamha gravatar image

Sure, here are the steps to update/download Google Play Store apps using ADB command line:

  1. First, make sure you have ADB installed on your computer. You can download it from the Android Developer website.

  2. Connect your Android device to your computer using a USB cable.

  3. Open a command prompt or terminal window on your computer and navigate to the ADB directory.

  4. Enter the following command to check if your device is connected:

adb devices
  1. If your device is listed, you can proceed with updating or downloading Google Play Store apps. To update an app, enter the following command:
adb shell pm install -r <package_name>

Replace "<package_name>" with the package name of the app you want to update.

  1. To download and install a new app, enter the following command:
adb shell "am start -a android.intent.action.VIEW -d 'market://details?id=<package_name>'"

Replace "<package_name>" with the package name of the app you want to download.

  1. You will be redirected to the Google Play Store page for the app. Click the "Install" button to download and install the app on your device.

That's it! You can now update and download apps on your Android device using ADB command line.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2021-07-24 11:00:00 +0000

Seen: 12 times

Last updated: Jan 24 '22