-
Notifications
You must be signed in to change notification settings - Fork 13
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
Play Core library getting split! Future of In-App Reviews #22
Comments
Hey @saamerm , while we shortly talked on Twitter Chat... Did you try the official Bindings like Xamarin.Google.Android.Play.App.Update or Xamarin.Google.Android.Play.Review ? |
@PatGet when I last looked at it, there was no new bindings anyone had, so I tried to create ones myself but I had a hard time. I will try these and let you know when I get a chance! If you have, let me know |
We recently implemented this in MAUI, the use is as simple as possible in one line, maybe it will help someone:
<PackageReference Include="Oscore.Maui.Android.InAppUpdates" Version="1.0.0" />
builder
.UseMauiApp<App>()
+ .UseAndroidInAppUpdates()
.ConfigureFonts(fonts =>
{
fonts.AddFont("OpenSans-Regular.ttf", "OpenSansRegular");
fonts.AddFont("OpenSans-Semibold.ttf", "OpenSansSemibold");
}); https://github.com/oscoreio/Maui.Android.InAppUpdates Also thank you very much for this package, it helped me in implementation along with the official documentation |
@PatGet as you might be aware, the play core library monolith is getting split into individual libraries!
https://developer.android.com/reference/com/google/android/play/core/release-notes-in_app_reviews
Would you like to take the lead and create a Xamarin nuget for each? Or should I go ahead and just create the "In App Review" one?
Please let me know!
The text was updated successfully, but these errors were encountered: