VladimirR46

Results 8 comments of VladimirR46

I tried turning set(LSL_DEBUGLOG ON) But I get an error ![image](https://github.com/sccn/liblsl/assets/38318731/e4de71e2-128a-4385-a826-e6d4ddf4a244)

Thank you very much! I was able to compile with `set(LSL_DEBUGLOG ON)`. But for that I needed to install Android API version 33.

@tstenner Hello! After upgrading loguru library I am unable to build my Windows application using mingw. ![image](https://github.com/sccn/liblsl/assets/38318731/0421cffc-9072-4a86-9377-f31eabe3789a) Also about the problem on Android. I don't use the simulator. And I...

I think I've solved my problem! By default, receiving UDP Multicast packets from Android is disabled. Even if you join a multicast group after binding to the correct address and...

But I have one more question. Why do I see localhost in LabRecorder? I am running the stream from an external Android device. ![image](https://github.com/sccn/liblsl/assets/38318731/da28c1c4-e5bb-4bd7-aef5-4f0dfd98621c)

Thank you so much! I'll be waiting! I'm using Qt6 and cmake. And I just need to send text file (json) from android device via native FileDialog. I wish you...

My application is working, but there is no way I can solve the following problem( Perhaps you know how to fix it? ![image](https://github.com/ekke/ekkesSHAREexample/assets/38318731/a3eb03e8-28be-4ed2-a4a5-70d0b7de3c1e)

Thank you! I've solved my problem! Just added: setClipData like ``` sendIntent.setType(mimeType); sendIntent.setClipData(ClipData.newRawUri("", uri)); sendIntent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION); QtNative.activity().startActivity(Intent.createChooser(sendIntent, "Share protocol using")); ```