installed-applications

How to launch applications from another application?

我们两清 提交于 2019-12-13 01:15:54
问题 I want to launch all installed applications from my application.Here i get all installed applications List<ApplicationInfo> applicationInfoList = packageManager.getInstalledApplications(PackageManager.GET_ACTIVITIES | PackageManager.GET_META_DATA); if(applicationInfoList != null && !applicationInfoList.isEmpty()){ Collections.sort(applicationInfoList, new ApplicationInfo.DisplayNameComparator( packageManager)); for (ApplicationInfo applicationInfo : applicationInfoList) { Intent intent =

Detecting programmatically whether an app is installed on Android

本秂侑毒 提交于 2019-12-11 02:08:14
问题 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 sharedApplication] canOpenUrl:@"myapp://"]; is there an equivalent in Android? (easy way) I'd like to check using url scheme. I know how to check using package name, but I do not know how to get the url scheme from PackageInfo as well... (harder

How to get list of ALL apps (including System Apps)?

烈酒焚心 提交于 2019-12-06 11:43:33
问题 I am doing the following to get the list of apps and I am only getting apps that were installed but not ALL apps, including system apps. I have tried the following: packageList1 = getPackageManager().getInstalledPackages(PackageManager.GET_META_DATA); and this: packageList1 = getPackageManager().getInstalledPackages(0); For both cases, I am getting the same list of apps that I have installed on the phone. 回答1: You are already getting a list of all installed applications including the system

Scan installed software on Windows

﹥>﹥吖頭↗ 提交于 2019-12-06 06:46:18
Is there any way of scanning and querying installed software on Windows faster than using WMI ? If you have enough permissions, you may scan the local registry. Pertinent entries should be: HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall An example follows: [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{7BF61FA9-BDFB-4563-98AD-FCB0DA28CCC7}] "Comments"="" "DisplayVersion"="8.0.1557" "InstallDate

How to get list of ALL apps (including System Apps)?

只愿长相守 提交于 2019-12-04 17:22:17
I am doing the following to get the list of apps and I am only getting apps that were installed but not ALL apps, including system apps. I have tried the following: packageList1 = getPackageManager().getInstalledPackages(PackageManager.GET_META_DATA); and this: packageList1 = getPackageManager().getInstalledPackages(0); For both cases, I am getting the same list of apps that I have installed on the phone. You are already getting a list of all installed applications including the system apps by calling this: List<ApplicationInfo> apps = getPackageManager().getInstalledPackages(0); Those with

Get installed software list using C#

落爺英雄遲暮 提交于 2019-12-04 12:45:44
问题 I try to get a list of installed application keys: RegistryKey RegKeyUninstallList = Registry.LocalMachine; string strUninstallList = @"SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall"; string[] test = RegKeyUninstallList.OpenSubKey(strUninstallList).GetSubKeyNames(); I get only the Keys from: HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall But I need also the Keys from: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall My program

how to get the battery usage details of installed apps?

无人久伴 提交于 2019-12-03 23:03:37
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 get the battery usage details of apps installed on phone, including that of the screen, as shown in the image below? Sorry to disappoint you, but Android's power usage APIs are not public . so there is no official way to get what you want. But you can use reflection to access some private members and methods and make use of them. You can also check

Get Application developer name [closed]

泄露秘密 提交于 2019-12-03 20:45:46
Closed . This question needs to be more focused. It is not currently accepting answers. Learn more . Want to improve this question? Update the question so it focuses on one problem only by editing this post . Closed 5 years ago . I want to get the application developer name. Somebody please show me how I can get this. i tried but only get with installed applications and their icon . i want to display developer name to get a list of the installed applications installed do the following : final Intent mainIntent = new Intent(Intent.ACTION_MAIN, null); mainIntent.addCategory(Intent.CATEGORY

Is Kiln for your server being retired? [closed]

ⅰ亾dé卋堺 提交于 2019-12-03 01:59:51
Closed. This question is off-topic. It is not currently accepting answers. Learn more . Want to improve this question? Update the question so it's on-topic for Stack Overflow. 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 "Kiln on your Server" pricing to see what was included. I can't even find pricing for the licensing anymore. Is the hosted version now the only Kiln available? I submitted the

Adobe AIR - listing installed applications

戏子无情 提交于 2019-12-01 00:47:50
Is it possible to get list of installed AIR applications, optionally only by one vendor? Or, is it possible to check, whether is one application (checked by name/some id/vendor) installed (this method would be preferred) Thank you. You can do this: private function loadAIR():void { var loader:Loader = new Loader(); var loaderContext:LoaderContext = new LoaderContext(); loaderContext.applicationDomain = ApplicationDomain.currentDomain; loader.contentLoaderInfo.addEventListener(Event.INIT, onInit); loader.load(new URLRequest("http://airdownload.adobe.com/air/browserapi/air.swf"), loaderContext);