Search found 167 matches

by tj1010
Mon Feb 26, 2024 2:23 am
Forum: Coding Questions
Topic: Gradle breaks Android building
Replies: 24
Views: 7670

Re: Gradle breaks Android building

Anyone else getting this again all the sudden? I put SB on a new machine and did what was in my last post and I'm getting the same error again...
by tj1010
Mon Feb 19, 2024 2:34 am
Forum: General Discussion
Topic: Note on Fred's offer to extend everyone's license for one year.
Replies: 7
Views: 5699

Re: Note on Fred's offer to extend everyone's license for one year.

I'm also a decades old PB user. I've been through every dev platform since Android 1.0, including all the ART and Darvik versions of Studio. I stick with SB for fast prototyping, and anything you can't do with built-in libs you can import Cordova libs for; even though most cordova libs are poorly do...
by tj1010
Mon Feb 19, 2024 2:22 am
Forum: General Discussion
Topic: Translating Regular Expression Errors
Replies: 2
Views: 218

Re: Translating Regular Expression Errors

I *assume* it's based on PCRE like PB. http://www.pcre.org/pcre.txt Regular Expression you won't master in a single sitting; too much variation and syntax. They just allow you to one-line pattern matching instead of scanning for matching in a simple binary or unicode character loop... Only solution ...
by tj1010
Sat Oct 21, 2023 6:44 pm
Forum: Showcase
Topic: pollinations.ai Image generator
Replies: 3
Views: 10322

Re: pollinations.ai Image generator

I'm surprised you found a trained A.I. that isn't behind some metered subscription HTTP API.

I've been waiting on a decently trained LSTM to come around subscription or not.. If you use one with a natural language A.I. like chatgpt-4 you can do some really interesting stuff with very little coding..
by tj1010
Sun Jul 16, 2023 12:01 am
Forum: Tricks 'n' Tips
Topic: File System Access API
Replies: 5
Views: 5312

Re: File System Access API

SB already has the user-interaction file API integrated(OpenFileRequester and ReadFileCallback). To do anything without user clicks you gotta use the Cordova File plugin; I already posted SB code for it. Browsers and App engines that use CORS UI/UX based stuff will always require user prompts. I use...
by tj1010
Sat May 27, 2023 2:26 am
Forum: Coding Questions
Topic: Gradle breaks Android building
Replies: 24
Views: 7670

Re: Gradle breaks Android building

https://learn.microsoft.com/en-us/java/openjdk/download
and
*:\Program Files\Microsoft\jdk-11.0.19.7-hotspot\

works even with advanced Cordova lib fetches

Looks like I just needed to go to the MS 11 JDK download and set in preferences
by tj1010
Sat May 20, 2023 9:56 pm
Forum: Coding Questions
Topic: Gradle breaks Android building
Replies: 24
Views: 7670

Gradle breaks Android building

"Deprecated Gradle Features were used" breaks Android building in 2.50 B1 across machines and across connections Windows 10 X64 and JDK 8_371
by tj1010
Fri May 19, 2023 11:09 pm
Forum: Tricks 'n' Tips
Topic: Android/IOS internal and SD storage
Replies: 3
Views: 5401

Re: Android/IOS internal and SD storage

I'll update demos and the code once SB works again. I get a lot of Gradle errors with current version of SB regardless of connection or machine. I can't test or add stuff till then. It's also why I haven't done TPM/TEE/keystore stuff... I actually need it for storing a sqlite db in the app directory...
by tj1010
Wed Jan 11, 2023 3:04 pm
Forum: Coding Questions
Topic: How to prevent the program from being unloaded from memory?
Replies: 7
Views: 1663

Re: How to prevent the program from being unloaded from memory?

5 hours it's likely Doze. Never Sleep setting will work there. Something like setAndAllowWhileIdle() through API is needed for non-user action.

When I finish non-cors http I'll being doing this and tpm-keystore stuff and posting it
by tj1010
Sun Jan 08, 2023 10:40 pm
Forum: Coding Questions
Topic: How to prevent the program from being unloaded from memory?
Replies: 7
Views: 1663

Re: How to prevent the program from being unloaded from memory?

All my programs retain state while background and background-while-locked in Android 13 and 12. I have no battery optimization suspend stuff set, though... S21 5G and A10 test devices for reference. Battery and device care>Battery>Power saving Battery and device care>Battery>Background usage limits ...