packagemanager

  1. Hosein_Mghr

    Android Question Automatic software launch

    I have a project that needs to enable auto-start by the user and check that auto-start is enabled Asking to enable autostart works fine but I can't figure out if autostart is enabled or not I used the following Sub to get auto launch permission : Sub CheckAppAutoStartSomeDevice Try...
  2. N

    Android Question Save Installed Apps Icon as File

    HI Guys How can I save installed apps icon as file ex : app..png or jpg This is my code for get installed apps package name and name : Private Sub ShowInstalledApps Dim pm As PackageManager 'phone library For Each pck As String In pm.GetInstalledPackages If...
  3. LucaMs

    Android Question How to get services infos

    From Stackoverflow: You can enumerate all packages and retrieve their services: List<PackageInfo> pkgs = getPackageManager().getInstalledPackages(PackageManager.GET_SERVICES); for(PackageInfo pkg : pkgs) { // You can now use pkg.services } How to do it with b4a?
Top