srdw

Results 7 comments of srdw

I also want to use objectbox-c in my Android/iOS app using C++/QT5/QML. According to greenrobot's comment there seems to be a way to do it, but I still don't understand...

@Dreamykass Thanks a Lot. I'll check it out! By the way, are you using the objectbox-swift(https://github.com/objectbox/objectbox-swift) Lib file to build the iOS version?

@Dreamykass 😄 (Using DeepL) I'm also planning to use Sqlite if ObjectBox is not available. It's a game application, and we will be storing a lot of logs in a...

Hi @greenrobot (Using DeepL) I'm testing ObjectBox-C combined with Swift library files. In iOS Simulator, both read/write work, but in iOS Device, I get the following Runtime Error. `[ERROR] Storage...

@vaind I'm sorry. I just tried it and it worked. The following code worked for me on Qt+iOS Device! ``` #ifdef Q_OS_IOS obx::Store::Options options(create_obx_model()); options.directory(QStandardPaths::writableLocation(QStandardPaths::DocumentsLocation).append(“/objectbox").toStdString())); obx::Store store(options); #endif ``` thx!

Hello @mohammadjalalis. I'm using Qt + Felgo, so I'm using qmake. (If you are using cmake, you may need to do it differently) I have added each of them to...

I was also having trouble with the export not outputting any images other than the URL. Thanks to your comment I was able to solve the problem.