Re: [Interest] QCamera -> how to set resolution

2024-10-15 Thread ekke
I remember that I also had some problems setting the Camera resolution on ios or android. So I always use the default resolution and later scale the captured QImage, but I only need the captured images to upload to a server, no video processing, so this probably won't help you ekke

Re: [Interest] using a C++ class in QML in Qt6

2024-08-31 Thread ekke
the "load" to get the main.qml file and then RegisterType to get my C++ classes visible inside the QML code. In your example, how do you load your QML file? |engine.*loadFromModule*("Ekke/Apps/Main", "Main"); from my Main.qml I can access all my other qml files as l

Re: [Interest] using a C++ class in QML in Qt6

2024-08-31 Thread ekke
but you should not do multi engine.loadFrom... good night... ekke Am 31.08.24 um 22:53 schrieb Dirk Hohndel via Interest: Hi Ekke, Thanks so much for the quick response. This is a massive project (Subsurface-mobile) that we build with CMake. Thanks for the link to your site with an explanati

Re: [Interest] using a C++ class in QML in Qt6

2024-08-31 Thread ekke
What is your build system ? QMake or CMake ? Instead of qmlRegisterType you should use QML_ELEMENT see https://t1p.de/ekkeQML_ELEMENT ekke Am 31.08.24 um 21:23 schrieb Dirk Hohndel via Interest: Hi there, I've been trying to figure out how to port a QML app from Qt5 to Qt6 and have

Re: [Interest] Android 14 (SDK 34) and Gradle

2024-08-24 Thread ekke
or-android-templates-6-7/ if there are warnings it's not the newest one I ignore. ciao ekke Am 24.08.24 um 10:32 schrieb maitai: Hi, We have recently upgraded our Android build to use and target SDK34 (required by Google by August, 31). All is fine but I have some weird messages du

Re: [Interest] Playing RTSP video on android

2024-07-12 Thread ekke
have you tried Qt Example Declarative Camera ? you should be able to record or view videos. sometimes there are problems running on emulator, so it's a good idea to verify Am 10.07.24 um 19:32 schrieb Israel Brewster via Interest: Environment: Qt version: 6.6.3 Android version: 14, running vi

Re: [Interest] Reading the shared Photos directory on Android

2024-07-10 Thread ekke
Hi Israel, have you tested to add READ_MEDIA_IMAGES permission ? see my article about Qt Permissions https://t1p.de/ekkePermissions and https://bugreports.qt.io/browse/QTBUG-116834 (please vote) ciao ekke Am 10.07.24 um 05:14 schrieb Israel Brewster via Interest: I have written a Qt app, using

Re: [Interest] Support for deployment on iOS 17 devices ?

2024-05-24 Thread ekke
y yet or have you found other frameworks with solutions to this problem ? ekke Am 24.05.24 um 15:02 schrieb worldwides...@sina.com: Hi, ekke, thank you for replying. According to the page, only iOS 17 simulators are supported, because there is another sentence "However, these featur

Re: [Interest] Support for deployment on iOS 17 devices ?

2024-05-24 Thread ekke
Am 24.05.24 um 11:37 schrieb worldwides...@sina.com: Hello. The lastest release of Qt creator does not support deploying apps on iOS 17 device. Currently I have to switch between Xcode and Creator, one for deployment and the other for development. Is it possible to support it in the future?

Re: [Interest] Android Qt 6.6 -> 6.7 - Android Manifest - extract style - allowNativeHeapPointerTagging

2024-04-16 Thread ekke
Hi Assam, thx for the infos - so I'll remove both flags :) ekke Am 16.04.24 um 16:50 schrieb Assam Boudjelthia: Hi, For the pointerTagging, that’s removed because it’s not needed anymore as it was fixed in QTBUG-91150 but the flag was left out during the fix in 6.5 and was not n

[Interest] Android Qt 6.6 -> 6.7 - Android Manifest - extract style - allowNativeHeapPointerTagging

2024-04-16 Thread ekke
x27; Manifest in 6.7 is missing this property, so it's true (default). *what is recommended ? * Is it safe without 'extract_android_style' and 'android:allowNativeHeapPointerTagging="false"' all done with Qt 6.7 and QtC 13 thx for any info ekke ___

Re: [Interest] qt_add_qml_module() RESOURCES vs qt_add_resources()

2024-03-14 Thread ekke
next topic: looking for a way to refactor ContextProperties into QML_SINGLETON with c++ ownership so step-by-step ;-) ekke Am 18.02.24 um 14:07 schrieb ekke: Hi Mike, thanks for your great answer. I can second your advices. ekke Am 17.02.24 um 01:00 schrieb Mike Trahearn via Interest: My s

Re: [Interest] qt_add_qml_module() RESOURCES vs qt_add_resources()

2024-02-18 Thread ekke
Hi Mike, thanks for your great answer. I can second your advices. ekke Am 17.02.24 um 01:00 schrieb Mike Trahearn via Interest: My second advice is more for Ulf - despite your best efforts to educate people in how QML modules have changed the way we should think about our QML organisation

