I building a tauri app as a room booking system with communication features. Using the new tauri 2.0 RC.
On deployment everything works also on Mac.
But the mobile-mrbs.exe (my program ) doesn’t run.
Log with gdb:
run program
gdb path to .exe
(gdb) run
Starting program: C:\…\mobile-mrbs.exe
warning: onecoreuap\shell\twinapi\windowservices\windowservices\lib\windowservices.cpp(98)\twinapi.appcore.dll!00007FFB87C11A72: (caller: 00007FFB701C5BBA) ReturnHr(1) tid(2d38) 80070005 Zugriff verweigert
warning: onecoreuap\shell\twinapi\windowservices\windowservices\lib\windowservices.cpp(114)\twinapi.appcore.dll!00007FFB87C119FE: (caller: 00007FFB701C5BBA) ReturnHr(2) tid(2d38) 80070005 Zugriff verweigert
warning: onecoreuap\shell\twinapi\windowservices\windowservices\lib\windowservices.cpp(98)\twinapi.appcore.dll!00007FFB87C13C66: (caller: 00007FFB87BB2F44) ReturnHr(3) tid(2d38) 80070005 Zugriff verweigert
warning: onecoreuap\shell\twinapi\windowservices\windowservices\lib\windowservices.cpp(111)\twinapi.appcore.dll!00007FFB87C119B8: (caller: 00007FFB701C5BBA) ReturnHr(4) tid(2d38) 80070005 Zugriff verweigert
[Inferior 1 (process 12572) exited with code 01]
plugin(tauri_plugin_log::Builder::new().build()).plugin(tauri_plugin_fs::init())
carabilitys/default.json
{
"$schema": "../gen/schemas/desktop-schema.json",
"identifier": "default",
"description": "Capability for the main window",
"windows": [
"main"
],
"permissions": [
"core:default"
]
}
Do I miss something? A special windows permission?
With npm run tauri dev it is working fine.
Testing it on Windows 11 and on Windows 10
Regards
Martin