From: Kichan Kwon Date: Wed, 21 Mar 2018 04:06:59 +0000 (+0900) Subject: [Information] Consider AV device as TV product (#172) X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=eeca66d40f937740259be2e1df73f59960e24db7;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git [Information] Consider AV device as TV product (#172) Change-Id: I35aa9b3d47749cd2706aa9e4bf5d45918dcba29d Signed-off-by: Kichan Kwon --- diff --git a/src/Tizen.System.Information/RuntimeInfo/TvProductHelper.cs b/src/Tizen.System.Information/RuntimeInfo/TvProductHelper.cs index 5454f2540..78741eb21 100755 --- a/src/Tizen.System.Information/RuntimeInfo/TvProductHelper.cs +++ b/src/Tizen.System.Information/RuntimeInfo/TvProductHelper.cs @@ -50,7 +50,7 @@ namespace Tizen.System #pragma warning disable CS0618 // Type or member is obsolete is_key_existed = SystemInfo.TryGetValue("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; }