[NUI] Fix the issue where the AppControlReceived event handler is not being called
authordongsug.song <dongsug.song@samsung.com>
Mon, 6 Jan 2025 11:58:18 +0000 (20:58 +0900)
committerdongsug-song <35130733+dongsug-song@users.noreply.github.com>
Mon, 6 Jan 2025 12:06:49 +0000 (21:06 +0900)
src/Tizen.NUI/src/public/Application/NUIApplication.cs

index b63fab53542f221cef85cea15d168f8e11af711c..67525ace359131a656345bf90cef3186cc89c23f 100755 (executable)
@@ -523,6 +523,7 @@ namespace Tizen.NUI
             Backend.AddEventHandler(EventType.PreCreated, OnPreCreate);
             Backend.AddEventHandler(EventType.Resumed, OnResume);
             Backend.AddEventHandler(EventType.Paused, OnPause);
+            Backend.AddEventHandler<AppControlReceivedEventArgs>(EventType.AppControlReceived, OnAppControlReceived);
             base.Run(args);
         }