Skip to content
This repository has been archived by the owner on May 15, 2024. It is now read-only.

Commit

Permalink
Merge branch 'develop' into bug/gh-1180
Browse files Browse the repository at this point in the history
  • Loading branch information
Redth authored Mar 25, 2020
2 parents ad0ade6 + 34cc39b commit c59c747
Show file tree
Hide file tree
Showing 20 changed files with 108 additions and 77 deletions.
2 changes: 1 addition & 1 deletion DeviceTests/DeviceTests.Shared/DeviceTests.Shared.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<ProjectReference Include="..\..\Xamarin.Essentials\Xamarin.Essentials.csproj" />
</ItemGroup>
<ItemGroup Condition=" $(TargetFramework.StartsWith('uap10.0')) ">
<PackageReference Include="Microsoft.NETCore.UniversalWindowsPlatform" Version="6.1.9" />
<PackageReference Include="Microsoft.NETCore.UniversalWindowsPlatform" Version="6.2.9" />
<SDKReference Include="WindowsMobile, Version=10.0.16299.0">
<Name>Windows Mobile Extensions for the UWP</Name>
</SDKReference>
Expand Down
2 changes: 1 addition & 1 deletion DeviceTests/DeviceTests.UWP/DeviceTests.UWP.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@
<ItemGroup>
<PackageReference Include="UnitTests.HeadlessRunner" Version="2.0.0" />
<PackageReference Include="Xamarin.Forms" Version="4.2.0.848062" />
<PackageReference Include="Microsoft.NETCore.UniversalWindowsPlatform" Version="6.1.9" />
<PackageReference Include="Microsoft.NETCore.UniversalWindowsPlatform" Version="6.2.9" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.devices" Version="2.5.25" />
<PackageReference Include="System.Numerics.Vectors" Version="4.5.0" />
Expand Down
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
<Project Sdk="Microsoft.NET.Sdk.Web">

<PropertyGroup>
<TargetFramework>netcoreapp3.0</TargetFramework>
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="AspNet.Security.OAuth.Apple" Version="3.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.Facebook" Version="3.0.2" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.Google" Version="3.0.2" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.MicrosoftAccount" Version="3.0.2" />
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="3.0.0" />
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="3.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.Facebook" Version="3.1.2" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.Google" Version="3.1.2" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.MicrosoftAccount" Version="3.1.2" />
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="3.1.2" />
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="3.1.1" />
</ItemGroup>

