obfuscation error

Smee

Well-Known Member
Licensed User
Longtime User
When i compile a program with Release or debug and download some files it works ok. But when i compile with obfuscation I get an error

the error seems to be when calling a sub in another module

B4X:
   If CallingSub="Maintenance" Then
      CallSub(Maintenance,"DownLoadProgress")
   Else
      CallSub(Main,"DownLoadProgress")
   End If

it is one of those lines I suspect. The error says the name of the executing sub and "Sub downloadprogress was not found."

Is there a solution to this?
 

Smee

Well-Known Member
Licensed User
Longtime User
Thanks Erel,

I will wait for Version 2.02

Is there a listing of the version history changes anywhere?
 
Upvote 0

frapel

Active Member
Licensed User
Longtime User
obfuscation and Threading library

Thanks.

Yesterday I've got the same issue using Threading library.

I solved by changing sub name and adding an underscore in the name. It takes me many hours to reach the solution, so if you use that useful library be careful with obfuscation code.
 
Upvote 0
Top