Skip to content

Commit

Permalink
Update to ios 18
Browse files Browse the repository at this point in the history
  • Loading branch information
LiamMorrow committed Oct 16, 2024
1 parent fd35e35 commit a2b2ec1
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions LiftLog.Maui/LiftLog.Maui.csproj
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk.Razor">

<PropertyGroup>
<TargetFrameworks>net8.0-android;net8.0</TargetFrameworks>
<TargetFrameworks>net8.0-android</TargetFrameworks>

<TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('osx'))">$(TargetFrameworks);net8.0-ios;</TargetFrameworks>
<TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('osx'))">$(TargetFrameworks);net8.0-ios18;</TargetFrameworks>

<OutputType>Exe</OutputType>
<RootNamespace>LiftLog.Maui</RootNamespace>
@@ -110,12 +110,13 @@
<ItemGroup>
<PackageReference Include="BlazorTransitionableRoute" Version="4.0.0" />
<PackageReference Include="MaterialColorUtilities.Maui" Version="0.3.0" />
<PackageReference Include="Plugin.InAppBilling" Version="7.1.3" />
<PackageReference Include="Plugin.InAppBilling" Version="8.0.4" />
<PackageReference Include="Plugin.LocalNotification" Version="11.1.4" />
<PackageReference Include="Plugin.Maui.AppRating" Version="1.2.0" />
<PackageReference Include="Microsoft.Maui.Controls" Version="8.0.92" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebView.Maui" Version="8.0.92" />
<PackageReference Include="Sentry.Maui" Version="4.12.1" />
<PackageReference Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'android'" Include="Xamarin.AndroidX.Annotation" Version="1.8.2.1" />
</ItemGroup>

<ItemGroup Condition=" '$(Configuration)' == 'Debug' ">
2 changes: 1 addition & 1 deletion LiftLog.Maui/Services/AppPurchaseService.cs
Original file line number Diff line number Diff line change
@@ -35,7 +35,7 @@ public AppStore GetAppStore()
{
// only need to finalize if on Android unless you turn off auto finalize on iOS
await CrossInAppBilling.Current.FinalizePurchaseAsync(
purchase.TransactionIdentifier
[purchase.TransactionIdentifier]
);
}

0 comments on commit a2b2ec1

Please sign in to comment.