- make sure 'USB Debugging' is enabled in the android device
- if 'USB Debugging' is not enabled, follow below steps,
- go to 'Developer Options' in 'Android Settings'
- if 'Developer Options' is not available, follow below steps
- go to 'About section' in android settings
- then go to 'Software Details' section
- then find the 'Build Number' section
- click on it 6 or more times
- you may be prompted to enter your device 'Pin/Pattern' to confirm its the authenticated user
- once entered you have enabled 'Developer Options' in your android device
- scroll down to the section 'USB Debugging'
- then enable it by the switch option next to it
- connect you android device with a PC (using windows for this sample)
- there may be a prompt to allow 'USB Debugging', allow it
- open adb shell by following below steps
- open cmd
- navigate to adb installation folder, in windows usually its located in
C:\Users\#YourUserName#\AppData\Local\Android\Sdk\platform-tools
- then type
.\adb.exe shell
and hitEnter
- if adb is not installed, follow below steps,
- download it from
https://developer.android.com/studio/releases/platform-tools#downloads
- then install is with the default/needed location
- then type
pm install-existing #appPackageName#
- to find the right package name, follow below steps
- got to the android app listings sites like
https://www.apkmirror.com
- then find search for the app name
- then from the search details, click on the 'i' icon for the app details
- and then note down thw package name
- for example,
com.samsung.android.app.contacts
is the package name forSamsung Contacts App
- for example,
- then you should see a user message as
Package #appPackageName# installed for user: 0
- and that's it. you have successfully reinstalled the needed stock application
Created
January 7, 2023 15:27
-
-
Save Aravinth-Earth/354403ceab816ae8b51527a2dca50240 to your computer and use it in GitHub Desktop.
Reinstall the pre-installed app in android phone
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment