Class for retrieving various kinds of information related to the application packages that are currently installed on the device. You can find this class through getPackageManager().

learn more… | top users | synonyms

0
votes
0answers
19 views

Saving select Icons return from Package Manager

Im trying to add my own spin on CommonWare's project (Launchalot) and add a feature to save the icon's that are returned from package manager. I've added a checkbox, and a menu item i intent to ...
0
votes
1answer
11 views

PackageManager in Android giving duplicates

I might be a novice programmer but PackageManager is complicated ! What I am going to show you makes no sense: I am able to pull out the names of applications on the device however if I try to save ...
0
votes
1answer
13 views

Get list of AppWidgetProviders in my app's package

Is there an easy way to get a list of AppWidgetProviders that are in my app's package? I want to iterate over them and inspect some data from their corresponding AppWidgetProviderInfo objects at ...
1
vote
1answer
210 views

Turn off notifications of an app programatically on Android

I am developing a package manager application which shows checkboxes to turn off notifications from different applications installed on the Android device. Since Android 4.1, users can turn off ...
1
vote
1answer
33 views

Enable or disable registered receivers

I have problems providing correct attributes to "setComponentEnabledSetting()" - I get IllegalAttributeException saying that .class can't be find, or doesn't exist. Receivers are declared in ...
0
votes
1answer
32 views

How to compare certificates of two apps

Let say that I have different certificates A-certificate and B-certificate, and I sign 3 apps (one with A , and two with B) How can I check form application signed with certificate B that the other ...
3
votes
2answers
1k views

Getting error of parsing the package during updating my new version of apk

Android Experts, I have installed signed apk (version 1.6) and on my server I've uploaded apk( version 1.7). Now I am facing problem during Update my apk from server.. I also got Dialog box for ...
0
votes
0answers
104 views

Open built-in browser through intent and PackageManager

I want to know if I can open a share page in the browser instead of the Facebook app. If the Facebook app is present then share something by opening the Facebook app. Otherwise if it is not installed ...
0
votes
1answer
28 views

Where is implementation of 'hasSystemFeature()' method?

I'd like to see implementation of 'hasSystemFeature()' method. Please inform me where the implementation is.
0
votes
0answers
84 views

Is it guaranteed that PackageManager.getInstallerPackageName() always returns a not `null` string?

Is it guaranteed that PackageManager.getInstallerPackageName() always returns a not null string? PackageManager myapp= this.getPackageManager(); String installer = ...
-1
votes
2answers
273 views

How to freeze applications on rooted android device

How can I Freeze/Unfreeze applications on the rooted device like Titanium Backup app so that i make my app non-accessable from a rooted device. Any method to trace whether the device is rooted or not? ...
1
vote
1answer
111 views

Unpredictable behaviour caused by PackageManager.DONT_KILL_APP

The API docs of PackageManager.DONT_KILL_APP say: Be careful when you set this since changing component states can make the containing application's behavior unpredictable. Unfortunately they ...
0
votes
1answer
34 views

Got error while trying to get running app icon from ActivityManager.RunningTaskInfo

i'm trying to making a app that shows running app icon in custom listview, and switch to corresponding app when click icon. i think i should use "ActivityManager.RunningTaskinfo", "PackageManager" and ...
1
vote
1answer
103 views

How can i show running app icon in listview using ActivityManager and PackageManager?

I'm trying to making a app that.. -shows currently running app icons in listview -click item on listview that shows running app icons to switch But i don't know how to do these, and i already ...
3
votes
1answer
72 views

Does every android phone has streetview application by default?

Does every android phone with 2.3 and above has streetview by default or one have to download the streetview and install it. The reason I am asking is that I am using streetview in my application and ...
0
votes
1answer
103 views

Get Application Install time in Android 2.2?

I am trying to get the install time of all the applications installed in my Android Phone with OS 2.2, but I am not getting exactly the time they were installed, instead I am getting today's date and ...
0
votes
2answers
759 views

Android get a list of all installed apps

I have obtained a list of installed app using this code: public List<ResolveInfo>() { PackageManager pm=getPackageManager(); Intent main=new Intent(Intent.ACTION_MAIN, null); ...
2
votes
1answer
61 views

How to construct package URI using PackageManager in android

I need to construct PackageUri in order to uninstall package using action.delete. I obtained PackageInfo object using PackageMananger. Is there any way to construct PackageUri using PackageInfo? ...
0
votes
1answer
88 views

Determine the intent filter for a receiver from the package info

I need to retrieve the action name for the intent filters against the receiver from a particular package, which got installed. I am receiving the broadcast intent for ...
2
votes
2answers
88 views

Android - Get List of Apps in Debug mode

I am trying to develop an android application where i have the following requirement. Is there any way through code, i can get the list of apps installed on devices in debug mode. Thanks in advance. ...
2
votes
1answer
106 views

Android : what is canonical package name?

Android's PackageManager class has currentToCanonicalPackageNames() and canonicalToCurrentPackageNames() methods. What exactly is canonical package name? Where is it used (what's its purpose)? When ...
1
vote
2answers
122 views

Duplicates When Showing Installed Applications in Android

First, I would like to say this is my first post on StackOverflow, so I hope I am doing this right. I am attempting to make an Android App that displays all of a user's apps. The issue that I'm ...
0
votes
0answers
189 views

Android ADB Shell doesn't enable packages

I ask to pm (package manager) to enable some package, but it doesn't enable and shows the message "new state: disabled" shell@android:/ $ pm enable my.app.com Package my.app.com new state: ...
0
votes
0answers
45 views

Strange App Names seem to cause Android application to report zero apps installed

I have an app to list all the apps installed in an android device and user can launch the apps from there.It was worked well in emulator and device. But when there are apps with special characters in ...
0
votes
1answer
38 views

