Android Question In what library is Application?

DonManfred

Expert
Licensed User
Longtime User
What exactly is the question?

Application is a custom type. See it declaration in the thread you linked.

Add this to the main activity. Depending on where you want to use it (in the main activity or global in your app) you need to place the declaration in sub Globals or sub Process_Globals.

B4X:
Type Application (PackageName As String, ApplicationName As String, Icon As BitmapDrawable)

https://www.b4x.com/android/forum/pages/results/?query=type
 
Last edited:
Upvote 0
Top