Android Question Installed applications package names

SohailNasir

Member
Licensed User
Longtime User
Hi,
In order to find out the actual package name of application installed on android phone i found this software "Package Name Viewer" very useful. It is available for free download on Play Store .
One example of package name is given below,

Sub Button1_Click
Try
Dim Intent1 As Intent
Dim pm As PackageManager
Intent1 = pm.GetApplicationIntent ("com.android.gallery3d")

StartActivity (Intent1)
Catch
ToastMessageShow ("Failed to launch app! Is it installed?", True)
End Try

Here" com.android.gallery3d" is the actual name of Gallery (the picture viewer installed on my phone)

I am thankful to the person who developed the code listed above though i forgot the page from where i copied and tested this code. The only missing thing was the actual package name which i got with the help of software mentioned above.
 
Cookies are required to use this site. You must accept them to continue using the site. Learn more…