First off, Margret, wonderful module... much props! (for those wondering, from here: http://www.b4x.com/forum/basic4android-getting-started-tutorials/10365-string-functions.html#post57671
On to my issue:
when trying to compile in obfuscate mode I get the following error:
and the cursor is floating in here:
I've looked thru the pitfalls with using obfuscation from http://www.b4x.com/forum/basic4android-getting-started-tutorials/13773-android-code-obfuscation.html#post77873, and don't see anything that stands out... no process globals that are in my Main (it compiles obfuscated before I add in the S.bas module) No CallSub anywhere that I can see.
Anybody else get this to compile in obfuscate mode? What's the trick?
Thanks much,
Ross
On to my issue:
when trying to compile in obfuscate mode I get the following error:
Compiling code. 0.03
ObfuscatorMap.txt file created in Objects folder.
Compiling layouts code. 0.00
Generating R file. 0.00
Compiling generated Java code. Error
B4A line: 148
Text = Trim(Text)
javac 1.6.0_31
src\b4a\pasagosoft\standardprostart\s.java:152: cannot find symbol
symbol : variable _ba
location: class b4a.pasagosoft.standardprostart.s
_text = _vvvvvvvv2(_ba,_text);
and the cursor is floating in here:
B4X:
Sub IsEmpty(Text As String) As Boolean
Text = Trim(Text)
If Text.Length < 1 Then
Return True
Else
Return False
End If
End Sub
I've looked thru the pitfalls with using obfuscation from http://www.b4x.com/forum/basic4android-getting-started-tutorials/13773-android-code-obfuscation.html#post77873, and don't see anything that stands out... no process globals that are in my Main (it compiles obfuscated before I add in the S.bas module) No CallSub anywhere that I can see.
Anybody else get this to compile in obfuscate mode? What's the trick?
Thanks much,
Ross