Apr 19, 2018 Replies: 1 As stated on THIS thread, the current SDK Manager (3.20) will display an error, to fix it, you will have to recompile it using the source code posted HERE and modify line 158 From: B4X: If s.StartsWith("9") Then To: B4X: If s.StartsWith("10") Then That seems to do the trick. Last edited: Apr 19, 2018 Click to expand...
As stated on THIS thread, the current SDK Manager (3.20) will display an error, to fix it, you will have to recompile it using the source code posted HERE and modify line 158 From: B4X: If s.StartsWith("9") Then To: B4X: If s.StartsWith("10") Then That seems to do the trick.
Erel B4X founder Staff member Licensed User Longtime User Apr 19, 2018 #2 A bit better: B4X: If s.StartsWith("9") or s.StartsWith("10") Then