[Information] Consider AV device as TV product (#172) 68/173368/2
authorKichan Kwon <k_c.kwon@samsung.com>
Wed, 21 Mar 2018 04:06:59 +0000 (13:06 +0900)
committerKichan Kwon <k_c.kwon@samsung.com>
Wed, 21 Mar 2018 04:08:25 +0000 (13:08 +0900)
Change-Id: I35aa9b3d47749cd2706aa9e4bf5d45918dcba29d
Signed-off-by: Kichan Kwon <k_c.kwon@samsung.com>
src/Tizen.System.Information/RuntimeInfo/TvProductHelper.cs

index 5454f254030cc6f4bf8ccb70a2a41a3d9b486fc9..78741eb2149241c0cf178c8337a5f59f3f4e8a4b 100755 (executable)
@@ -50,7 +50,7 @@ namespace Tizen.System
 #pragma warning disable CS0618 // Type or member is obsolete
             is_key_existed = SystemInfo.TryGetValue<string>("http://com.samsung/build_config/product_type", out profile);
 #pragma warning restore CS0618 // Type or member is obsolete
-            if (is_key_existed && String.Compare(profile, "TV") == 0)
+            if (is_key_existed && (String.Compare(profile, "TV") == 0 || String.Compare(profile, "AV") == 0))
             {
                 is_TV_product = 1;
             }