Re: [Interest] qt_add_qml_module() RESOURCES vs qt_add_resources()

2024-02-18 Thread ekke
Am 16.02.24 um 21:06 schrieb Ulf Hermann via Interest: Hi Ekke, ... This is why it's generally a good idea to make the implicit import the same as the module a component belongs to. I have understood, though, that nobody wants to follow this rule. I'll come up with some technica

Re: [Interest] qt_add_qml_module() RESOURCES vs qt_add_resources()

2024-02-13 Thread ekke
Hi Ulf, thanks for your hints. Am 13.02.24 um 21:50 schrieb Ulf Hermann via Interest: Setting NO_RESOURCE_TARGET_PATH removed the prefix and fixes the pathes for me. [...] engine.loadFromModule("Main_Module", "Main"); Indeed, if you make the module invisible, you cannot load from it. NO_

Re: [Interest] qt_add_qml_module() RESOURCES vs qt_add_resources()

2024-02-13 Thread ekke
Am 13.02.24 um 16:38 schrieb Sze Howe Koh: On Tue, 13 Feb 2024 at 22:10, ekke wrote: ... Hi Ekke, There is no bug. If your resource files are part of your QML module, then they will be in the same folder as your *.qml files. Probably "qrc:/Main_Module/images/..." in your case. To

Re: [Interest] qt_add_qml_module() RESOURCES vs qt_add_resources()

2024-02-13 Thread ekke
Am 13.02.24 um 14:52 schrieb Nils Jeisecke: Hi, On Tue, Feb 13, 2024 at 2:41 PM ekke wrote: thx. But it's not the prefix. If I add images.qrc and data-assets.qrc to the executable, it's working. If cmake policy QTP0001 is set to new, the resource prefix defaults to "/qt

Re: [Interest] qt_add_qml_module() RESOURCES vs qt_add_resources()

2024-02-13 Thread ekke
Am 13.02.24 um 14:26 schrieb Nils Jeisecke: Hi Ekke, On Tue, Feb 13, 2024 at 1:41 PM ekke wrote: qt_add_qml_module(${MY_APP} URI Main_Module QML_FILES ${my_qml_files} ${my_js_files} SOURCES ${my_cpp_files} RESOURCES

[Interest] qt_add_qml_module() RESOURCES vs qt_add_resources()

2024-02-13 Thread ekke
} ) qt_add_resources(${MY_APP}     "data-assets"     PREFIX "/"     FILES     ${my_data-assets_files} ) Wanted to place the RESOURCES into qt_add_qml_module(), because they're used by QML and SOURCES from the module. Am I doing somethin

Re: [Interest] CMake - List Sources: qt_add_executable vs qt_add_qml_module

2024-01-30 Thread ekke
e QML module and all other C++ files in qt_add_executable. thx ...makes sense ekke best regards, Ulf ___ Interest mailing list Interest@qt-project.org https://lists.qt-project.org/listinfo/interest ___ Int

Re: [Interest] CMake - List Sources: qt_add_executable vs qt_add_qml_module

2024-01-30 Thread ekke
ll be something like "Ekke.Login", "Ekke.Camera" ... Hope that helps. thx ekke *From:* Interest on behalf of ekke *Sent:* Tuesday, January 30, 2024 8:05:32 PM *To:* interest@qt-project.org *S

[Interest] CMake - List Sources: qt_add_executable vs qt_add_qml_module

2024-01-30 Thread ekke
main.cpp ) include(my_qml_files.cmake) qt_add_qml_module(my_app     URI Main_Module     QML_FILES ${myqmlfiles}     ... RESOURCES, SOURCES... ) I can list all my other cpp SOURCES in qt_add_executable or in qt_add_qml_module, what is recommended in this case ? thx ekke

Re: [Interest] Building a Qt app with target SDK 33 on Android with the latest Qt Creator 11.0.3

2023-11-21 Thread ekke
Hi Nuno, yep - you should set these variables in .pro: ANDROID_MIN_SDK_VERSION = "21" ANDROID_TARGET_SDK_VERSION = "33" QMake will put them into gradle.properties ekke Am 21.11.23 um 11:13 schrieb Nuno Santos: Ekke, Thanks for your reply. I’m still using qmake. I coul

Re: [Interest] Building a Qt app with target SDK 33 on Android with the latest Qt Creator 11.0.3

2023-11-21 Thread ekke
In QtCreator, Build Android APK can you select Android Build Platform SDK: android-33 and Android Build-tools version 33.0.2 ? are you building with QMake or CMake, for Qt 5.15 or 6.6 ? Am 21.11.23 um 10:25 schrieb Nuno Santos: Hi, I’m having issues in build an app targeting SDK 33 with Qt Cre

Re: [Interest] Android 13 Devices – API 30+ - SelectFiles – CreateFiles – Qt 5.15

