Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update nuget packages #562

Merged
merged 4 commits into from Oct 3, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -36,7 +36,7 @@ Get started by reading through the [In-App Billing Plugin documentation](https:/


## Version 7 Major Updates
* Android: You must compile and target against Android 12 or higher
* Android: You must compile and target against Android 12 or higher (or Android 13 if v7.1)
* Android: Now using Android Billing v6
* Android: Major changes to Android product details, subscriptions, and more
* Android: Please read through: https://developer.android.com/google/play/billing/migrate-gpblv6
Expand Down
10 changes: 5 additions & 5 deletions src/Plugin.InAppBilling/Plugin.InAppBilling.csproj
@@ -1,7 +1,7 @@
<Project Sdk="MSBuild.Sdk.Extras/3.0.44">
<PropertyGroup>
<!--<TargetFrameworks>netstandard2.0;net7.0-android</TargetFrameworks>-->
<TargetFrameworks>netstandard2.0;MonoAndroid12.0;Xamarin.iOS10;Xamarin.TVOS10;Xamarin.Mac20;net6.0-android;net6.0-ios;net6.0-maccatalyst;net6.0-tvos;net6.0-macos</TargetFrameworks>
<TargetFrameworks>netstandard2.0;MonoAndroid13.0;Xamarin.iOS10;Xamarin.TVOS10;Xamarin.Mac20;net6.0-android;net6.0-ios;net6.0-maccatalyst;net6.0-tvos;net6.0-macos</TargetFrameworks>
<TargetFrameworks Condition=" '$(OS)' == 'Windows_NT' ">$(TargetFrameworks);uap10.0.19041;net6.0-windows10.0.19041;</TargetFrameworks>
<LangVersion>10.0</LangVersion>
<AssemblyName>Plugin.InAppBilling</AssemblyName>
Expand Down Expand Up @@ -98,14 +98,14 @@

<ItemGroup Condition=" $(TargetFramework.Contains('-android')) ">
<Compile Include="**\*.android.cs" />
<PackageReference Include="Xamarin.Android.Google.BillingClient" Version="6.0.0" />
<PackageReference Include="Xamarin.Google.Guava.ListenableFuture" Version="1.0.0.13" />
<PackageReference Include="Xamarin.Android.Google.BillingClient" Version="6.0.1.1" />
<PackageReference Include="Xamarin.Google.Guava.ListenableFuture" Version="1.0.0.15" />
</ItemGroup>

<ItemGroup Condition=" $(TargetFramework.StartsWith('MonoAndroid')) ">
<Compile Include="**\*.android.cs" />
<PackageReference Include="Xamarin.Essentials" Version="1.7.5" />
<PackageReference Include="Xamarin.Android.Google.BillingClient" Version="6.0.0" />
<PackageReference Include="Xamarin.Essentials" Version="1.8.0" />
<PackageReference Include="Xamarin.Android.Google.BillingClient" Version="6.0.1.1" />
<PackageReference Include="System.ValueTuple" Version="4.5.0" />
</ItemGroup>

Expand Down