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 d80602ebfc5633..7876e03040be92 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 @@ -3568,7 +3568,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; @@ -3609,7 +3609,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 b11384ba3b829d..8d7b1214cd362b 100644 --- a/examples/placeholder/linux/apps/app1/config.matter +++ b/examples/placeholder/linux/apps/app1/config.matter @@ -6306,7 +6306,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; @@ -6327,7 +6327,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; @@ -6349,7 +6349,7 @@ client cluster ApplicationLauncher = 1292 { } response struct LauncherResponse = 3 { - ApplicationLauncherStatusEnum status = 0; + StatusEnum status = 0; optional octet_string data = 1; } @@ -6363,7 +6363,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; @@ -6384,7 +6384,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 6ab8cec8fd39ad..fc8825a09e6dc4 100644 --- a/examples/placeholder/linux/apps/app2/config.matter +++ b/examples/placeholder/linux/apps/app2/config.matter @@ -6265,7 +6265,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; @@ -6286,7 +6286,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; @@ -6308,7 +6308,7 @@ client cluster ApplicationLauncher = 1292 { } response struct LauncherResponse = 3 { - ApplicationLauncherStatusEnum status = 0; + StatusEnum status = 0; optional octet_string data = 1; } @@ -6322,7 +6322,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; @@ -6343,7 +6343,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