Skip to content

Commit

Permalink
Merge pull request #18 from spoonconsulting/use-implementation-instea…
Browse files Browse the repository at this point in the history
…d-of-compile

Use implementation instead of compile
  • Loading branch information
parveshneedhoo committed May 14, 2024
2 parents 3152740 + bfec9ca commit 8d8be11
Show file tree
Hide file tree
Showing 5 changed files with 38 additions and 5 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ ChangeLog

Please also read the [Upgrade Guide](https://github.com/katzer/cordova-plugin-local-notifications/wiki/Upgrade-Guide) for more information.

#### Version 1.0.6 (14.05.2024)
- "Compile" has been deprecated use implementation instead for Android

#### Version 1.0.5 (18.07.2022)
- Fix Null Pointer Exception in Manager Class for Android

Expand Down
34 changes: 32 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@spoonconsulting/cordova-plugin-local-notification",
"version": "1.0.5",
"version": "1.0.6",
"description": "Schedules and queries for local notifications",
"cordova": {
"id": "@spoonconsulting/cordova-plugin-local-notification",
Expand Down
2 changes: 1 addition & 1 deletion plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
id="@spoonconsulting/cordova-plugin-local-notification"
version="1.0.5">
version="1.0.6">

<name>LocalNotification</name>

Expand Down
2 changes: 1 addition & 1 deletion src/android/build/localnotification.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@ if (!project.ext.has('appShortcutBadgerVersion')) {
}

dependencies {
compile "me.leolin:ShortcutBadger:${appShortcutBadgerVersion}@aar"
implementation "me.leolin:ShortcutBadger:${appShortcutBadgerVersion}@aar"
}

0 comments on commit 8d8be11

Please sign in to comment.