</Project>
6 changes: 5 additions & 1 deletion Samples/Sample.Server.WebAuthenticator/Startup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Authentication.Cookies;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Http;
Expand Down Expand Up @@ -29,7 +30,10 @@ public void ConfigureServices(IServiceCollection services)
{
services.AddControllers();

services.AddAuthentication()
services.AddAuthentication(o =>
{
o.DefaultScheme = CookieAuthenticationDefaults.AuthenticationScheme;
})
.AddCookie()
.AddFacebook(fb =>
{
Expand Down
4 changes: 2 additions & 2 deletions Samples/Samples.Android/Resources/values/styles.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
</style>

<!-- Base theme applied no matter what API -->
<style name="MainTheme.Base" parent="Theme.AppCompat.Light.DarkActionBar">
<style name="MainTheme.Base" parent="Theme.MaterialComponents.Light.DarkActionBar">
<!--If you are using revision 22.1 please use just windowNoTitle. Without android:-->
<item name="windowNoTitle">true</item>
<!--We will be using the toolbar so no need to show ActionBar-->
Expand All @@ -25,7 +25,7 @@
<item name="android:datePickerDialogTheme">@style/AppCompatDialogStyle</item>
</style>

<style name="AppCompatDialogStyle" parent="Theme.AppCompat.Light.Dialog">
<style name="AppCompatDialogStyle" parent="ThemeOverlay.MaterialComponents.MaterialAlertDialog">
<item name="colorAccent">#FF4081</item>
</style>

Expand Down
25 changes: 11 additions & 14 deletions Samples/Samples.Android/Samples.Android.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<AndroidLinkMode>None</AndroidLinkMode>
<AotAssemblies>false</AotAssemblies>
<EnableLLVM>false</EnableLLVM>
<AndroidEnableProfiledAot>false</AndroidEnableProfiledAot>
<BundleAssemblies>false</BundleAssemblies>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
Expand All @@ -54,22 +58,15 @@
<Reference Include="System.Numerics.Vectors" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AppCenter" Version="2.1.1" />
<PackageReference Include="Microsoft.AppCenter.Analytics" Version="2.1.1" />
<PackageReference Include="Microsoft.AppCenter.Crashes" Version="2.1.1" />
<PackageReference Include="Microsoft.AppCenter.Distribute" Version="2.1.1" />
<PackageReference Include="Microsoft.AppCenter" Version="3.0.0" />
<PackageReference Include="Microsoft.AppCenter.Analytics" Version="3.0.0" />
<PackageReference Include="Microsoft.AppCenter.Crashes" Version="3.0.0" />
<PackageReference Include="Microsoft.AppCenter.Distribute" Version="3.0.0" />
<PackageReference Include="Xamarin.AndroidX.Migration" Version="1.0.0" />
<PackageReference Include="Xamarin.Forms" Version="4.3.0.947036" />
<PackageReference Include="Xamarin.Forms.Visual.Material" Version="4.3.0.947036" />
<PackageReference Include="Xamarin.Android.Support.Design" Version="28.0.0.3" />
<PackageReference Include="Xamarin.Android.Support.v7.AppCompat" Version="28.0.0.3" />
<PackageReference Include="Xamarin.Android.Support.v4" Version="28.0.0.3" />
<PackageReference Include="Xamarin.Android.Support.v7.CardView" Version="28.0.0.3" />
<PackageReference Include="Xamarin.Android.Support.v7.MediaRouter" Version="28.0.0.3" />
<PackageReference Include="Xamarin.Android.Support.CustomTabs" Version="28.0.0.3" />
<PackageReference Include="Xamarin.Android.Support.Core.Utils" Version="28.0.0.3" />
<PackageReference Include="Xamarin.Forms" Version="4.5.0.356" />
<PackageReference Include="Xamarin.Forms.Visual.Material" Version="4.5.0.356" />
<PackageReference Include="Xamarin.AndroidX.Lifecycle.LiveData" Version="2.1.0" />
<PackageReference Include="Xamarin.Google.Android.Material" Version="1.0.0" />
<PackageReference Include="Xamarin.Google.Android.Material" Version="1.1.0-rc2" />
<PackageReference Include="Xamarin.AndroidX.Legacy.Support.V4" Version="1.0.0" />
<PackageReference Include="Xamarin.AndroidX.MediaRouter" Version="1.1.0" />
<PackageReference Include="System.Numerics.Vectors" Version="4.5.0" />
Expand Down
26 changes: 13 additions & 13 deletions Samples/Samples.UWP/Samples.UWP.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<AssemblyName>Samples.UWP</AssemblyName>
<DefaultLanguage>en-US</DefaultLanguage>
<TargetPlatformIdentifier>UAP</TargetPlatformIdentifier>
<TargetPlatformVersion>10.0.16299.0</TargetPlatformVersion>
<TargetPlatformVersion>10.0.18362.0</TargetPlatformVersion>
<TargetPlatformMinVersion>10.0.16299.0</TargetPlatformMinVersion>
<MinimumVisualStudioVersion>14</MinimumVisualStudioVersion>
<EnableDotNetNativeCompatibleProfile>true</EnableDotNetNativeCompatibleProfile>
Expand Down Expand Up @@ -115,20 +115,15 @@
<Prefer32Bit>true</Prefer32Bit>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AppCenter" Version="2.1.1" />
<PackageReference Include="Microsoft.AppCenter.Analytics" Version="2.1.1" />
<PackageReference Include="Microsoft.AppCenter.Crashes" Version="2.1.1" />
<PackageReference Include="Microsoft.AppCenter.Distribute" Version="2.1.1" />
<PackageReference Include="Xamarin.Forms" Version="4.3.0.947036" />
<PackageReference Include="Xamarin.Forms.Visual.Material" Version="4.3.0.947036" />
<PackageReference Include="Microsoft.NETCore.UniversalWindowsPlatform" Version="6.1.9" />
<PackageReference Include="Microsoft.AppCenter" Version="3.0.0" />
<PackageReference Include="Microsoft.AppCenter.Analytics" Version="3.0.0" />
<PackageReference Include="Microsoft.AppCenter.Crashes" Version="3.0.0" />
<PackageReference Include="Microsoft.AppCenter.Distribute" Version="3.0.0" />
<PackageReference Include="Xamarin.Forms" Version="4.5.0.356" />
<PackageReference Include="Xamarin.Forms.Visual.Material" Version="4.5.0.356" />
<PackageReference Include="Microsoft.NETCore.UniversalWindowsPlatform" Version="6.2.9" />
<PackageReference Include="System.Numerics.Vectors" Version="4.5.0" />
</ItemGroup>
<ItemGroup>
<SDKReference Include="WindowsMobile, Version=10.0.16299.0">
<Name>Windows Mobile Extensions for the UWP</Name>
</SDKReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\Xamarin.Essentials\Xamarin.Essentials.csproj">
<Project>{63a4f6a1-48bf-4d32-aed7-82f605edb042}</Project>
Expand Down Expand Up @@ -199,6 +194,11 @@
<Content Include="Assets\Wide310x150Logo.scale-400.png" />
<Content Include="Properties\Default.rd.xml" />
</ItemGroup>
<ItemGroup>
<SDKReference Include="WindowsMobile, Version=10.0.18362.0">
<Name>Windows Mobile Extensions for the UWP</Name>
</SDKReference>
</ItemGroup>
<PropertyGroup Condition=" '$(VisualStudioVersion)' == '' or '$(VisualStudioVersion)' &lt; '14.0' ">
<VisualStudioVersion>14.0</VisualStudioVersion>
</PropertyGroup>
Expand Down
15 changes: 8 additions & 7 deletions Samples/Samples.iOS/Samples.iOS.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,9 @@
<OutputPath>bin\iPhoneSimulator\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<MtouchLink>None</MtouchLink>
<MtouchLink>Full</MtouchLink>
<MtouchArch>x86_64</MtouchArch>
<MtouchExtraArgs>--linkskip=Xamarin.Forms.Platform.iOS --linkskip=Xamarin.Forms.Platform --linkskip=Xamarin.Forms.Core --linkskip=Xamarin.Forms.Xaml --linkskip=Samples</MtouchExtraArgs>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|iPhone' ">
<DebugSymbols>true</DebugSymbols>
Expand Down Expand Up @@ -72,12 +73,12 @@
<Reference Include="System.Numerics.Vectors" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AppCenter" Version="2.1.1" />
<PackageReference Include="Microsoft.AppCenter.Analytics" Version="2.1.1" />
<PackageReference Include="Microsoft.AppCenter.Crashes" Version="2.1.1" />
<PackageReference Include="Microsoft.AppCenter.Distribute" Version="2.1.1" />
<PackageReference Include="Xamarin.Forms" Version="4.3.0.947036" />
<PackageReference Include="Xamarin.Forms.Visual.Material" Version="4.3.0.947036" />
<PackageReference Include="Microsoft.AppCenter" Version="3.0.0" />
<PackageReference Include="Microsoft.AppCenter.Analytics" Version="3.0.0" />
<PackageReference Include="Microsoft.AppCenter.Crashes" Version="3.0.0" />
<PackageReference Include="Microsoft.AppCenter.Distribute" Version="3.0.0" />
<PackageReference Include="Xamarin.Forms" Version="4.5.0.356" />
<PackageReference Include="Xamarin.Forms.Visual.Material" Version="4.5.0.356" />
<PackageReference Include="System.Numerics.Vectors" Version="4.5.0" />
</ItemGroup>
<ItemGroup>
Expand Down
12 changes: 6 additions & 6 deletions Samples/Samples/Samples.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.AppCenter" Version="2.1.1" />
<PackageReference Include="Microsoft.AppCenter.Analytics" Version="2.1.1" />
<PackageReference Include="Microsoft.AppCenter.Crashes" Version="2.1.1" />
<PackageReference Include="Microsoft.AppCenter.Distribute" Version="2.1.1" />
<PackageReference Include="Xamarin.Forms" Version="4.3.0.947036" />
<PackageReference Include="Xamarin.Forms.Visual.Material" Version="4.3.0.947036" />
<PackageReference Include="Microsoft.AppCenter" Version="3.0.0" />
<PackageReference Include="Microsoft.AppCenter.Analytics" Version="3.0.0" />
<PackageReference Include="Microsoft.AppCenter.Crashes" Version="3.0.0" />
<PackageReference Include="Microsoft.AppCenter.Distribute" Version="3.0.0" />
<PackageReference Include="Xamarin.Forms" Version="4.5.0.356" />
<PackageReference Include="Xamarin.Forms.Visual.Material" Version="4.5.0.356" />
<PackageReference Include="System.Numerics.Vectors" Version="4.5.0" />
</ItemGroup>

Expand Down
4 changes: 2 additions & 2 deletions Xamarin.Essentials/Launcher/Launcher.android.cs
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,10 @@ static Task PlatformOpenAsync(OpenFileRequest request)

static async Task<bool> PlatformTryOpenAsync(Uri uri)
{
var canOpen = await PlatformCanOpenAsync(uri).ConfigureAwait(false);
var canOpen = await PlatformCanOpenAsync(uri);

if (canOpen)
await PlatformOpenAsync(uri).ConfigureAwait(false);
await PlatformOpenAsync(uri);

return canOpen;
}
Expand Down
4 changes: 2 additions & 2 deletions Xamarin.Essentials/Launcher/Launcher.tizen.cs
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,10 @@ static Task PlatformOpenAsync(OpenFileRequest request)

static async Task<bool> PlatformTryOpenAsync(Uri uri)
{
var canOpen = await PlatformCanOpenAsync(uri).ConfigureAwait(false);
var canOpen = await PlatformCanOpenAsync(uri);

if (canOpen)
await PlatformOpenAsync(uri).ConfigureAwait(false);
await PlatformOpenAsync(uri);

return canOpen;
}
Expand Down
4 changes: 2 additions & 2 deletions Xamarin.Essentials/Launcher/Launcher.uwp.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ static async Task PlatformOpenAsync(OpenFileRequest request)

static async Task<bool> PlatformTryOpenAsync(Uri uri)
{
var canOpen = await PlatformCanOpenAsync(uri).ConfigureAwait(false);
var canOpen = await PlatformCanOpenAsync(uri);

if (canOpen)
return await WinLauncher.LaunchUriAsync(uri).AsTask().ConfigureAwait(false);
return await WinLauncher.LaunchUriAsync(uri).AsTask();

return canOpen;
}
Expand Down
16 changes: 13 additions & 3 deletions Xamarin.Essentials/OrientationSensor/OrientationSensor.android.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,21 @@ void ISensorEventListener.OnAccuracyChanged(Sensor sensor, [GeneratedEnum] Senso

void ISensorEventListener.OnSensorChanged(SensorEvent e)
{
if ((e?.Values?.Count ?? 0) < 4)
var count = e?.Values?.Count ?? 0;
if (count < 3)
return;

var data = new OrientationSensorData(e.Values[0], e.Values[1], e.Values[2], e.Values[3]);
OrientationSensor.OnChanged(data);
OrientationSensorData? data;

// Docs: https://developer.android.com/reference/android/hardware/SensorEvent#sensor.type_rotation_vector-:
// values[3], originally optional, will always be present from SDK Level 18 onwards. values[4] is a new value that has been added in SDK Level 18.

if (count < 4)
data = new OrientationSensorData(e.Values[0], e.Values[1], e.Values[2], -1);
else
data = new OrientationSensorData(e.Values[0], e.Values[1], e.Values[2], e.Values[3]);

OrientationSensor.OnChanged(data.Value);
}
}
}
3 changes: 3 additions & 0 deletions Xamarin.Essentials/Permissions/Permissions.android.cs
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,9 @@ public partial class Battery : BasePlatformPermission
{
public override (string androidPermission, bool isRuntime)[] RequiredPermissions =>
new (string, bool)[] { (Manifest.Permission.BatteryStats, false) };

public override Task<PermissionStatus> CheckStatusAsync() =>
Task.FromResult(IsDeclaredInManifest(Manifest.Permission.BatteryStats) ? PermissionStatus.Granted : PermissionStatus.Denied);
}

public partial class CalendarRead : BasePlatformPermission
Expand Down
4 changes: 3 additions & 1 deletion Xamarin.Essentials/PhoneDialer/PhoneDialer.android.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@ static void PlatformOpen(string number)
phoneNumber = PhoneNumberUtils.FormatNumber(number);
#pragma warning restore CS0618

phoneNumber = URLEncoder.Encode(phoneNumber, "UTF-8");
// if we are an extension then we need to encode
if (phoneNumber.Contains(',') || phoneNumber.Contains(';'))
phoneNumber = URLEncoder.Encode(phoneNumber, "UTF-8");

var dialIntent = ResolveDialIntent(phoneNumber);

Expand Down
7 changes: 6 additions & 1 deletion Xamarin.Essentials/Platform/Platform.android.cs
Original file line number Diff line number Diff line change
Expand Up @@ -180,8 +180,13 @@ internal static AndroidUri GetShareableFileUri(string filename)
false;
#endif

static int? sdkInt;

internal static int SdkInt
=> sdkInt ??= (int)Build.VERSION.SdkInt;

internal static bool HasApiLevel(BuildVersionCodes versionCode) =>
(int)Build.VERSION.SdkInt >= (int)versionCode;
SdkInt >= (int)versionCode;

internal static CameraManager CameraManager =>
AppContext.GetSystemService(Context.CameraService) as CameraManager;
Expand Down
22 changes: 13 additions & 9 deletions Xamarin.Essentials/TextToSpeech/TextToSpeech.ios.tvos.watchos.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using System.Collections.Generic;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
Expand All @@ -8,14 +9,18 @@ namespace Xamarin.Essentials
{
public static partial class TextToSpeech
{
static readonly Lazy<AVSpeechSynthesizer> speechSynthesizer = new Lazy<AVSpeechSynthesizer>();

internal static Task<IEnumerable<Locale>> PlatformGetLocalesAsync() =>
Task.FromResult(AVSpeechSynthesisVoice.GetSpeechVoices()
.Select(v => new Locale(v.Language, null, v.Language, v.Identifier)));

internal static Task PlatformSpeakAsync(string text, SpeechOptions options, CancellationToken cancelToken = default)
internal static async Task PlatformSpeakAsync(string text, SpeechOptions options, CancellationToken cancelToken = default)
{
var speechUtterance = GetSpeechUtterance(text, options);
return SpeakUtterance(speechUtterance, cancelToken);
using (var speechUtterance = GetSpeechUtterance(text, options))
{
await SpeakUtterance(speechUtterance, cancelToken);
}
}

static AVSpeechUtterance GetSpeechUtterance(string text, SpeechOptions options)
Expand Down Expand Up @@ -44,24 +49,23 @@ static AVSpeechUtterance GetSpeechUtterance(string text, SpeechOptions options)
internal static async Task SpeakUtterance(AVSpeechUtterance speechUtterance, CancellationToken cancelToken)
{
var tcsUtterance = new TaskCompletionSource<bool>();
var speechSynthesizer = new AVSpeechSynthesizer();
try
{
speechSynthesizer.DidFinishSpeechUtterance += OnFinishedSpeechUtterance;
speechSynthesizer.SpeakUtterance(speechUtterance);
speechSynthesizer.Value.DidFinishSpeechUtterance += OnFinishedSpeechUtterance;
speechSynthesizer.Value.SpeakUtterance(speechUtterance);
using (cancelToken.Register(TryCancel))
{
await tcsUtterance.Task;
}
}
finally
{
speechSynthesizer.DidFinishSpeechUtterance -= OnFinishedSpeechUtterance;
speechSynthesizer.Value.DidFinishSpeechUtterance -= OnFinishedSpeechUtterance;
}

void TryCancel()
{
speechSynthesizer?.StopSpeaking(AVSpeechBoundary.Word);
speechSynthesizer.Value?.StopSpeaking(AVSpeechBoundary.Word);
tcsUtterance?.TrySetResult(true);
}

Expand Down
2 changes: 1 addition & 1 deletion Xamarin.Essentials/Xamarin.Essentials.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
<Compile Include="**\*.netstandard.*.cs" />
</ItemGroup>
<ItemGroup Condition=" $(TargetFramework.StartsWith('uap10.0')) ">
<PackageReference Include="Microsoft.NETCore.UniversalWindowsPlatform" Version="6.1.9" />
<PackageReference Include="Microsoft.NETCore.UniversalWindowsPlatform" Version="6.2.9" />
<Compile Include="**\*.uwp.cs" />
<Compile Include="**\*.uwp.*.cs" />
<SDKReference Include="WindowsMobile, Version=10.0.16299.0">
Expand Down
2 changes: 1 addition & 1 deletion docs/en/Xamarin.Essentials/AppInfo.xml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
<Docs>
<summary>Gets the application package name or identifier.</summary>
<value>The package name or identifier.</value>
<remarks>On android and iOS, this is the application package name. On UWP, this is the application GUID.</remarks>
<remarks>On Android and iOS, this is the application package name. On UWP, this is the application GUID.</remarks>
</Docs>
</Member>
<Member MemberName="RequestedTheme">
Expand Down
Loading

0 comments on commit c59c747

Please sign in to comment.