Use this tag for questions related to Installed Applications, in an iPhone for example.
Questions tagged [installed-applications]
102 questions
28
votes
8 answers
ImportError : cannot import name 'ugettext_lazy'
I'm trying to install suit, I entered this command :
pip install https://github.com/darklow/django-suit/tarball/v2
and wrote this code :
from suit.apps import DjangoSuitConfig
class SuitConfig(DjangoSuitConfig) :
layout = 'horizontal'
And added…
user17794736
17
votes
3 answers
how to get the battery usage details of installed apps?
Using this code, I can find the battery level of the phone:
int level = battery.getIntExtra(BatteryManager.EXTRA_LEVEL, -1);
int scale = battery.getIntExtra(BatteryManager.EXTRA_SCALE, -1);
float percent = (level / (float)scale) * 100;
But how do I…

Edgar prabhu
- 563
- 3
- 21
17
votes
1 answer
Is Kiln for your server being retired?
I was looking into the Kiln Harmony feature and saw that FogCreek only advertises it in On Demand. In the "How do you get it" section they don't even mention that it is not available for the On Premise version.
So I went looking for details of the…

rustyspark
- 195
- 1
- 9
16
votes
5 answers
Detecting programmatically whether an app is installed on iPhone
I am in this situation where I have to display a button which says "Open myApp" (if myApp is installed on the device) or it says "Download myApp" (if myApp is not installed on the device) in an iphone app. To do this, I need to detect whether an app…

Amarsh
- 11,214
- 18
- 53
- 78
14
votes
10 answers
How to get the list of apps that have been installed by a user on an Android device?
I am using the following piece of code at the moment:
List packs = getPackageManager().getInstalledPackages(0);
but it returns Apps that have been installed by the both device manufacturer and me. How to limit it so that only the apps…

Raunak
- 6,427
- 9
- 40
- 52
12
votes
2 answers
Get all installed apps in android 11 (API 30) , how to get all other apps installed in android 11?
How can we get all installed applications in android 11? for Android 10 it is working fine but when I updated to android 11 then all of them are gone.

Ali Imran
- 8,927
- 3
- 39
- 50
11
votes
4 answers
Registry path to find ALL the installed applications
I have a fast question:
IS there any other places in the registry but this:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall
where I can…

user1618465
- 1,813
- 2
- 32
- 58
10
votes
6 answers
Get installed software list using C#
I try to get a list of installed application keys:
RegistryKey RegKeyUninstallList = Registry.LocalMachine;
string strUninstallList = @"SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall";
string[] test =…

user3523585
- 157
- 1
- 2
- 7
10
votes
1 answer
Solving "Package manager has died" RuntimeException
I have an Android app that should list all installed apps on a device (no root). I have tried both getInstalledApplications(0) and getInstalledPackages(0) methods of PackageManager, but on some devices, which do apparently have too many apps…

Stan
- 8,683
- 9
- 58
- 102
7
votes
0 answers
OAuth 2 Installed application client secret considerations(google api)
I'm developing an installed application that accesses the google-api via OAuth2.
There some security problems I currently know no real solution for.
Doesn't matter how hard I obfuscate my client-secret a determined person can retrieve and use it.…

Krampenschiesser
- 135
- 2
- 6
6
votes
0 answers
Get Only Installed Apps in the List ( Not the system apps )
I was implementing code to show only the user-installed apps (like facebook) and some updated_system_apps (like Gmail,youtube etc.) using the below code. But It is showing some other apps too. So my question is what is the way to remove these types…

Mayank Doda
- 117
- 2
- 11
6
votes
2 answers
Detecting programmatically whether an app is installed on Android
I have registered a url scheme for my Android app (let's say myapp://host).
On my other app, I can launch that app by using Intent, but how do I check whether the first app is installed without launching it?
in iOS, it is as easy as
[[UIApplication…

Zennichimaro
- 5,236
- 6
- 54
- 78
5
votes
1 answer
getPackageManager ().getInstalledPackages (PackageManager.GET_ACTIVITIES) returns null
If I call
PackageManager pm = getPackageManager () ;
List pis = pm.getInstalledPackages (PackageManager.GET_PROVIDERS) ;
I get a list of installed packages, including any provivders they declare (i.e, with pis[i].providers…

Paul Biron
- 161
- 1
- 3
- 7
5
votes
2 answers
Installed Programs/Computer Info for Web Application
I'm currently developing a support system for a university. The system is written in PHP and I would like to be able to get a current list of software and basic computer information on a computer. Basically when one of the faculty or staff creates a…

Ryan Gyure
- 103
- 6
5
votes
2 answers
How to programmatically retrieve usage statistics of installed apps?
An Android noobie question. Is it possible for one app to (programmatically) determine, for each app installed on a user's device:
number of times each app was started (over a given time window),
how long it was opened for, and
how much interaction…

Peyman
- 1,058
- 1
- 14
- 27