{"id":22239263,"url":"https://github.com/oscoreio/maui.android.inappupdates","last_synced_at":"2025-07-27T23:32:10.570Z","repository":{"id":211892104,"uuid":"728994832","full_name":"oscoreio/Maui.Android.InAppUpdates","owner":"oscoreio","description":"NuGet package that implementing Android In-App Updates within a MAUI application with debugging capabilities","archived":false,"fork":false,"pushed_at":"2024-03-13T12:32:47.000Z","size":343,"stargazers_count":6,"open_issues_count":2,"forks_count":2,"subscribers_count":2,"default_branch":"main","last_synced_at":"2024-03-13T13:46:22.115Z","etag":null,"topics":["android","csharp","dotnet","in-app-update","in-app-update-android","in-app-updates","maui","net8","net80","oscore"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/oscoreio.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null}},"created_at":"2023-12-08T06:51:40.000Z","updated_at":"2024-03-13T13:46:23.030Z","dependencies_parsed_at":"2023-12-13T17:59:37.795Z","dependency_job_id":"7f413b6c-c464-43ca-b97e-6d3b126284aa","html_url":"https://github.com/oscoreio/Maui.Android.InAppUpdates","commit_stats":null,"previous_names":["oscoreio/maui.android.inappupdates"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oscoreio%2FMaui.Android.InAppUpdates","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oscoreio%2FMaui.Android.InAppUpdates/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oscoreio%2FMaui.Android.InAppUpdates/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oscoreio%2FMaui.Android.InAppUpdates/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/oscoreio","download_url":"https://codeload.github.com/oscoreio/Maui.Android.InAppUpdates/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":227843627,"owners_count":17828006,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["android","csharp","dotnet","in-app-update","in-app-update-android","in-app-updates","maui","net8","net80","oscore"],"created_at":"2024-12-03T03:18:30.202Z","updated_at":"2025-07-27T23:32:10.558Z","avatar_url":"https://github.com/oscoreio.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Maui.Android.InAppUpdates\n\n[![Nuget package](https://img.shields.io/nuget/vpre/Oscore.Maui.Android.InAppUpdates)](https://www.nuget.org/packages/Oscore.Maui.Android.InAppUpdates/)\n[![CI/CD](https://github.com/oscoreio/Maui.Android.InAppUpdates/actions/workflows/dotnet.yml/badge.svg?branch=main)](https://github.com/oscoreio/Maui.Android.InAppUpdates/actions/workflows/dotnet.yml)\n[![License: MIT](https://img.shields.io/github/license/oscoreio/Maui.Android.InAppUpdates)](https://github.com/oscoreio/Maui.Android.InAppUpdates/blob/main/LICENSE)\n\nNuGet package that implementing Android In-App Updates for MAUI with debugging capabilities.\n![Flexible](https://developer.android.com/static/images/app-bundle/flexible_flow.png)\n\n# Usage\n- Add NuGet package to your project:\n```xml\n\u003cPackageReference Include=\"Oscore.Maui.Android.InAppUpdates\" Version=\"1.2.0\" /\u003e\n```\n- Add the following to your `MauiProgram.cs` `CreateMauiApp` method:\n```diff\nbuilder\n    .UseMauiApp\u003cApp\u003e()\n+   .UseAndroidInAppUpdates()\n    .ConfigureFonts(fonts =\u003e\n    {\n        fonts.AddFont(\"OpenSans-Regular.ttf\", \"OpenSansRegular\");\n        fonts.AddFont(\"OpenSans-Semibold.ttf\", \"OpenSansSemibold\");\n    });\n```\n\n## Notes\nThe default behavior:\n- If priority 1-3 is specified, flexible update will be offered\n- If priority 4-5 is specified, immediate update will be offered\n\nThere is no need to specify conditional compilation here, the package provides an empty method for non netx.0-android platforms as a stub to make integration as simple as possible.  \nIt will display a window when starting an application or resume according to the official guides.  \nYou cannot see the popup dialog while developing or if you distribute it manually. \nAs you can [see here](https://developer.android.com/guide/playcore/in-app-review/test), \nyou have to download the app from the Play Store to see the popup. \nI recommend using Android Play Store's [“Internal App Sharing”](https://play.google.com/console/about/internalappsharing/) feature to test.  \n\n\n# Links\n- https://developer.android.com/guide/playcore/in-app-updates/kotlin-java\n- https://github.com/PatGet/XamarinPlayCoreUpdater\n- https://github.com/xamarin/GooglePlayServicesComponents/issues/796\n- https://github.com/PatGet/XamarinPlayCoreUpdater/issues/22\n- https://github.com/PatGet/XamarinPlayCoreUpdater/issues/17\n- https://github.com/PatGet/XamarinPlayCoreUpdater/pull/20#issuecomment-1273774958\n- https://stackoverflow.com/questions/56218160/how-to-implement-google-play-in-app-update-and-use-play-core-library-with-xamari\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foscoreio%2Fmaui.android.inappupdates","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Foscoreio%2Fmaui.android.inappupdates","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foscoreio%2Fmaui.android.inappupdates/lists"}