To hide unnecessary apps in TV platform
authorcskim <charles0.kim@samsung.com>
Mon, 8 May 2017 22:36:52 +0000 (07:36 +0900)
committerChulSeung Kim <charles0.kim@samsung.com>
Thu, 8 Jun 2017 09:34:54 +0000 (18:34 +0900)
Change-Id: I359e761144f76a047401f50a25eac369de4af78a

LibTVRefCommonPortable/Models/ManagedApps.cs

index ac1892e..3043005 100644 (file)
@@ -93,6 +93,13 @@ namespace LibTVRefCommonPortable.Models
                 return true;
             }
 
+            // TODO : remove this, only for TDC
+            if (appID.Contains("etflix") ||
+                  appID.StartsWith("org.volt"))
+            {
+                return true;
+            }
+
             return false;
         }
     }