Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where does adb put installed apps on the device?

Tags:

adb

Using the guide at http://developer.android.com/training/basics/firstapp/running-app.html, I used adb to download the sample Hello, World app to my android device (a Samsung Admire, SCH-R720) and I can't locate it to launch it. I had the same problem with the emulator. Where does adb put the app? It doesn't seem to get copied to the SD card. I've read the documentation at http://developer.android.com/tools/help/adb.html, and it doesn't say.

like image 797
user2364637 Avatar asked May 09 '13 04:05

user2364637


People also ask

Where do my installed apps go?

You can see all the apps you've ever downloaded on your Android phone by opening the "My apps & games" section in your Google Play Store. The apps you've downloaded are divided into two sections: "Installed" (all the apps currently installed on your phone) and "Library" (all the apps that aren't currently installed).

Where are apps installed on Android phone?

For normal apps, there are stored in internal memory in /data/app. Some of the encrypted apps, the files are stored in /data/app-private. For apps stored in the external memory, files are stored in /mnt/sdcard/Android/data.

Where is the adb folder?

For this, open C:\Users\Username\AppData\Local\Android\Sdk\platform-tools, check if adb.exe is present. Case 1: If adb is not present: If the adb is not present, installing the platform-tools resolves the problem.

What is an adb installation directory?

Android Debug Bridge (adb) is a versatile command-line tool that lets you communicate with a device. The adb command facilitates a variety of device actions, such as installing and debugging apps, and it provides access to a Unix shell that you can use to run a variety of commands on a device.


1 Answers

Let's say you named your package com.example.myfirstapp. Then you can check if the package got properly installed with the following command:

adb shell pm list packages com.example.myfirstapp

If it replies with package:com.example.myfirstapp - then you could check the installed package location with:

adb shell pm path com.example.myfirstapp
like image 57
Alex P. Avatar answered Oct 26 '22 14:10

Alex P.