Skip to content

Commit 51546d3

Browse files
committed
nuget 2.0.7
1 parent 21bb721 commit 51546d3

14 files changed

+35
-5
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
3+
<metadata>
4+
<id>Plugin.LocalNotification</id>
5+
<version>2.0.7</version>
6+
<authors>Elvin (Tharindu) Thudugala,Yun Chen,Tim Fortune</authors>
7+
<owners>ththlk,masonyc,TimNZ</owners>
8+
<requireLicenseAcceptance>true</requireLicenseAcceptance>
9+
<license type="expression">MIT</license>
10+
<projectUrl>https://github.com/tmt242001/Plugin.LocalNotification</projectUrl>
11+
<iconUrl>https://raw.githubusercontent.com/tmt242001/Plugin.LocalNotification/master/Screenshots/icon.png</iconUrl>
12+
<description>The local notification plugin provides a way to show local notifications from Xamarin.Forms apps.</description>
13+
<releaseNotes>Check: https://github.com/tmt242001/Plugin.LocalNotification/releases</releaseNotes>
14+
<copyright>Copyright © Tharindu Thudugala</copyright>
15+
<tags>abel, xamarin.forms, local.notification, notification</tags>
16+
<repository type="git" url="https://github.com/tmt242001/Plugin.LocalNotification" commit="21bb72142d365cd86dd3f4305f89baf0bc765294" />
17+
<title>Xamarin.Forms local notification</title>
18+
</metadata>
19+
<files>
20+
<file src="lib\**" target="lib" />
21+
</files>
22+
</package>
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

README.md

+6
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,12 @@ Include the following code in the OnNewIntent() method of MainActivity:
9393
```csharp
9494
public class MainActivity : global::Xamarin.Forms.Platform.Android.FormsAppCompatActivity
9595
{
96+
protected override void OnCreate(Bundle savedInstanceState)
97+
{
98+
.....
99+
LocalNotificationService.NotifyNotificationTapped(Intent);
100+
}
101+
96102
protected override void OnNewIntent(Intent intent)
97103
{
98104
LocalNotificationService.NotifyNotificationTapped(intent);

Sample/NuGet/Sample.Android/LocalNotification.Sample.Android.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
</ItemGroup>
5757
<ItemGroup>
5858
<PackageReference Include="Plugin.LocalNotification">
59-
<Version>2.0.6</Version>
59+
<Version>2.0.7</Version>
6060
</PackageReference>
6161
<PackageReference Include="Xamarin.Forms" Version="3.4.0.1029999" />
6262
<PackageReference Include="Xamarin.Android.Support.Design" Version="28.0.0.1" />

Sample/NuGet/Sample.Android/MainActivity.cs

+2
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ protected override void OnCreate(Bundle savedInstanceState)
2222
base.OnCreate(savedInstanceState);
2323
global::Xamarin.Forms.Forms.Init(this, savedInstanceState);
2424
LoadApplication(new App());
25+
26+
LocalNotificationService.NotifyNotificationTapped(Intent);
2527
}
2628

2729
protected override void OnNewIntent(Intent intent)

Sample/NuGet/Sample.iOS/LocalNotification.Sample.iOS.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@
154154
</ItemGroup>
155155
<ItemGroup>
156156
<PackageReference Include="Plugin.LocalNotification">
157-
<Version>2.0.6</Version>
157+
<Version>2.0.7</Version>
158158
</PackageReference>
159159
<PackageReference Include="Xamarin.Forms" Version="3.4.0.1029999" />
160160
</ItemGroup>

Sample/NuGet/Sample/LocalNotification.Sample.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
</PropertyGroup>
1111

1212
<ItemGroup>
13-
<PackageReference Include="Plugin.LocalNotification" Version="2.0.6" />
13+
<PackageReference Include="Plugin.LocalNotification" Version="2.0.7" />
1414
<PackageReference Include="Xamarin.Forms" Version="3.4.0.1029999" />
1515
</ItemGroup>
1616

Sample/NuGet/Sample/MainPage.xaml.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ private void Button_Clicked(object sender, EventArgs e)
3737
Description = $"Tap Count: {_tapCount}",
3838
BadgeNumber = _tapCount,
3939
ReturningData = serializeReturningData,
40-
//NotifyTime = DateTime.Now.AddSeconds(10)
40+
NotifyTime = DateTime.Now.AddSeconds(10)
4141
};
4242

4343
notificationService.Show(notification);

scr/Plugin.LocalNotification/Plugin.LocalNotification.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<Description>The local notification plugin provides a way to show local notifications from Xamarin.Forms apps.</Description>
2121
<PackageIconUrl>https://raw.githubusercontent.com/tmt242001/Plugin.LocalNotification/master/Screenshots/icon.png</PackageIconUrl>
2222
<Copyright>Copyright © Tharindu Thudugala</Copyright>
23-
<Version>2.0.6</Version>
23+
<Version>2.0.7</Version>
2424
<PackageReleaseNotes>Check: https://github.com/tmt242001/Plugin.LocalNotification/releases </PackageReleaseNotes>
2525
<owners>ththlk,masonyc,TimNZ</owners>
2626

0 commit comments

Comments
 (0)