diff --git a/examples/all-clusters-minimal-app/all-clusters-common/all-clusters-minimal-app.matter b/examples/all-clusters-minimal-app/all-clusters-common/all-clusters-minimal-app.matter index 8a69d89ed9222d..31724f0ef98dd0 100644 --- a/examples/all-clusters-minimal-app/all-clusters-common/all-clusters-minimal-app.matter +++ b/examples/all-clusters-minimal-app/all-clusters-common/all-clusters-minimal-app.matter @@ -3572,7 +3572,7 @@ server cluster AudioOutput = 1291 { /** This cluster provides an interface for launching content on a media player device such as a TV or Speaker. */ server cluster ApplicationLauncher = 1292 { - enum ApplicationLauncherStatusEnum : enum8 { + enum StatusEnum : enum8 { kSuccess = 0; kAppNotAvailable = 1; kSystemBusy = 2; @@ -3613,7 +3613,7 @@ server cluster ApplicationLauncher = 1292 { } response struct LauncherResponse = 3 { - ApplicationLauncherStatusEnum status = 0; + StatusEnum status = 0; optional octet_string data = 1; } diff --git a/examples/placeholder/linux/apps/app1/config.matter b/examples/placeholder/linux/apps/app1/config.matter index 9c8f973de9a8f1..c1c3047b03c942 100644 --- a/examples/placeholder/linux/apps/app1/config.matter +++ b/examples/placeholder/linux/apps/app1/config.matter @@ -6310,7 +6310,7 @@ server cluster AudioOutput = 1291 { /** This cluster provides an interface for launching content on a media player device such as a TV or Speaker. */ client cluster ApplicationLauncher = 1292 { - enum ApplicationLauncherStatusEnum : enum8 { + enum StatusEnum : enum8 { kSuccess = 0; kAppNotAvailable = 1; kSystemBusy = 2; @@ -6331,7 +6331,7 @@ client cluster ApplicationLauncher = 1292 { } readonly attribute optional int16u catalogList[] = 0; - attribute optional nullable ApplicationEPStruct currentApp = 1; + readonly attribute optional nullable ApplicationEPStruct currentApp = 1; readonly attribute command_id generatedCommandList[] = 65528; readonly attribute command_id acceptedCommandList[] = 65529; readonly attribute event_id eventList[] = 65530; @@ -6353,7 +6353,7 @@ client cluster ApplicationLauncher = 1292 { } response struct LauncherResponse = 3 { - ApplicationLauncherStatusEnum status = 0; + StatusEnum status = 0; optional octet_string data = 1; } @@ -6367,7 +6367,7 @@ client cluster ApplicationLauncher = 1292 { /** This cluster provides an interface for launching content on a media player device such as a TV or Speaker. */ server cluster ApplicationLauncher = 1292 { - enum ApplicationLauncherStatusEnum : enum8 { + enum StatusEnum : enum8 { kSuccess = 0; kAppNotAvailable = 1; kSystemBusy = 2; @@ -6388,7 +6388,7 @@ server cluster ApplicationLauncher = 1292 { } readonly attribute int16u catalogList[] = 0; - attribute nullable ApplicationEPStruct currentApp = 1; + readonly attribute nullable ApplicationEPStruct currentApp = 1; readonly attribute command_id generatedCommandList[] = 65528; readonly attribute command_id acceptedCommandList[] = 65529; readonly attribute event_id eventList[] = 65530; diff --git a/examples/placeholder/linux/apps/app2/config.matter b/examples/placeholder/linux/apps/app2/config.matter index b6de3ec30f2df4..009d443d1c8742 100644 --- a/examples/placeholder/linux/apps/app2/config.matter +++ b/examples/placeholder/linux/apps/app2/config.matter @@ -6269,7 +6269,7 @@ server cluster AudioOutput = 1291 { /** This cluster provides an interface for launching content on a media player device such as a TV or Speaker. */ client cluster ApplicationLauncher = 1292 { - enum ApplicationLauncherStatusEnum : enum8 { + enum StatusEnum : enum8 { kSuccess = 0; kAppNotAvailable = 1; kSystemBusy = 2; @@ -6290,7 +6290,7 @@ client cluster ApplicationLauncher = 1292 { } readonly attribute optional int16u catalogList[] = 0; - attribute optional nullable ApplicationEPStruct currentApp = 1; + readonly attribute optional nullable ApplicationEPStruct currentApp = 1; readonly attribute command_id generatedCommandList[] = 65528; readonly attribute command_id acceptedCommandList[] = 65529; readonly attribute event_id eventList[] = 65530; @@ -6312,7 +6312,7 @@ client cluster ApplicationLauncher = 1292 { } response struct LauncherResponse = 3 { - ApplicationLauncherStatusEnum status = 0; + StatusEnum status = 0; optional octet_string data = 1; } @@ -6326,7 +6326,7 @@ client cluster ApplicationLauncher = 1292 { /** This cluster provides an interface for launching content on a media player device such as a TV or Speaker. */ server cluster ApplicationLauncher = 1292 { - enum ApplicationLauncherStatusEnum : enum8 { + enum StatusEnum : enum8 { kSuccess = 0; kAppNotAvailable = 1; kSystemBusy = 2; @@ -6347,7 +6347,7 @@ server cluster ApplicationLauncher = 1292 { } readonly attribute int16u catalogList[] = 0; - attribute nullable ApplicationEPStruct currentApp = 1; + readonly attribute nullable ApplicationEPStruct currentApp = 1; readonly attribute command_id generatedCommandList[] = 65528; readonly attribute command_id acceptedCommandList[] = 65529; readonly attribute event_id eventList[] = 65530; diff --git a/examples/tv-app/android/include/application-launcher/ApplicationLauncherManager.cpp b/examples/tv-app/android/include/application-launcher/ApplicationLauncherManager.cpp index cfc840ce1c83d3..c915856f48fd4d 100644 --- a/examples/tv-app/android/include/application-launcher/ApplicationLauncherManager.cpp +++ b/examples/tv-app/android/include/application-launcher/ApplicationLauncherManager.cpp @@ -45,7 +45,7 @@ void ApplicationLauncherManager::HandleLaunchApp(CommandResponseHelper