Skip to content

Commit

Permalink
Bump Xamarin.Forms from 5.0.0.2578 to 5.0.0.2612 (#681)
Browse files Browse the repository at this point in the history
* Bump Xamarin.Forms from 5.0.0.2578 to 5.0.0.2612

Bumps Xamarin.Forms from 5.0.0.2578 to 5.0.0.2612.

---
updated-dependencies:
- dependency-name: Xamarin.Forms
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Update Android Dependencies

* Resolve Nullability

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Brandon Minnick <[email protected]>
  • Loading branch information
dependabot[bot] and brminnick authored Aug 11, 2023
1 parent 03134dd commit b2d555c
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion GitTrends.Android/CustomRenderers/SearchPageRenderer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ void AddSearchToToolbar(in string pageTitle)
void HandleQueryTextChange(object sender, SearchView.QueryTextChangeEventArgs e)
{
if (Element is ISearchPage searchPage)
searchPage.OnSearchBarTextChanged(e.NewText);
searchPage.OnSearchBarTextChanged(e?.NewText ?? string.Empty);
}
}
}
6 changes: 4 additions & 2 deletions GitTrends.Android/GitTrends.Android.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
<Reference Include="System.Net.Http" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Xamarin.Forms" Version="5.0.0.2578" />
<PackageReference Include="Xamarin.Forms" Version="5.0.0.2612" />
<PackageReference Include="Polly" Version="7.2.4" />
<PackageReference Include="Syncfusion.Xamarin.SfChart" Version="22.2.7" />
<PackageReference Include="sqlite-net-pcl" Version="1.8.116" />
Expand All @@ -106,7 +106,9 @@
<PackageReference Include="Xamarin.AndroidX.Lifecycle.Extensions" Version="2.2.0.10" />
<PackageReference Include="Xamarin.AndroidX.Work.Runtime" Version="2.7.1.1" />
<PackageReference Include="Xamarin.AndroidX.Lifecycle.LiveData" Version="2.4.0.2" />
<PackageReference Include="Xamarin.AndroidX.Core" Version="1.9.0.1" />
<PackageReference Include="Xamarin.AndroidX.Core" Version="1.10.1.2" />
<PackageReference Include="Xamarin.AndroidX.AppCompat" Version="1.6.1.3" />
<PackageReference Include="Xamarin.AndroidX.Lifecycle.Process" Version="2.6.1.3" />
</ItemGroup>
<ItemGroup>
<Compile Include="MainActivity.cs" />
Expand Down
2 changes: 1 addition & 1 deletion GitTrends.iOS/GitTrends.iOS.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -464,7 +464,7 @@
<Reference Include="System.Net.Http" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Xamarin.Forms" Version="5.0.0.2578" />
<PackageReference Include="Xamarin.Forms" Version="5.0.0.2612" />
<PackageReference Include="Polly" Version="7.2.4" />
<PackageReference Include="Syncfusion.Xamarin.SfChart" Version="22.2.7" />
<PackageReference Include="sqlite-net-pcl" Version="1.8.116" />
Expand Down
2 changes: 1 addition & 1 deletion GitTrends/GitTrends.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<PackageReference Include="HtmlAgilityPack" Version="1.11.51" />
<PackageReference Include="Microsoft.AppCenter.Analytics" Version="5.0.2" />
<PackageReference Include="Microsoft.AppCenter.Crashes" Version="5.0.2" />
<PackageReference Include="Xamarin.Forms" Version="5.0.0.2578" />
<PackageReference Include="Xamarin.Forms" Version="5.0.0.2612" />
<PackageReference Include="Shiny.Notifications" Version="2.7.2" />
<PackageReference Include="Xamarin.Forms.PancakeView" Version="2.3.0.763-beta" />
<PackageReference Include="Plugin.StoreReview" Version="6.0.0" />
Expand Down

0 comments on commit b2d555c

Please sign in to comment.