Class for retrieving various kinds of information related to the application packages that are currently installed on the device.
I am trying to make a program that shows all the active applications. I searched everywhere but could only find …
android android-package-managersI am using the following piece of code at the moment: List<PackageInfo> packs = getPackageManager().getInstalledPackages(0); but it …
android android-package-managers android-applicationinfo installed-applicationsI am developing a package manager application which shows checkboxes to turn off notifications from different applications installed on the …
android android-notifications android-package-managersIf I call PackageManager pm = getPackageManager () ; List<PackageInfo> pis = pm.getInstalledPackages (PackageManager.GET_PROVIDERS) ; I get a list …
android installed-applications android-package-managersI have been trying to install other apps from my app. I have downloaded the .apk from the server and …
android android-intent installation apk android-package-managersI have a application which uses camera functionality in it but part of its functionality can also run without camera …
android android-camera android-package-managersI set my activity as a default launcher to intercept home button clicks like so: <activity android:name=".ExampleActivity" …
android android-intent android-package-managers android-launcherI am building an app that auto sorts installed apps and allows the user to launch those apps. I just …
android android-intent android-camera android-package-managers android-applicationinfoI have obtained a list of installed app using this code: public List<ResolveInfo>() { PackageManager pm=getPackageManager(); Intent …
android android-package-managersI am trying to get the default/preferred application for a given Intent. For example, when the user installs a …
android android-package-managers