03:18:09 https://github.com/monero-project/monero-gui/issues/4141 12:54:14 hello 12:54:43 Do anyone knows how to ask permission for camera on linux 12:55:42 android has a file named androidmanifest and you insert there "" 12:55:58 and camera work 12:56:15 something like this on linux please 12:57:42 For? 12:58:16 for enabling camera 12:58:25 if camera is not enabled qt dont work 12:58:31 qr dont work 12:58:54 Qr grabs image from screen iirc 13:00:00 yes but sometimes you need camera 13:00:23 your qr is printed 13:01:55 monero gui has to be built with camera support , my OS has never asked me for permission, only a web browser 13:03:27 Probably handy in merchant mode, or restoring URIs. 13:03:27 Eudaimon wanted qr code cam (- is that you eud?) 13:03:49 no 13:03:58 "WITH_SCANNER "Enable webcam QR scanner" ON" 13:04:23 gui is build with qr scanner enabled but camera need permission 13:05:01 on android when app opens ask u about camera permission and thats it 13:05:28 Android is a permissioned system. 13:05:35 on linux gui dont ask so camera has no permission and wont work 13:05:43 Flatpak is as well 13:06:16 Try using Flatpak, and using `flatseal` to "give permission" 13:06:39 when i click "scan qr code"  icon camera gives me a black hole! 13:07:54 and was doing the same on android before adding ""android.permission.CAMERA""   on androidmanifest 13:08:16 what OS are you using 13:08:21 debian 13:08:24 (Unable to test cameras) 13:08:32 i was missing.... uhm 13:08:50 during build i noticed some errors in the log 13:10:06 i noticed this: defaultServiceProvider::requestService(): no service found for - "org.qt-project.qt.camera" 13:10:28 during build, and i needed to install some dependency 13:10:46 linux? 13:11:15 ubuntu yes moment 13:12:07 i installed libqt5multimedia5-plugins on ubuntu , then i re-built monero gui 13:12:14 maybe this is your issue 13:12:33 sudo apt-get install libqt5multimedia5-plugins 13:13:56 this i must install where i compile or where i run ? 13:14:34 try to sudo apt-get install libqt5multimedia5-plugins 13:14:50 does it download/install anything? then re-compile monero gui 13:15:39 its for your operating system 13:15:44 i'm compiling with dockerfile 13:16:13 hm 13:16:34 add it to the docker file? 13:16:47 ok 13:17:15 where the docker install dependencies add it hm 13:19:14 ok 13:25:23 libqt5gui5-gles : Conflicts: libqt5gui5 but 5.5.1+dfsg-16ubuntu7.7 is to be installed 13:25:33 package conflicts 13:28:05 I wish you the best of luck 13:29:01 i had before this errors here http://paste.debian.net/1275640/  that's why i added but still no luck 13:31:14 can you not just build without docker , debian is supported for build 13:31:23 ok 13:31:30 The GUI won't have scanner support when you link against static Qt on Linux (which is what happens if you use the Dockerfile). This is due to how Qt's plugin system works. You would need a static build of Qt's multimedia backend (GStreamer) for this to work or you can compile a non-static build from source with -DWITH_SCANNER=ON. It has nothing to do with permissions. 13:36:16 if we manage to compile this https://github.com/GStreamer/gstreamer  on docker is done? 13:38:32 Build a static version of gstreamer 13:38:33 or 13:38:33 Compile a non static build of gui, and use the cmake flag DWITH_SCANNER=ON 13:41:02 i'll try and come later to tell 13:41:16 Thnx