Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
#36836 enable test on android (#71371)
  • Loading branch information
mkhamoyan committed Jun 29, 2022
1 parent 2add841 commit 8387fc1
Showing 1 changed file with 1 addition and 2 deletions.
Expand Up @@ -41,8 +41,7 @@ public void GetDataDirectory(IsolatedStorageScope scope)
{
// Machine scope is behind a policy that isn't enabled by default
// https://github.com/dotnet/runtime/issues/21742
// It's also disabled on Android, see https://github.com/dotnet/runtime/issues/55693
if (scope == IsolatedStorageScope.Machine && (PlatformDetection.IsInAppContainer || PlatformDetection.IsAndroid))
if (scope == IsolatedStorageScope.Machine && PlatformDetection.IsInAppContainer)
return;

string path = Helper.GetDataDirectory(scope);
Expand Down

0 comments on commit 8387fc1

Please sign in to comment.