Search found 1043 matches

by trevix
Wed Oct 01, 2025 9:51 am
Forum: Android Deployment
Topic: Google Play Console: new requirements
Replies: 21
Views: 13951

Re: Google Play Console: new requirements

See also at the bottom of this page.
I am on OSX 15.7 LC 10.0.3 RC1
by trevix
Wed Oct 01, 2025 9:47 am
Forum: Android Deployment
Topic: Google Play Console: new requirements
Replies: 21
Views: 13951

Re: Google Play Console: new requirements

Sorry I forgot the attachment.
Also, if i find a way to change the Google console language, I will attach the english version.
by trevix
Tue Sep 30, 2025 3:01 pm
Forum: Android Deployment
Topic: Google Play Console: new requirements
Replies: 21
Views: 13951

Re: Google Play Console: new requirements

I just uploaded to production an update of my app, made with LC 10.0.3 Rc1, and I got this in the Google console. I don't understand if I have to wait until google ends the revision or I must take care of these two problems first (I have been waiting 24 hours now. Usually is much faster) Side note: ...
by trevix
Fri Aug 29, 2025 6:12 pm
Forum: LiveCode Builder
Topic: Custom frameworks: ".lcext" or ".lcextd" ?
Replies: 0
Views: 4498

Custom frameworks: ".lcext" or ".lcextd" ?

From the Livecode Builder User Guide I read: Static libraries and frameworks for iOS must be compiled into a lcext object. Use the build-module-lcext- ios.sh shell script as an example of how to do so. But I noticed that almost all the "merge" Monte extensions (on Livecode 10.0.2 RC4) have a folder ...
by trevix
Thu Aug 28, 2025 1:16 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Beacons - Eddystone, iBeacon Bluetooth and MergeBLE
Replies: 10
Views: 19862

Re: Beacons - Eddystone, iBeacon Bluetooth and MergeBLE

It appears to me that Monte extension, mergCL, is sending an iBeacon message every seconds, for a total of 10 seconds, to "mergCLDidRangeBeacons", no matter the settings of the iBeacon device. Is it possible that this value, 10 seconds, is embedded in the extension? If so, is it possible to avoid th...
by trevix
Thu Aug 28, 2025 10:51 am
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Field input of MAC address: filtered and nice to look
Replies: 17
Views: 5617

Re: Field input of MAC address: filtered and nice to look

I don't.
The fld "LabelHide" is a place holder, behind the real field, that shows to the user an example of the Mac.
I should have removed any reference to it.
by trevix
Wed Aug 27, 2025 8:38 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Field input of MAC address: filtered and nice to look
Replies: 17
Views: 5617

Re: Field input of MAC address: filtered and nice to look

Your solution, ahimè, is getting close to the same size of my original one, that used a reapet loop. May be faster tough.
by trevix
Wed Aug 27, 2025 8:37 am
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Field input of MAC address: filtered and nice to look
Replies: 17
Views: 5617

Re: Field input of MAC address: filtered and nice to look

@dunbarx: not quite. Type "AB" > "AB:" Insert the pointer between A and B (in order do modify A) backspace delete A type A again (to obtain AB:) > "B:A" (wrong) click outside click inside the field > everything disappear (wrong) @richmond62: It is used to authorize, in the app, a BLE button, using i...
by trevix
Tue Aug 26, 2025 4:24 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Field input of MAC address: filtered and nice to look
Replies: 17
Views: 5617

Re: Field input of MAC address: filtered and nice to look

So clever Craig!! Too bad it still need a fix. I also noticed that if I delete the last ":" (like from "AA:BB:" to "AA:BB", because the user entered a wrong char), I don't get back the ":" with the next char, but I get "AA:BBC". (fixed afterward...but that's not the point. What mentioned by Stam is ...
by trevix
Tue Aug 26, 2025 10:33 am
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Field input of MAC address: filtered and nice to look
Replies: 17
Views: 5617

Field input of MAC address: filtered and nice to look

I want to present the mobile user an input field where he can write a MAC address (12 characters). I would like to make it easy for the user, having filtered input, all capital, ":" in between each couple of chars, so that on screen the final content will look with something like this "AC:23:3F:AE:2...
by trevix
Thu Aug 21, 2025 4:43 pm
Forum: LiveCode Builder
Topic: Building NFC extension for iOS
Replies: 2
Views: 6475

Re: Building NFC extension for iOS. PARTIALLY SOLVED!

I was able to circumvent Apple, which states that NFC iOS reading cannot be used in extensions, creating a "external", not an "Extension" (sigh) It works well, although due to Apple's security settings, the user experience is not as clean as in Android. It needs a custom info.plist and also a .xcent...
by trevix
Thu Aug 21, 2025 4:29 pm
Forum: LiveCode Builder
Topic: How to get a custom framework to end up in the standalone package?
Replies: 3
Views: 4681

Re: How to get a custom framework to end up in the standalone package? SOLVED

The framework must be placed in "/YourExtensionName/code/universal-ios/

I think Livecode should post these informations...
by trevix
Mon Aug 11, 2025 7:05 pm
Forum: LiveCode Builder
Topic: How to get a custom framework to end up in the standalone package?
Replies: 3
Views: 4681

Re: How to get a custom framework to end up in the standalone package?

I forgot to say: Monte created for me a LCB extension that actually load a custom framework on the standalone. So this should be possible...
by trevix
Mon Aug 11, 2025 4:53 pm
Forum: LiveCode Builder
Topic: How to get a custom framework to end up in the standalone package?
Replies: 3
Views: 4681

How to get a custom framework to end up in the standalone package?

Hello. I am not vacationing (sigh) and it would be nice if I could receive some answer :D A custom framework must be placed in the "Frameworks" folder on the package of a standalone, during the build process, in order to not disrupt the app signature in iOS (no standalone settings copy pane). How, u...