Top "Android-applicationinfo" questions

ApplicationInfo class contains information about an Android application, corresponding to the information in the application manifest.

Add the loading screen in starting of the android application

My app is loading the start page in 10 seconds. In that time of 10 sec android screen is blank. In that …

android android-applicationinfo
What is use of android:supportsRtl="true" in AndroidManifest xml file

Whenever I created new project in android studio, I got android:supportsRtl="true" in my app AndroidManifest File. <application …

android android-studio android-manifest android-applicationinfo
Android Studio - Company Domain Name

In Android Studio when you create a new project, you are prompted to put down a domain name. I already …

android android-studio android-applicationinfo
How can I find if a particular package exists on my Android device?

How can I find whether a particular package or application, say: com.android.abc, exists on my Android device?

android android-applicationinfo
How do I check if an app is a non-system app in Android?

I am getting a list of ApplicationInfo Objects with packageManager.getInstalledApplications(0) and attempting to categorize them by whether or not …

android system uid android-applicationinfo
What is contained in "./META-INF/CERT.RSA" file for an Android app?

I am new to cryptography certificate and am trying to figure out the components of "CERT.RSA" file under "./META-INF" …

digital-signature digital-certificate android android-applicationinfo
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<PackageInfo> packs = getPackageManager().getInstalledPackages(0); but it …

android android-package-managers android-applicationinfo installed-applications
How can I configure Launcher activity programmatically in android?

I am working on an app with two activities : LoginActivity and MainActivity. When the user first opens the app he …

android android-activity android-applicationinfo
Android metadata from manifest returning null

I have a class with one method that tries to retrieve meta-data from the manifest. Everything works fine except that …

android metadata android-applicationinfo
Retrieving application information from package manager

Is there any way to pull an ApplicationInfo object from the PackageManager? I have tried many different types of methods …

android launcher android-applicationinfo