-
Notifications
You must be signed in to change notification settings - Fork 95
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[BUG] Package wouldn't let app compile in Gradle 7x #181
Comments
Same here. build.gradle gradle-wrapper.properties distributionBase=GRADLE_USER_HOME "react": "18.1.0", |
This solved my problem. Thank you. |
Found a fix for that particular problem, as said by @wcosmas in #175 maven was remove in Gradle 7.
This whole repo won't compile in Gradle 7, to fix that, you need to make some changes to the
buid.gradle
file inside the module folder (node_modules\react-native-alarm-notification\android\build.gradle
)line 23:
apply plugin: 'maven-publish'
line 43:
apply plugin: 'maven-publish'
line 112 replace the whole
task
block:line 145 comment/remove the whole
task
block:(honestly anything past line 108 is probably not needed for this to run but I didn't check)
after that the app will build with Gradle >=7
Originally posted by @Amitb01FUB in #175 (comment)
The text was updated successfully, but these errors were encountered: