Skip to content

Commit d94279e

Browse files
Merge pull request #7 from notifo-io/no-resize
No resize
2 parents 570f83f + 1a9b05e commit d94279e

File tree

73 files changed

+31394
-1683
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

73 files changed

+31394
-1683
lines changed

.editorconfig

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,6 @@ dotnet_diagnostic.IDE0010.severity = none
1414

1515
# IDE0063: Use simple 'using' statement
1616
csharp_prefer_simple_using_statement = false:suggestion
17+
18+
# IDE0090: Use 'new(...)'
19+
dotnet_diagnostic.IDE0090.severity = none

sample/Sample.Android/NotificationHandler.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ namespace Sample.Droid
1515
{
1616
public class NotificationHandler : INotificationHandler
1717
{
18-
public void OnBuildNotification(NotificationCompat.Builder notificationBuilder, NotificationDto notification)
18+
public void OnBuildNotification(NotificationCompat.Builder notificationBuilder, UserNotificationDto notification)
1919
{
2020
if (Build.VERSION.SdkInt >= BuildVersionCodes.O)
2121
{
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="1" android:versionName="1.0" package="io.notifo.xamarin.sample">
3-
<uses-sdk android:minSdkVersion="21" android:targetSdkVersion="29" />
3+
<uses-sdk android:minSdkVersion="21" android:targetSdkVersion="31" />
44
<application android:label="Sample.Android" android:theme="@style/MainTheme"></application>
55
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
66
</manifest>

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

Lines changed: 30025 additions & 79 deletions
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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,11 +81,11 @@
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">
88-
<Version>119.5.0</Version>
88+
<Version>120.0.0.5</Version>
8989
</PackageReference>
9090
<PackageReference Include="Xamarin.Forms" Version="5.0.0.2515" />
9191
<PackageReference Include="Xamarin.Essentials" Version="1.6.1" />

0 commit comments

Comments
 (0)