android-applicationinfo Questions

10

Solved

How can I find whether a particular package or application, say: com.android.abc, exists on my Android device?
Marlinemarlinespike asked 20/7, 2011 at 8:7

10

Solved

I am using the following piece of code at the moment: List<PackageInfo> packs = getPackageManager().getInstalledPackages(0); but it returns Apps that have been installed by the both device...

14

Solved

I am getting a list of ApplicationInfo Objects with packageManager.getInstalledApplications(0) and attempting to categorize them by whether or not they are a system application. For a while I have...
Beefburger asked 9/1, 2012 at 6:6

4

Solved

Whenever I created new project in android studio, I got android:supportsRtl="true" in my app AndroidManifest File. <application android:allowBackup="true" android:icon="@mipmap/ic_launcher" ...
Monosyllable asked 9/12, 2015 at 12:45

2

Solved

Background You can get a list of installed apps using PackageManager.getInstalledPackages. And, you can reach the app-info screen of each app via : val intent = Intent(Settings.ACTION_APPLICATION_D...
Chalybite asked 25/9, 2020 at 11:42

2

Solved

I have a class with one method that tries to retrieve meta-data from the manifest. Everything works fine except that the bundle that I create from the application info returns null values Here's t...
Presbyter asked 5/3, 2014 at 22:6

4

Solved

I am new to cryptography certificate and am trying to figure out the components of "CERT.RSA" file under "./META-INF" folder for an Android application. To my understanding, "CERT.RSA" is used to ...

2

Solved

I have made a small method to display the installed application name in android. But when i give "name" attribute its showing exception error. And when i give "packageName" the method executes perf...
Canova asked 27/7, 2011 at 0:33

7

Solved

My app is loading the start page in 10 seconds. In that time of 10 sec android screen is blank. In that time I want to add the loading screen. How to add it? And tell me in app how to know the sta...
Mizell asked 28/6, 2013 at 4:33

6

Solved

I am working on an app with two activities : LoginActivity and MainActivity. When the user first opens the app he will login and his credentials (username and token) are saved in Preferences. Now...
Rosenblatt asked 8/4, 2015 at 14:17

1

Solved

As per the new Android doc, In order to collect certain data, I need to request for permission. So I am doing this : @Override public void onCreate() { super.onCreate(); ... ... if (Perm...

1

Solved

In Android Studio when you create a new project, you are prompted to put down a domain name. I already know that you can make one up but what if you want to distribute your app on the Google Play ...
Plata asked 16/5, 2015 at 1:34

2

Solved

Is it possible to check whether an application was installed via Android market (Google Play Store) or by other means? Basically what I want to know is whether an application is genuine or not. If...
Mercerize asked 31/8, 2012 at 8:42

2

How do I do remote API call in Android Apps using Phonegap???
Penick asked 27/2, 2012 at 11:52
1

© 2022 - 2024 — McMap. All rights reserved.