I use the below code to display the package name and the label name, but I would like to also show the corresponding apk file name. Is there an easy way to extract it or perhaps use javaobject or reflection?
Thank you
B4X:
Dim pm As PackageManager 'need phone library
For Each package As String In pm.GetInstalledPackages
If package.Contains("div")Then
Log(pm.GetApplicationLabel(package))
Log(package)
Log("apk file name:") 'Need to extract the corresponding apk file name here
Log("-----------")
End If
Next