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...
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...
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?
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.