2022-11-24 Thread ekke
QQC2 app only difference: customer app is using user 10 (Business app) thx ekke Am 23.11.22 um 10:02 schrieb ekke: In one of my apps the user must be able to select one or more files from shared data and also to create a new file in a selected directory. Up to API 29 I did this

[Interest] Android 13 Devices – API 30+ - SelectFiles – CreateFiles – Qt 5.15

2022-11-23 Thread ekke
ABLED_STATE_SET' of undefined Conclusion: Selecting a folder and creating a file I can do using KDABs SharedStorage, Selecting multiple files I can do using QML FileDialog and have to live with the warnings. Any better ideas? Thx ekke ___ Interest mailing list Interest@qt-project.org https://lists.qt-project.org/listinfo/interest

Re: [Interest] BTLE device discovered on Linux, Windows, and Android, but not MacOS or iOS

2022-11-03 Thread ekke
sorry - cannot help with macOS - I'm using BTLE only on Android/iOS ekke Am 03.11.22 um 21:22 schrieb ekke: you should have something like this in your info.plist: NSBluetoothPeripheralUsageDescription $(PRODUCT_NAME)searchesBluetoothLEDevicesforBarcodeScanner ekke Am 03.11.22 um 19:51 sc

Re: [Interest] BTLE device discovered on Linux, Windows, and Android, but not MacOS or iOS

2022-11-03 Thread ekke
you should have something like this in your info.plist: NSBluetoothPeripheralUsageDescription $(PRODUCT_NAME)searchesBluetoothLEDevicesforBarcodeScanner ekke Am 03.11.22 um 19:51 schrieb Glen Mabey: I'm working on a project that is developing a new Bluetooth Low Energy device (it

Re: [Interest] Sharing Files on Android

2022-10-31 Thread ekke
Text and Files with Qt Apps on Android and iOS. There's an example app: https://github.com/ekke/ekkesSHAREexample and a 4-part-Blog starting with this one: https://www.qt.io/blog/2017/12/01/sharing-files-android-ios-qt-app <https://www.qt.io/blog/2017/12/01/sharing-files-android-ios-

Re: [Interest] BT LE (Android, iOS) pairing/bonding

2022-07-08 Thread ekke
confirm now that Qt BLE is working well if BLE peripheral needs JustWorks Pairing/Bonding ekke Am 05.07.22 um 13:23 schrieb ekke: Qt 5.15.7 did many Qt apps for BT LE (for Barcode Scanners) with custom services / characteristic. all works well Now a project to control Beds with some motors

[Interest] BT LE (Android, iOS) pairing/bonding

2022-07-05 Thread ekke
Qt 5.15.7 did many Qt apps for BT LE (for Barcode Scanners) with custom services / characteristic. all works well Now a project to control Beds with some motors for slatted frame (Lattoflex) This BT LE device must be paired/bonded (just works) The device was found from BLE device discovering,

Re: [Interest] [Qt iOS - QTBUG-101568] Application takes several seconds to become responsive depending on the number of items in scene

2022-04-12 Thread ekke
will see is a LoginPage or a HomePage with less objects follow-up Pages are loaded most times using Loader ekke Am 12.04.22 um 13:07 schrieb Nuno Santos: Hi, I have a problem were all my apps take several seconds to become responsive. The more complex the app is, the more time it takes to get

Re: [Interest] SSL & Let's Encrypt certificate expiration

2021-10-05 Thread ekke
Please check if the certificate at server is correct created and uses ISRG Root X1 instead of DST Root CA X3 ekke Am 05.10.21 um 19:29 schrieb maitai: Hi all, Since the Let's Encrypt root certificate expired, we have a few users unable to initiate a SSL connexion (most of them on r

Re: [Interest] Save / load file contents on android

2021-09-03 Thread ekke
experience what is the most appropriated QStandardPathlocation to store user data from Android 11 onwards? I'm always using QStandardPaths::standardLocations(QStandardPaths::AppDataLocation).value(0) to store user data. (Android and iOS) ekke On 3 Sep 2021, at 14:53, Jérôme Go

Re: [Interest] Save / load file contents on android

2021-09-03 Thread ekke
actual path it resolve to on this page (scroll a bit down to see the path for Android): https://doc.qt.io/qt-5/qstandardpaths.html#StandardLocation-enum <https://doc.qt.io/qt-5/qstandardpaths.html#StandardLocation-enum> *From: *Interest on behalf of ekke *Date: *Friday, September 3, 202

Re: [Interest] Save / load file contents on android

2021-09-03 Thread ekke
Hi Nuno, Am 03.09.21 um 11:05 schrieb Nuno Santos: Ekke, I have been experiencing some inconsistencies with Android file access using QStandardPaths, mostly now that I’m preparing the ground for Android 11 support. From Android 11 onwards, there will be changes in the way an app can access

Re: [Interest] Save / load file contents on android

2021-08-31 Thread ekke
Am 31.08.21 um 14:12 schrieb Wilhelm Meier via Interest: Hi all, does anybody have a minimum working example how to load / save json file contents (auscii contents) to / from a file on android. I made several attempts, but I get weird filenames and I'm not able to load the stored file. thx ___

