Star-Dust Expert Licensed User Longtime User May 29, 2018 #1 I'm happy to report that I found a bugs in the new version B4A 8.30 Beta. I attach the source code of my new library, which works perfectly and in release mode, but that reports an error in the version of Debug. Try it to believe ... Debug Release Attachments RadarProgress.zip 10.6 KB · Views: 247
I'm happy to report that I found a bugs in the new version B4A 8.30 Beta. I attach the source code of my new library, which works perfectly and in release mode, but that reports an error in the version of Debug. Try it to believe ... Debug Release
LucaMs Expert Licensed User Longtime User May 29, 2018 #2 I tested it only in debug mode (since in release mode it works for you) and for me it works without bugs (win 7). Last edited: May 30, 2018
I tested it only in debug mode (since in release mode it works for you) and for me it works without bugs (win 7).
f0raster0 Well-Known Member Licensed User Longtime User May 30, 2018 #3 it works fine here, in debug and release mode win7, android 4.3 Samsung S3 win7, android 5.12 (Model Number K107) Java\jdk1.8.0_151\bin\javac.exe Android\platforms\android-27\android.jar Last edited: May 30, 2018
it works fine here, in debug and release mode win7, android 4.3 Samsung S3 win7, android 5.12 (Model Number K107) Java\jdk1.8.0_151\bin\javac.exe Android\platforms\android-27\android.jar
asales Expert Licensed User Longtime User May 30, 2018 #4 No problem here (test in debug mode): - win10, Android 6.0, Moto G2 - win10, Android 7.0, Moto G5 Plus
No problem here (test in debug mode): - win10, Android 6.0, Moto G2 - win10, Android 7.0, Moto G5 Plus
Johan Hormaza Well-Known Member Licensed User Longtime User May 30, 2018 #5 Works perfectly in DEBUG mode
Johan Hormaza Well-Known Member Licensed User Longtime User May 30, 2018 #7 Star-Dust said: did you use all B4A 8.30 beta? Click to expand... Yes..
Erel B4X founder Staff member Licensed User Longtime User May 30, 2018 #8 Compiles fine here. Looks very nice! BTW, why aren't you setting targetSdkVersion to 26? I found the cause of this error. You are using the legacy debugger. This is a mistake. There is no good reason to use it. I will check why it fails.
Compiles fine here. Looks very nice! BTW, why aren't you setting targetSdkVersion to 26? I found the cause of this error. You are using the legacy debugger. This is a mistake. There is no good reason to use it. I will check why it fails.
Star-Dust Expert Licensed User Longtime User May 30, 2018 #9 It seems related to the Sleep command. If I remove it, it does not generate an error It tells me that it does not recognize the parent variable at this point B4X: public void _ball(int _value) throws Exception{ try { Debug.PushSubsStack("Ball (radarprogress) ","radarprogress",2,ba,parent,63); ResumableSub_Ball rsub = new ResumableSub_Ball(this,_value); rsub.resume(ba, null); } catch (Exception e) { throw Debug.ErrorCaught(e); } finally { Debug.PopSubsStack(); }}
It seems related to the Sleep command. If I remove it, it does not generate an error It tells me that it does not recognize the parent variable at this point B4X: public void _ball(int _value) throws Exception{ try { Debug.PushSubsStack("Ball (radarprogress) ","radarprogress",2,ba,parent,63); ResumableSub_Ball rsub = new ResumableSub_Ball(this,_value); rsub.resume(ba, null); } catch (Exception e) { throw Debug.ErrorCaught(e); } finally { Debug.PopSubsStack(); }}
Star-Dust Expert Licensed User Longtime User May 30, 2018 #10 Erel said: Compiles fine here. Looks very nice! BTW, why aren't you setting targetSdkVersion to 26? I found the cause of this error. You are using the legacy debugger. This is a mistake. There is no good reason to use it. I will check why it fails. Click to expand... I do not use it, I know that from problems, it may be that installing 8.30 has ambled my settings? Now it works properly, thanks Erel
Erel said: Compiles fine here. Looks very nice! BTW, why aren't you setting targetSdkVersion to 26? I found the cause of this error. You are using the legacy debugger. This is a mistake. There is no good reason to use it. I will check why it fails. Click to expand... I do not use it, I know that from problems, it may be that installing 8.30 has ambled my settings? Now it works properly, thanks Erel