ARTICLE AD BOX
I am working on a .NET MAUI (net9.0) project. For Android, I am using the following NuGet packages:
<ItemGroup Condition="'$(TargetFramework)' == 'net9.0-android'"> <PackageReference Include="Plugin.Maui.CurrentActivity" Version="1.0.0.61" /> <PackageReference Include="Xamarin.AndroidX.Fragment.Ktx" Version="1.8.2" /> <PackageReference Include="Xamarin.AndroidX.Activity" Version="1.9.1" /> <PackageReference Include="Xamarin.AndroidX.Activity.Ktx" Version="1.9.1" /> <PackageReference Include="Plugin.Firebase" Version="3.0.0" /> <PackageReference Include="Plugin.Firebase.Crashlytics" Version="3.0.0" /> </ItemGroup>In MainActivity Initialise the Firebase
FirebaseApp.InitializeApp(this);In .csproj I have updated the ApplicationVersion , ApplicationDisplayVersion and GoogleServieJason
<PropertyGroup Condition="'$(TargetFramework)' == 'net9.0-android'"> <ApplicationVersion>11</ApplicationVersion> <ApplicationDisplayVersion>9.35</ApplicationDisplayVersion> </PropertyGroup> <ItemGroup Condition="'$(TargetFramework)' == 'net9.0-android'"> <GoogleServicesJson Include="Platforms\Android\google-services.json" /> </ItemGroup>For iOS, I am using:
<ItemGroup Condition="'$(TargetFramework)' == 'net9.0-ios'"> <PackageReference Include="BTProgressHUD" Version="2.1.1" /> <PackageReference Include="AdamE.Firebase.iOS.Analytics" Version="11.8.0" /> <PackageReference Include="AdamE.Firebase.iOS.CloudMessaging" Version="11.8.0" /> <PackageReference Include="AdamE.Firebase.iOS.Core" Version="11.8.0" /> <PackageReference Include="AdamE.Firebase.iOS.Crashlytics" Version="11.8.0" /> </ItemGroup>Issue
Firebase Release Monitoring is working correctly for iOS.
However, for Android, new releases are not appearing in Firebase Release Monitoring.
Crash reporting also does not seem to reflect updated release versions.
I have attached a screenshot for reference.
Is there any additional configuration required for Android in .NET MAUI (net9.0) to enable Firebase Release Monitoring properly?
Is it support Plugin.Firebase 3.0.0 version to Firebase release monitoring in Android?