Re: [Interest] Android AAB and shared libs?

2021-07-18 Thread ekke
Am 17.07.21 um 12:46 schrieb Alexander Dyagilev: Hello, Hmm... Same names for different platforms? Why does not they conflict? they are in different folders ekke On 7/15/2021 5:38 PM, Jérôme Godbout wrote: You will need to build your library for all arch that your aab contain. (most

Re: [Interest] Android AAB and shared libs?

2021-07-15 Thread ekke
perhaps this helps to understand aab builds ? https://www.kdab.com/qt-for-android-better-than-ever-before/ ekke Am 15.07.21 um 13:11 schrieb Alexander Dyagilev: Hello, In my project I have 2 sub projects: application and shared library, which application uses. Shared library: TARGET

Re: [Interest] Qt Creator: target SDK versions are grayed out?

2021-07-15 Thread ekke
t's now part of Gradle.properties you have to set this in .pro, per ex.: ANDROID_MIN_SDK_VERSION="21" ANDROID_TARGET_SDK_VERSION="29" then it will be auto-magically set into Gradle.properties - you can verify this from your shadow build ekke

Re: [Interest] HowTo get rid of QNetworkConfigurationManager-is-deprecated-warnings

2021-06-16 Thread ekke
Am 16.06.21 um 21:30 schrieb Thiago Macieira: On Wednesday, 16 June 2021 10:09:05 PDT ekke wrote: Of course I would like to get all other deprecation warnings to fix them, but for QNCM and network accessibility there is no way to fix them because the new QNetworkInformation class doesn’t exist

[Interest] HowTo get rid of QNetworkConfigurationManager-is-deprecated-warnings

2021-06-16 Thread ekke
cate a specific one ? I’m looking for something similar to Q_UNUSED() to get rid of a -Wunused-parameter warning Any ideas ? thx ekke ___ Interest mailing list Interest@qt-project.org https://lists.qt-project.org/listinfo/interest

Re: [Interest] Question on retina

2021-05-03 Thread ekke
I'm always providing @3x images - there are also many Android devices out there with such high density ekke Am 03.05.21 um 11:10 schrieb maitai: Ok, thanks Le 03-05-2021 10:54, Tor Arne Vestbø a écrit : You can (they will/should be scaled appropriately), but ideally you should provid

Re: [Interest] the path forward

2021-04-01 Thread ekke
do my work. ekke Am 01.04.21 um 15:25 schrieb Nuno Santos: I don’t see Roland's emails anymore because I’ve blocked him. He is a kind of hater and lover of Qt at the same time. He loves when someone gives him a spark to set this email list on fire and then write long emails full of bul

Re: [Interest] The willy-nilly deletion of convenience, methods (was: Mixing Commercial and Open...)

2021-03-22 Thread ekke
age for UI, so I'm still a paying customer, for now. Keeping an eye on Flutter, though. 😊 Best regards, MICHAEL NELSON | Sr. Software Engineer T 703-406-2800, 341 michael.nel...@otthydromet.com | www.otthydromet.com -- ekke (ekkehard gentz) independent software architect internatio

Re: [Interest] Is it safe to update to Xcode 12 when still relying on Qt 5.12?

2020-12-17 Thread ekke
Nuno, please be aware of https://bugreports.qt.io/browse/QTCREATORBUG-24672 ekke Am 17.12.20 um 12:59 schrieb Nuno Santos: Tor, Thank you for your reply and insights. I will try invest some time in migrating to Qt 5.15. What about Big Sur? Am I able to build Qt 5.15 on Big Sur? Thanks

Re: [Interest] Qt 6.0.0 released

2020-12-09 Thread ekke
ww.qt.io/qt-for-small-business ekke I'll have to consider alternatives for new desktop projects. ___ Interest mailing list Interest@qt-project.org https://lists.qt-project.org/listinfo/interest

Re: [Interest] Problem creating QLowEnergyService object

2020-10-08 Thread ekke
n GATT standard devices. see also my demo app at github (https://github.com/ekke/ekkesBTLEexample) or in the Google Play / Apple stores. download this Qt app and you should be able to detect and explore the services and characteristics of your Polar H10 _

Re: [Interest] QNetworkConfigurationManager::isOnline always returns false on Android 11

2020-09-28 Thread ekke
Am 28.09.20 um 17:56 schrieb Thiago Macieira: On Monday, 28 September 2020 00:49:49 PDT ekke wrote: I wait 2 minutes and try again if server still not reachable, repeat this max 5 times to avoid endless-trying-to-connect if still no success, I pause the Queue User gets message and has to

Re: [Interest] QNetworkConfigurationManager::isOnline always returns false on Android 11

2020-09-28 Thread ekke
Am 27.09.20 um 21:07 schrieb Thiago Macieira: On Saturday, 26 September 2020 10:29:28 PDT ekke wrote: If I'm following your suggestion trying to connect - what should I do if I cannot connect ? The same thing that you'd do if your watch classes told you were not online. And the

Re: [Interest] QNetworkConfigurationManager::isOnline always returns false on Android 11

2020-09-26 Thread ekke
"status" API endpoint you can use to check if you can reach the server without necessarily doing any hard work. there's a ping api - so I could try this before sending heavy data (the size of data to be sent is different - sometimes only some bytes, sometimes an image (wound

Re: [Interest] QNetworkConfigurationManager::isOnline always returns false on Android 11

2020-09-26 Thread ekke
Am 26.09.20 um 18:15 schrieb Thiago Macieira: On Saturday, 26 September 2020 08:53:52 PDT ekke wrote: Am 26.09.20 um 17:39 schrieb Thiago Macieira: On Friday, 25 September 2020 23:58:26 PDT Alexander Dyagilev wrote: Hello, Tested with Qt 5.12.9. Any workarounds? Suggestion: stop trying to

Re: [Interest] QNetworkConfigurationManager::isOnline always returns false on Android 11

2020-09-26 Thread ekke
work in such kind of use-cases, pulling also is no good idea (have some more mobile apps where it's also important always to know the online state) ekke ___ Interest mailing list Interest@qt-project.org https://lists.qt-project.org/listinfo/interest

Re: [Interest] No implementation found for boolean org.qtproject.qt5.android.QtNative.startQtAndroidPlugin

2020-09-11 Thread ekke
oose everything and my project gets broken even more. It's not an update On 9/11/2020 9:59 AM, ekke wrote: Have you tried to update your templates ? Project - Android - Build - Create Templates ekke Am 11.09.20 um 05:42 schrieb Alexander Dyagilev: Hello, I'm trying to build an

Re: [Interest] No implementation found for boolean org.qtproject.qt5.android.QtNative.startQtAndroidPlugin

2020-09-11 Thread ekke
Have you tried to update your templates ? Project - Android - Build - Create Templates ekke Am 11.09.20 um 05:42 schrieb Alexander Dyagilev: Hello, I'm trying to build and run my project under Qt 5.15.1. The app crashes on start with the following output: E loadmanager.fd: No implement

Re: [Interest] I love QML

2020-07-02 Thread ekke
6 + strict QML + new SmallBusiness - License should motivate mobile app devs to switch to Qt. ekke Am 02.07.20 um 17:50 schrieb Jérôme Godbout: +1 totaly agree, we often forget to praise Qt for the great work. I have been through many framework (MFC, Xaml, wxWidgets, Xamarin...) but my favorite i

Re: [Interest] Qt Positioning on iOS?

2020-03-06 Thread ekke
you should add something like this into your info.plist: NSLocationWhenInUseUsageDescription $(PRODUCT_NAME)usesLocationtogetWeatherDataforcurrentLocation “NSLocationAlwaysAndWhenInUseUsageDescription” $(PRODUCT_NAME)usesLocationtogetWeatherDataforcurrentLocation Am 06.03.20 um 19:08 schrieb

[Interest] Pen-Test detects IntentSpoofing from Qt Android App

2020-03-03 Thread ekke
see details: QTBUG-82546 From my understanding this onClick() method is only needed if Qt Android App is deployed using Ministro. I'm not using Ministro - is there a way to remove this piece of code if not deployed w Ministro ? ekke ___ Interest

Re: [Interest] QSslCertificate verify unimplemented on iOS ?

2020-02-28 Thread ekke
thanks for the info - so I'll exclude verify from my encrpyt() code for iOS and rely on sslErrors() for the errorlist in encrypt() I still can do some checks on certificate chain by myself ekke Am 28.02.20 um 10:12 schrieb Mårten Nordheim: Yes, it’s not implemented. Not 100% sure o

[Interest] QSslCertificate verify unimplemented on iOS ?

2020-02-28 Thread ekke
te.html#QSslCertificate>> /certificateChain/, const QString <https://doc.qt.io/qt-5/qstring.html> &/hostName/ = QString()) Doing the same on iOS I'm getting "Unimplemented Code" logged and the list contains one entry &qu

Re: [Interest] QQmlApplicationEngine::load fails on some Android device(s)

2020-02-03 Thread ekke
GB RAM sometimes are very 'sensible' with unexpected behaviour if not enough free space in RAM ekke ___ Interest mailing list Interest@qt-project.org https://lists.qt-project.org/listinfo/interest

Re: [Interest] The Mobile Agenda?

2020-01-10 Thread ekke
cool Am 10.01.20 um 15:52 schrieb Jason H: > As of yesterday, I have. LOL > > >> Sent: Sunday, January 05, 2020 at 11:12 AM >> From: "ekke" >> To: interest@qt-project.org >> Subject: Re: [Interest] The Mobile Agenda? >> >> Jason, >> &

Re: [Interest] The Mobile Agenda?

2020-01-05 Thread ekke
Jason, +1 just got a request to add Biometric authentication  on Android and iOS. Do you have done this yet ? Am 05.01.20 um 16:12 schrieb Nelson, Michael: > Jason, thanks for making these great points focused on missing features. > Let's also not forget mobile specific bugs that sit unaddresse

Re: [Interest] windeployqt

2019-12-04 Thread ekke
;just work" without -qmldir ? also have all my qml into a qrc, but this the only way to make it work: windeployqt --qmldir Y:\c2gQtWS\qml Y:\build-c2gQtWS-Desktop_Qt_5_13_2_MSVC2017_64bit-Release\release (doing all inside a Parallels VM onTop macOS, where Y: is my mapped project dir ;-) ekke __

Re: [Interest] Android Tooling (Qt 5.12.1 --> Qt 5.13.1)

2019-09-29 Thread ekke
...back from vacation tomorrow will update my tooling anyone else with working installations using SDK Platform 29 ? Otherwise I'll start with Jérôme's config thx ekke Am 11.09.19 um 15:21 schrieb Jérôme Godbout: > I have the following working with Qt 5.13.1: > - SDK 28 rev

[Interest] Android Tooling (Qt 5.12.1 --> Qt 5.13.1)

2019-09-11 Thread ekke
e QtC With Qt 5.13.1 I also want to deploy APKs for 32bit and 64bit to fullfill Googles PlayStore requirements. Before I only deployed 32 Bit APKs want to blog about and to be sure that it's all correct thanks for any tips and input ekke ___ Intere

Re: [Interest] Qt 5.13.1

2019-08-28 Thread ekke
Am 28.08.19 um 19:12 schrieb Jason H: > I suggest joining the Releasing email list > https://lists.qt-project.org/mailman/listinfo/releasing > > As that is extremely low volume and contains all the info you would need. > "Highly Recommend, *, would subscribe ag

Re: [Interest] Qt 5.13.1

2019-08-28 Thread ekke
thx - so 5.13.1 should be released this week :) Am 28.08.19 um 09:41 schrieb Vincent Hui: > https://lists.qt-project.org/pipermail/releasing/2019-August/002675.html > > On Wed, 28 Aug 2019 at 02:23, ekke <mailto:e...@ekkes-corner.org>> wrote: > > Hi, > > an

[Interest] Qt 5.13.1

2019-08-27 Thread ekke
Hi, any ideas when Qt 5.13.1 will be available ? thx for infos ekke ___ Interest mailing list Interest@qt-project.org https://lists.qt-project.org/listinfo/interest

Re: [Interest] [Qt-creator] Android will require 64bit soon

2019-05-28 Thread ekke
Am 28.05.19 um 09:37 schrieb Guenter Schwann: > On Samstag, 2. Februar 2019 16:30:55 CEST ekke wrote: >> Am 02.02.19 um 04:29 schrieb Aleksey Kontsevich: >>> 01.02.2019, 12:11, "ekke" : >>>> Also I think I must then also compile OpenSSL for 32 bit and

Re: [Interest] unable to compile for iOS Simulator

2019-05-05 Thread ekke
I had a similar problem with zlib under iOS, where it worked well on Android to fix this I had to add LIBS += -lz in my .pro Am 04.05.19 um 18:53 schrieb maitai: > Thanks for your reply > > Yes I have a zlib lib which is linked statically > > I'll see if I can remove it just for that case. > > Phi

Re: [Interest] Qt + Android + OpenSSL

2019-04-17 Thread ekke
On 15/04/2019 20:41, Nuno Santos wrote: >>> Thiago, >>> >>> Thanks for your insights. >>> >>> I usually tend to postpone this updates because of the time I need to >>> invest in rebuilding the libs. >>> >>> I always end up stumbling in some weird building problem… >>> >>> Does anyone knows what’s

Re: [Interest] Qt 5.13 Beta 2 ?

2019-04-16 Thread ekke
THX for 5.13 Beta2 just tested https://bugreports.qt.io/browse/QTBUG-74394 works well - now I can deliver App using BLE Devices on Windows 10 :) ekke Am 16.04.19 um 07:34 schrieb Jani Heikkinen: > Hi, > > We are targeting to get the beta2 out as soon as possible. All blockers are &g

Re: [Interest] Qt 5.13 Beta 2 ?

2019-04-15 Thread ekke
Hi Jani, thx for the info ekke Am 16.04.19 um 07:34 schrieb Jani Heikkinen: > Hi, > > We are targeting to get the beta2 out as soon as possible. All blockers are > fixed but we have some issues with creating all packages. Let's see if we > managed to get the beta2 out a

[Interest] Qt 5.13 Beta 2 ?

2019-04-15 Thread ekke
Hi, any ideas when Qt 5.13 Beta 2 will come out ? was scheduled for 2019-04-02 I'm waiting to test BLE on Windows: https://bugreports.qt.io/browse/QTBUG-74394 thx for infos ekke ___ Interest mailing list Interest@qt-project.org https://lis

Re: [Interest] Qt 5.13 Bluetooth Windows

2019-03-14 Thread ekke
that will be > possible under Windows too (we are using valid advertising format but we do > use our own manufacturer data format, so we can have custom beacon with > optimized payload for sensor data and encryption). > > -Original Message- > From: Interest On Behalf

Re: [Interest] Qt 5.13 Bluetooth Windows

2019-03-14 Thread ekke
: never working you can follow https://bugreports.qt.io/browse/QTBUG-74394 ekke Am 12.03.19 um 10:18 schrieb ekke: > Am 12.03.19 um 08:33 schrieb Oliver Wolff: >> Hi Ekke, >> >> On 11/03/2019 14:54, ekke wrote: >>> from https://wiki.qt.io/New_Features_in_Qt_5.13 I noti

Re: [Interest] Qt 5.13 Bluetooth Windows

2019-03-12 Thread ekke
Am 12.03.19 um 08:33 schrieb Oliver Wolff: > Hi Ekke, > > On 11/03/2019 14:54, ekke wrote: >> from https://wiki.qt.io/New_Features_in_Qt_5.13 I noticed this: >> >> Qt Bluetooth >> >> * Removed need for pairing on Windows to discover and connect >> &

[Interest] Qt 5.13 Bluetooth Windows

2019-03-11 Thread ekke
from https://wiki.qt.io/New_Features_in_Qt_5.13 I noticed this: Qt Bluetooth * Removed need for pairing on Windows to discover and connect Does this mean it is possible to connect with Bluetooth LE Devices where no pairing is needed from default binaries ? (Windows 10, MSVC2017) thx ekke

Re: [Interest] iPhone XS App area

2019-03-02 Thread ekke
eGeometry-prop>() into > account, so that any UI elements in the application that require user > interaction are not covered by system UI. > ''' >   > But I think it should? >   > *Sent:* Friday, March 01, 2019 at 12:25 PM > *From:* "ekke" &g

Re: [Interest] iPhone XS App area

2019-03-01 Thread ekke
Am 01.03.19 um 18:06 schrieb Jason H: > I have an app and the LaunchScreen on the XS/XS Max shows up full-full-screen > but then the Qt app only goes full-screen, with the phone reaining the area > for home button and the status bar. > > What do I need to do to get Qt to take the full area? My c

Re: [Interest] using a custom class as parameter of signal/slot, used in QML

2019-03-01 Thread ekke
Text and XTend and all the C++ code for my Entities and the DataManager is generated from this model. hopefully some day I'll find the time to publish this generator as OpenSource ekke Am 01.03.19 um 16:12 schrieb Jason H: > Check out qtmultimedia/examples/multimedia/video/qmlvideofilter_o

Re: [Interest] Generating Android Package Qt 5.12.1 - llvm-readobj.exe does not exist

2019-02-03 Thread ekke
Am 03.02.19 um 13:26 schrieb Nikos Chantziaras: > On 03/02/2019 14:19, ekke wrote: >> Am 03.02.19 um 13:10 schrieb Nikos Chantziaras: >>> That problem was solved, finally. So Qt 5.12 works best with the >>> latest NDK using clang instead of GCC. >>> >>

Re: [Interest] Generating Android Package Qt 5.12.1 - llvm-readobj.exe does not exist

2019-02-03 Thread ekke
Am 03.02.19 um 13:10 schrieb Nikos Chantziaras: > That problem was solved, finally. So Qt 5.12 works best with the > latest NDK using clang instead of GCC. > are you using r19b or r18b ? ekke > > On 03/02/2019 13:41, Oleg Evseev wrote: >> No, I didn't. >> If

Re: [Interest] Generating Android Package Qt 5.12.1 - llvm-readobj.exe does not exist

2019-02-03 Thread ekke
have you tried NDK r18b ? ekke Am 03.02.19 um 12:27 schrieb Oleg Evseev: > Hi all, > > Install qt 5.12.1 for android arm64-v8a using MaintenanceTool . > Trying to build gallery control example on Windows 7. > > On "Generating Android Package" step got errors: >

Re: [Interest] [Qt-creator] Android will require 64bit soon

2019-02-02 Thread ekke
Am 02.02.19 um 04:29 schrieb Aleksey Kontsevich: > 01.02.2019, 12:11, "ekke" : >> Also I think I must then also compile OpenSSL for 32 bit and 64 bit and then >> need to know HowTo include into .pro > That could help You to do this: > https://github.com/akontsev

Re: [Interest] Android will require 64bit soon

2019-02-01 Thread ekke
_ > Interest mailing list > Interest@qt-project.org > https://lists.qt-project.org/listinfo/interest thx Nicos, you are right: I can use multi APKs - just found this confirmed here: https://android-developers.googleblog.com/2017/12/improving-app-security-and-performance.html was confu

Re: [Interest] Android will require 64bit soon

2019-02-01 Thread ekke
we must provide APKs containing both: 32 and 64 bit https://developer.android.com/distribute/best-practices/develop/64-bit this will increase APK size, so Google recommends Android App Bundles https://developer.android.com/distribute/best-practices/develop/64-bit but AFAIK there's no way yet

Re: [Interest] Android will require 64bit soon

2019-02-01 Thread ekke
for any infos what's planned by Qt to support 32/64 bit for Android ekke Am 01.02.19 um 08:16 schrieb m...@herrdiel.de: > > Hi, > > I have just been informed by Google that > >> *Starting August 1, 2019:* >> >> * All new apps and app updates are required to pr

Re: [Interest] iOS: License check failed! - but valid license

2019-01-17 Thread ekke
Am 17.01.19 um 10:54 schrieb ekke: > > just running into this trying to build iOS or iOS Simulator > > NOTICE NOTICE NOTICE NOTICE > > Your Qt license has expired. > > ... > > NOTICE NOTICE NOTICE NOTICE > > Your Evaluation license has expired. > > You a

[Interest] iOS: License check failed! - but valid license

2019-01-17 Thread ekke
just running into this trying to build iOS or iOS Simulator NOTICE NOTICE NOTICE NOTICE Your Qt license has expired. ... NOTICE NOTICE NOTICE NOTICE Your Evaluation license has expired. You are no longer licensed to use this software. Please log into your Qt Account at https://account.qt.io/

Re: [Interest] QtQuickCompiler interfer with lupdate

2019-01-16 Thread ekke
Hi, I'm using Qt 5.12.0 under macOS 10.13.6 for Android / iOS QtQuickCompiler is only used in Release Builds and lupdate / QtLinguist / lrelease only in debug builds all is working fine for me with this constellation ekke Am 15.01.19 um 23:04 schrieb Jérôme Godbout: > > Hi, > &g

Re: [Interest] Modern

2018-12-21 Thread ekke
nd complex UI logic in C++) so for me Qt/QML with QQC2 is a really modern development environment thanks to the teams at Qt ekke Am 20.12.18 um 15:23 schrieb Nuno Santos: > Hey Roland, > > Sorry mate.. I couldn’t avoid... > > How are you writing UIs this days? What is modern to y

Re: [Interest] Android NDK with clang for 5.12.0?

2018-12-18 Thread ekke
Hi René, Android NDK r18b should work with Qt 5.12.0 and detect clang. (on macOS 10.13.6) Build / Target SDK 28 ekke Am 18.12.18 um 12:08 schrieb René Hansen: > Hi all, > > > So I'm finally trying to make the jump from 5.11 to 5.12 and also > upgrade from ndk r10e, but I

Re: [Interest] Problem with font size on Android and High DPI

2018-11-14 Thread ekke
t; Does anyone have a hint or how is that done normally? > > Regards > Roman > ___ > Interest mailing list > Interest@qt-project.org > http://lists.qt-project.org/mailman/listinfo/interest > what ki

Re: [Interest] Android NDK 18

2018-11-12 Thread ekke
ows10Pro) all my apps QtQuickControls2 - so no experiences with Widgets ekke > >   > > Thanks, > > Jerome > >   > > *From:*Interest > *On Behalf Of *ekke > *Sent:* November 12, 2018 1:09 PM > *To:* interest@qt-project.org > *Subject:* Re: [Interest] Android ND

Re: [Interest] Android NDK 18

2018-11-12 Thread ekke
tested: Qt 5.12 Beta 4 + QtC 4.8.0 beta2-snapshot: uses clang and works fine with NDK 18b Qt 5.10.1 / Qt 5.11.2 + QtC 4.7.2: best to use NDK 16b see also discussion Android list with BogDan ekke Am 12.11.18 um 18:45 schrieb Jérôme Godbout: > > Hi, > > Just to check if I’m getting t

Re: [Interest] Qt 5.12 Beta 3 slows down ext Javascript library (RSA encrypt)

2018-11-05 Thread ekke
with example app https://bugreports.qt.io/browse/QTBUG-71591 > Ekke do you use prebuilt binaries or do you compile them yourself? sorry, I'm only using prebuilt binaries ... and it's even much work to test my complex mobile apps against 5.10, 5.11, 5.12, QtC 4.7.x, 4.8Beta, all t

Re: [Interest] Qt 5.12 Beta 3 slows down ext Javascript library (RSA encrypt)

2018-11-05 Thread ekke
Am 06.11.18 um 06:20 schrieb Thiago Macieira: > On Monday, 5 November 2018 11:32:03 PST ekke wrote: >> Thanks, Thiago for the hint - that was the first thing I tried, but >> couldn't figure out HowTo make it work on Android and iOS. >> unfortunately now with 5.12 Beta it

Re: [Interest] Qt 5.12 Beta 3 slows down ext Javascript library (RSA encrypt)

2018-11-05 Thread ekke
Am 05.11.18 um 17:59 schrieb Thiago Macieira: > On Monday, 5 November 2018 05:49:33 PST ekke wrote: >> created a example app and now noticed, the app doesn't freeze, >> but the exection of encrypt() slows down from >> >> 5 sec (Qt 5.11.2) to >> 92 sec (Qt 5.

  1   2   3   >