Hi all!
This code ...
... always logs the relevant packages in this format:
packageName/activity
Is there any other method or function that provides only the packageName?
Thx in advance for every answer
This code ...
B4X:
Dim i As Intent
i.Initialize("android.intent.action.SEND", "")
i.SetType("application/zip")
Dim installedPackages As List = pm.QueryIntentActivities(i)
If (installedPackages.Size > 0) Then
For Each package As String In installedPackages
Log(package)
Next
End If
... always logs the relevant packages in this format:
packageName/activity
Is there any other method or function that provides only the packageName?
Thx in advance for every answer