Android: Can I know if an application is running using AlarmMager

Is there any possible solution of knowing that some application is running in foreground using AlarmManager ? Basically my question is that there is an argument importance associated with each ...
0
votes
0answers
50 views

Check presence of an application on Android device

Actually, I am putting a check on my application that whether one particular application is present or not in device if it is present than only my application will launch otherwise it will give a ...
0
votes
1answer
164 views

How to read PDF file in android and how can i read the indexes in pdf file in android?

I am going to develop an android application like foxit reader .In my application i need to find the indexes in pdf file ..please help me how can i found the indexes in pdf file programmatic ally ...
0
votes
2answers
161 views

how can i get the package name of 2nd top activity which is in other package?

here in my case, a app invokes a service and the service will inturn starts an activity. My problem here is to get the app package which invokes that service. Can anybody help me to solve this ?
1
vote
2answers
38 views

how can i get to know which app package is startig my activity?

there are many applications which invokes my application in system> I want to know which app invoked my app or activity or service presently ? Can anybody help me to solve this ?
0
votes
2answers
50 views

how can i get to know which application package is invoking the softkeyboard?

friends, I need to develop a keyboard which should have an icon of the app which invokes the softkeyboard. I found a link which might be useful is here How does an Android app load a keyboard? So ...
2
votes
3answers
75 views

How to launch an app from another app

in my app i have to launch another app, only if it is not yet launched. To launch an app what i do is: PackageManager pm = getPackageManager(); Intent intent = ...
4
votes
1answer
355 views

Can PackageManager.getInstallerPackageName() tell me that my app was installed from Amazon app store?

I plan on publishing my app on Amazon app store as well as Google Play, and have some things in my app that need to behave slightly different depending on whether the app was installed from Amazon app ...
8
votes
2answers
183 views

Android ClassCastException with blank type

I am getting a strange behavior, and I guess I'm more looking for an explanation than a solution (although solution is welcome as well!). Here's the code: PackageManager pm = ...
1
vote
1answer
248 views

detecting default launcher, android

Is it possible to detect what the default launcher app is on a device from within your app? I am poking around with PackageManager but don't seem to see what i am looking for, i would like my app of ...
1
vote
2answers
145 views

Download Apk inside my apk without user interaction

I made an android application inside that i have put an apk file in "res/raw" folder now what i want when i am installing my apk the apk inside the raw folder also install without clicking once more ...
0
votes
1answer
536 views

Enable BroadcastReceiver of other application using PackageManager.setComponentEnabledSetting()

I want to start the BroadcastReceiver of other application installed on my android device from my app. Here is the code ComponentName componentName = new ...
0
votes
3answers
229 views

Checking if Facebook is installed on Android

How can I check that? Do i have to use PackageManager? Thank you :D
4
votes
4answers
2k views

Remove Activity as Default Launcher

I set my activity as a default launcher to intercept home button clicks like so: <activity android:name=".ExampleActivity" android:label="@string/app_name"> <intent-filter> ...
1
vote
2answers
455 views

Get Recent and Running application list not processes

I tried a lot to get the list of recent and running applications(not processes) but couldn't get it. I went through all the stackoverflow questions regarding this but the only answer i got about the ...
1
vote
1answer
71 views

Can I install an app from an other app and then launch its intent immediately when opening it?

Background: I have an app which needs to use an intent from an other app. If this other app is not installed when its intent is needed, I would like to offer it for download and install. Question: ...
0
votes
0answers
84 views

PackageManager getApplicationIcon Blurred Images

Whenever I pull all icons using PackageManager's getApplicationIcon(PackageName) I get an icon which is blurred at even a 70x70 ImageView. Is there anyway to get a bigger, clearer icon of the ...
0
votes
1answer
274 views

Android - opencv manager & OpenCV binary package installed or not

How can I check(Android code) whether the opencv manager & appropriate OpenCV binary packages are already installed in the android device or not?
0
votes
1answer
225 views

How can I install a “bundle” of applications (apk's) on device with prompting user only once

My application is based on multiple applications (each one has different apk signatures). I want to install one apk and after one confirmation the device should install all applications in the ...
0
votes
0answers
158 views

Parsing Error: There is problm while parsing the package, Avoidable or not

I want to give a custome message like: Upgrade your Android OS to Gingerbread 2.3.3 Rather than Parsing Error, There is a problem parsing the package Is there a way to check the device ...
1
vote
2answers
67 views

How to display a menu option only when the apk related to that is installed on the phone

Suppose I have a menu option called 'Display' and my application com.android.display is performing the task of displaying the picture.Now if the apk com.android.display is not installed on the device, ...
1
vote
1answer
202 views

Two Packages in Same APK possible?

I am trying to implement this great technique of sharing preferences across two different applications while still MODE_PRIVATE. My problem is that the first application cannot assume that the first ...
3
votes
1answer
462 views

How to detect new apps in an Android device

I want to detect when the user installs or deletes an app, and I didn't find a BroadcastReceiver that does this. In my app, I get the information about the installed apps with the class ...
2
votes
2answers
697 views

Installing an Android apk programmatically

I am trying to install APKs from our file server, and it needs to be done silently without the user being able to choose whether or not it's installed or accept permission settings/changes. This is a ...
9
votes
2answers
765 views

Difference between ApplicationInfo and PackageInfo?

I have several general question about ApplicationInfo and PackageInfo classes. Here they are: Can someone describe the difference between ApplicationInfo and PackageInfo? How do they correlate with ...
0
votes
1answer
446 views

how to get the pid of a package in android

I have done the coding on getting all the installed packages in the android system! now what I want is to get the pid of that package since I want the current resource usage of the package! I dont ...

1 2