I have to call an Android app from my application. But I don't know package name of the application, I want to call that application via package name by using adb command
How to know other installed app package name of an Android Phone
1.9k views Asked by Mohd Qasim At
2
There are 2 answers
Related Questions in ANDROID
- Delay in loading Html Page(WebView) from assets folder in real android device
- MPAndroidChart method setWordWrapEnabled() not found
- Designing a 'new post' android activity
- Android :EditText inside ListView always update first item in the listview
- Android: Transferring Data via ContentIntent
- Wrong xml being inflated android
- AsyncTask Class
- Unable to receive extras in Android Intent
- Website zoomed out on Android default browser
- Square FloatingActionButton with Android Design Library
Related Questions in ADB
- how to debug on the smartphone Wiko (KITE)
- Error when trying to use Android systrace.py on Linux Ubuntu
- How can I add an existing google account on an Android device from command line?
- captured screen video from ADB screenrecord results in a black screen
- How to disable battery charging during ADB connection?
- Android device adb another device
- How to call getPackageManager() from Android command-line executable
- ADB and Genymotion error: "adb server is out of date. killing... cannot bind 'tcp:5037' ADB server didn't ACK"
- ADB issues on Galaxy S3 and Windows 7 - installed but not working?
- aggressive adware irremovable apk on android
Related Questions in ONACTIVITYRESULT
- Start onActivityResult not being called from menu option
- android unable to resume activity on result using camera
- onActivityResult not being called when launching another app
- How to store string array (which is converted from array list <string> to string array) in shared preference.?
- Custom RecyclerAdapter and startActivityForResult
- OnSaveInstanceState/OnRestoreInstanceState with java collections
- onActivityResult is not called even though setResult is called
- List set in onActivityResult with data not sticking
- MediaStore.EXTRA_OUTPUT always contains null in Landscape mode
- Sum up value from OnActivityResult
Related Questions in STARTACTIVITYFORRESULT
- MediaStore.EXTRA_OUTPUT always contains null in Landscape mode
- Share Intent destroys Activity
- StartActivityForResult is not returning data to parent activity
- Upload files from phone intent
- Error with ArrayList<cart> items.add(new_item);
- Android Custom Keyboard with SpeechRecognizer
- onActivityResult isn't being triggered
- Why startActivityForResult not returning any result from AlarmClock.ACTION_SET_ALARM intent?
- Cannot edit more than 1 list item in my To Do app
- Using startActivityForResult, how to get requestCode in child activity?
Related Questions in PACKAGE-NAME
- Custom implementation of specfic files using productFlavors in Android
- How can I give an Android app a Russian title
- Return of default sms app android isn't returning Messages
- Same app but different builds on separated Play Store accounts
- how to get package name of application being displayed on screen in a foreground service, android?
- Is there a way to change the package name after I uploaded my apk for closed testing?
- appPackageName returning null even when AppObject is not null
- How to get Running Applications package name in android programatically
- Samsung Store Apps Installer Package name
- How to know other installed app package name of an Android Phone
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Popular Tags
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Using ADB if the app is already installed
If the app is already installed on your Fire TV or other Android device, you can run a shell command that lists all the apps, with their package names, that are installed on your device. First, connect to your device via ADB, then run the command
adb shell pm list packages -3 -f. That will list all the apps you’ve personally installed on the device. If you want to see a list of all the apps, including system apps, then run the command adb shell pm list packages -f instead. Each line of the app list that is displayed will end in the app’s package name. For example, package:/data/app/org.xbmc.kodi-1/base.apk=org.xbmc.kodi is the line for Kodi. The package name should be descriptive enough for you to be able to pick out the app you’re looking for. thanks for Elias Saba see this tutorial for more clarity