react-native-alarm-notification icon indicating copy to clipboard operation
react-native-alarm-notification copied to clipboard

Plugin with id 'maven' not found

Open aljimsondev opened this issue 3 years ago • 6 comments

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

aljimsondev avatar Jul 12 '22 01:07 aljimsondev

i'm having a similar issue using gradle 7x

wcosmas avatar Aug 01 '22 09:08 wcosmas

I'm having a similar issue

tbd-farhad avatar Aug 23 '22 07:08 tbd-farhad

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

Amitb01FUB avatar Sep 11 '22 21:09 Amitb01FUB

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

M3BIONIX avatar Oct 02 '22 19:10 M3BIONIX

@emekalites @tuxrace I'm having a similar issue

pravinsphinx avatar Mar 20 '23 11:03 pravinsphinx

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

sharifNoor avatar Sep 01 '23 13:09 sharifNoor