You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Gradle build gives me a warning about updating the gradle file because usage at lines 72, 112 is deprecated and used like below project_root/node_modules/@notifee/react-native/android/build.gradle
old usage
...
url "..."
...
name "..."
...
new usage
...
url = "..."
...
name = "..."
...
Why?
Because 'these generated methods are now deprecated and will be removed in Gradle 10.0, and both propertyName value and propertyName(value) will stop working unless the explicit method propertyName is defined. Use explicit assignment propertyName = value instead.'
Hello 👋, to help manage issues we automatically close stale issues.
This issue has been automatically marked as stale because it has not had activity for quite some time.Has this issue been fixed, or does it still require attention?
This issue will be closed in 15 days if no further activity occurs.
Version
Android gradle plugin: 8.8.0
Gradle: 8.12
Description
Gradle build gives me a warning about updating the gradle file because usage at lines 72, 112 is deprecated and used like below
project_root/node_modules/@notifee/react-native/android/build.gradle
old usage
new usage
Why?
Because 'these generated methods are now deprecated and will be removed in Gradle 10.0, and both propertyName value and propertyName(value) will stop working unless the explicit method propertyName is defined. Use explicit assignment propertyName = value instead.'
Read more
Upgrading your build gradle from Gradle 8.x to latest
The text was updated successfully, but these errors were encountered: