emekalites / react-native-alarm-notification

schedule alarm and local notification in react-native
https://www.npmjs.com/package/react-native-alarm-notification
MIT License
223 stars 94 forks source link

Plugin with id 'maven' not found #175

Open aljimsondev opened 2 years ago

aljimsondev commented 2 years ago
error Failed to install the app. Make sure you have the Android development environment set up: https://reactnative.dev/docs/environment-setup.
Error: Command failed: gradlew.bat app:installDebug -PreactNativeDevServerPort=8081

FAILURE: Build completed with 2 failures.

1: Task failed with an exception.
-----------
* Where:
Build file 'D:\TypeScript Projects\React-Native\Scheduler\node_modules\react-native-alarm-notification\android\build.gradle' line: 23

* What went wrong:
A problem occurred evaluating project ':react-native-alarm-notification'.
> Plugin with id 'maven' not found.

* Try:
> Run with --stacktrace option to get the stack trace.
> Run with --info or --debug option to get more log output.

> Run with --scan to get full insights.
==============================================================================

2: Task failed with an exception.
-----------
* What went wrong:
A problem occurred configuring project ':react-native-alarm-notification'.
> compileSdkVersion is not specified. Please add it to build.gradle

* Try:
> Run with --stacktrace option to get the stack trace.
> Run with --info or --debug option to get more log output.

> Run with --scan to get full insights.
==============================================================================

* Get more help at https://help.gradle.org

BUILD FAILED in 54s
wcosmas commented 2 years ago

i'm having a similar issue using gradle 7x

tbd-farhad commented 2 years ago

I'm having a similar issue

Amitb01FUB commented 2 years ago

Found a fix for that particular problem, as said by @wcosmas 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:

task androidJavadoc(type: Javadoc) {
        project.configurations.getByName("implementation").setCanBeResolved(true)
        source = android.sourceSets.main.java.srcDirs
        classpath += files(android.bootClasspath)
        classpath += files(project.getConfigurations().getByName('implementation').asList())
        include '**/*.java'
    }

line 145 comment/remove the whole task block:

// task installArchives(type: Upload) {
//     configuration = configurations.archives
//     repositories.mavenDeployer {
//         // Deploy to react-native-event-bridge/maven, ready to publish to npm
//         repository url: "file://${projectDir}/../android/maven"
//         configureReactNativePom pom
//     }
// }

(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

M3BIONIX commented 1 year ago

I deleted the contents after line 108 then it compiled for me but no alarm notification

pravinsphinx commented 1 year ago

@emekalites @tuxrace I'm having a similar issue

sharifNoor commented 1 year ago

I deleted the contents after line 108 then it compiled for me but no alarm notification šŸ˜¢