Android Question InputDialog not working with release obfuscated

bjf

Member
Licensed User
Longtime User
Hello.

I am using the "InputTemplate" Module for simple user inputs when needed.

I have just noticed that the sub handlng then result of the input does not get executed if you use "release ubfuscated".
It works in debug and release mode.

B4X:
Sub askForPno   
It.Initialize(Me,Activity,"   Project No:","GetPno")
It.Show
End Sub

Sub GetPno(no As Object)
    Log("running")
    ForProjectNo=no   
    If ForProjectNo <>"" Then
        GetProjectStatus
    Else
        Msgbox("Please provide Project No","Error!")
        askForPno
    End If       
End Sub

Any suggestions?
 
Cookies are required to use this site. You must accept them to continue using the site. Learn more…