Skip to content

Commit

Permalink
🐛 Fix compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
roycornelissen committed Sep 23, 2020
1 parent 6d576e9 commit 672a263
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions src/GMImagePicker/GMImagePicker.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="..\packages\NuGet.Build.Packaging.0.2.2\build\NuGet.Build.Packaging.props" Condition="Exists('..\packages\NuGet.Build.Packaging.0.2.2\build\NuGet.Build.Packaging.props')" />
<Import Project="..\..\samples\packages\NuGet.Build.Packaging.0.1.276\build\NuGet.Build.Packaging.props" Condition="Exists('..\..\samples\packages\NuGet.Build.Packaging.0.1.276\build\NuGet.Build.Packaging.props')" />
Expand All @@ -22,7 +22,7 @@
<Owners>Roy Cornelissen</Owners>
<PackageProjectUrl>https://github.com/roycornelissen/GMImagePicker.Xamarin</PackageProjectUrl>
<PackageReleaseNotes>[2.5.0]
- #77 Fix for NullReferenceException crash when setting BackgroundView color in iOS >= 14.0. Thanks @csamzhou for the PR!
- #77 Fix for NullReferenceException crash when setting BackgroundView color in iOS &gt;= 14.0. Thanks @csamzhou for the PR!
- #76 Svenska översättningar läggs till. Tack till @henzinger! (Swedish translations)
- #62 Options for customizing the back button.</PackageReleaseNotes>
<Summary>Select multiple images and/or videos from the iOS gallery and camera. Uses iOS PhotoKit API's for optimal efficiency.</Summary>
Expand Down
4 changes: 2 additions & 2 deletions src/GMImagePicker/GMImagePickerController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -137,8 +137,8 @@ public IList<PHAsset> SelectedAssets
/// </summary>
/// <remarks>
/// Overrides CustomBackButtonTitle if set to true!
/// Supported from iOS >= 14.0
/// For backwards compatibility, in iOS < 14.0 UINavigationItemBackButtonDisplayMode.Minimal will set the title to ""
/// Supported from iOS &gt;= 14.0
/// For backwards compatibility, in iOS &lt; 14.0 UINavigationItemBackButtonDisplayMode.Minimal will set the title to ""
/// </remarks>
public UINavigationItemBackButtonDisplayMode BackButtonDisplayMode { get; set; } = UINavigationItemBackButtonDisplayMode.Default;

Expand Down
6 changes: 3 additions & 3 deletions src/GMPhotoPicker.Xamarin/GMPhotoPicker.Xamarin.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
Expand Down Expand Up @@ -34,7 +34,7 @@
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
<MtouchArch>ARMv7, ARM64</MtouchArch>
<MtouchArch>ARM64</MtouchArch>
<CodesignEntitlements>Entitlements.plist</CodesignEntitlements>
<MtouchFloat32>true</MtouchFloat32>
<CodesignKey>iPhone Developer</CodesignKey>
Expand All @@ -46,7 +46,7 @@
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
<MtouchArch>i386, x86_64</MtouchArch>
<MtouchArch>x86_64</MtouchArch>
<MtouchLink>None</MtouchLink>
<CodesignKey>iPhone Developer</CodesignKey>
</PropertyGroup>
Expand Down

0 comments on commit 672a263

Please sign in to comment.