Noob question: how can i save my app's package name in a string variable?
Noob question: how can i save my app's package name in a string variable?
Sub Process_Globals
Dim PName as String : PName = "com.myapp"
End Sub
Sub Fill_Label
myLabel.Text = PName
End Sub
Sub Fill_Label
myLabel.Text = Main.PName
End Sub
Thanks.yes i need to extract package name from manifest/apk running the code, i would like to protect my app from decompiling/recompiling and reskin