Skip to content

Commit

Permalink
Migrate to Gradle implementation
Browse files Browse the repository at this point in the history
- Starting on Gradle 7.0 the compile method is removed.
- Trying to build an app making use of the compile method returns
the following: > Could not find method compile() for arguments...
- This change migrates compile instances in the Gradle config file
to use implementation instead
  • Loading branch information
ygpedroso committed Aug 9, 2022
1 parent caff55e commit e56ad35
Showing 1 changed file with 1 addition and 1 deletion.
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 e56ad35

Please sign in to comment.