Ola
Thanks for RC2...
The only error that makes my app not to run when DeadCode is removed is...
I managed to trace this back to
which on debug mode is
And the UOENowTarget class contains
Sub Class_Globals
Public self As String = "_self"
Public blank As String = "_blank"
Public parent As String = "_parent"
Public top As String = "_top"
End Sub
'Initializes the object. You can add parameters to this method if needed.
Public Sub Initialize
End Sub
I think its my variable name because it has the word Target, will change it and see what happens.
PS: You might want for the developers to get an obfuscation report / file of renamed variables so that they can trace issues back easily. #JustAThought.
Thanks for RC2...
The only error that makes my app not to run when DeadCode is removed is...
B4X:
Uncaught (in promise) TypeError: Cannot read property '_B75d' of undefined
I managed to trace this back to
B4X:
Public EnumTarget As UOENowTarget
B4X:
_B._enumtarget; /* NOT SUPPORTED */
And the UOENowTarget class contains
Sub Class_Globals
Public self As String = "_self"
Public blank As String = "_blank"
Public parent As String = "_parent"
Public top As String = "_top"
End Sub
'Initializes the object. You can add parameters to this method if needed.
Public Sub Initialize
End Sub
I think its my variable name because it has the word Target, will change it and see what happens.
PS: You might want for the developers to get an obfuscation report / file of renamed variables so that they can trace issues back easily. #JustAThought.