[Information] Consider AV device as TV product (#172) 4.0.1.14117
authorkichankwon <35328573+kichankwon@users.noreply.github.com>
Wed, 21 Mar 2018 05:51:59 +0000 (14:51 +0900)
committerseseki17 <kibak.yoon@gmail.com>
Wed, 21 Mar 2018 05:51:59 +0000 (14:51 +0900)
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;
             }