Skip to content

Commit de9190a

Browse files
Build fixes.
1 parent c4c62fb commit de9190a

File tree

6 files changed

+6
-10
lines changed

6 files changed

+6
-10
lines changed

sample/Sample.Android/Resources/Resource.designer.cs

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sample/Sample.Android/Sample.Android.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,8 @@
8181
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
8282
<PrivateAssets>all</PrivateAssets>
8383
</PackageReference>
84-
<PackageReference Include="System.Text.Json">
85-
<Version>5.0.1</Version>
84+
<PackageReference Include="System.Numerics.Vectors">
85+
<Version>4.5.0</Version>
8686
</PackageReference>
8787
<PackageReference Include="Xamarin.Firebase.Common">
8888
<Version>120.0.0.5</Version>

sample/Sample.iOS/AppDelegate.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,9 @@ public void DidReceiveNotificationResponse(UNUserNotificationCenter center, UNNo
5555
NotifoFirebasePlugin.DidReceiveNotificationResponse(center, response, completionHandler);
5656

5757
#pragma warning disable SA1300 // Element should begin with upper-case letter
58+
#pragma warning disable IDE1006 // Naming Styles
5859
public class iOSInitializer : IPlatformInitializer
60+
#pragma warning restore IDE1006 // Naming Styles
5961
#pragma warning restore SA1300 // Element should begin with upper-case letter
6062
{
6163
public void RegisterTypes(IContainerRegistry containerRegistry)

sample/Sample.iOS/Application.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,7 @@ public class Application
1616
// This is the main entry point of the application.
1717
private static void Main(string[] args)
1818
{
19-
// if you want to use a different Application Delegate class from "AppDelegate"
20-
// you can specify it here.
21-
UIApplication.Main(args, null, "AppDelegate");
19+
UIApplication.Main(args, null, typeof(AppDelegate));
2220
}
2321
}
2422
}

sample/Sample.iOS/Sample.iOS.csproj

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -153,9 +153,6 @@
153153
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
154154
<PrivateAssets>all</PrivateAssets>
155155
</PackageReference>
156-
<PackageReference Include="System.Text.Json">
157-
<Version>5.0.1</Version>
158-
</PackageReference>
159156
<PackageReference Include="Xamarin.Forms" Version="5.0.0.2515" />
160157
<PackageReference Include="Xamarin.Essentials" Version="1.6.1" />
161158
</ItemGroup>

sample/Sample/Sample.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
<PrivateAssets>all</PrivateAssets>
3030
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
3131
</PackageReference>
32-
<PackageReference Include="System.Text.Json" Version="5.0.1" />
3332
<PackageReference Include="Xamarin.Forms" Version="5.0.0.2515" />
3433
<PackageReference Include="Xamarin.Essentials" Version="1.6.1" />
3534
</ItemGroup>

0 commit comments

Comments
 (0)