Other B4A v8.30 has been released

Erel

B4X founder
Staff member
Licensed User
Longtime User
I'm happy to release B4A v8.30. This update includes many improvements to the debugger, an important change to the way the starter service behaves on Android 8+ as well as other improvements.

New features and improvements:
  • Resumable subs in debug mode are optimized in the same way other subs are optimized. You can see the difference in this video:
    (direct link: https://vimeo.com/266683414)

  • Starter service is never destroyed until the process is killed - if you carefully read the automatic foreground notifications tutorial then you should be aware to a significant behavioral change in Android 8+. The OS kills services while the app is in the background. In previous versions the OS never killed specific services (only the complete process). This change made it much more difficult to work with the starter service as you could no longer assume that the starter service is running.
    Starting from B4A v8.3 the starter service will never be paused until the process is killed. Internally it switches from the service context to the application context.
  • Several other important debugger optimizations.
  • Bit.ArrayCopy method. Same as ByteConverter.ArrayCopy.
  • New File methods: CopyAsync, Copy2Async, ReadBytes, WriteBytes and ListFilesAsync.
  • Support for Java 8 jars and AARs.
  • Ctrl + Click on class types and custom types.
  • Autocomplete improvements.
  • Autocomplete in CallSub methods:

    test-gif.68252


  • B4A Sdk Manager v3.27 - Supports Java 10.
  • Files can be added to groups directly.
  • For loops optimization (in release mode).
  • BitmapCreator v3.60 is included as an internal library.
  • xCustomListView v1.63 is included as an internal library.
  • XUI v1.70 is included as an internal library. This is a large update to XUI library with support for text measurements and other features.

    SS-2018-05-09_13.05.38.png

  • Phone.ShellAsync - Asynchronous version of Phone.Shell.
  • Bug fixes and other minor improvements.
Developers who are eligible for a free upgrade will receive an email with upgrade instructions.
Other developers will receive an email with a renewal offer.
 
Last edited:

pazzokli

Active Member
Licensed User
Longtime User
You need to update firebase-messaging. Open B4A Sdk Manager and update all recommended items.
Note that there is an issue with the latest version of firebase-auth. For now it is better not to update firebase-auth if you are using FirebaseAuth.
Hi, I did it!
What about attached error?

[edit] solved with API 28!!
 

Attachments

  • build error.JPG
    build error.JPG
    66.5 KB · Views: 424
Last edited:
Upvote 0

ilpesce

Member
Licensed User
Longtime User
Thank you Erel, Great work.
I noticed a strange thing compiling with this new version.
while use B4A v8.30 = Convert byte code - optimized dex. (14.05s)
instead while I use B4A v8.00 = Convert byte code - optimized dex. (4.93s)
is it possible to eliminate this slowdown?
Greetings and thanks again for your excellent work
 
Upvote 0
Top