From 5d9614d3d5cb7337d096e937995c9fc255298630 Mon Sep 17 00:00:00 2001 From: Mesut ALTUNCU Date: Mon, 13 Jun 2022 23:32:36 +0300 Subject: [PATCH] fix maven compile error (#116) --- android/build.gradle | 7 ------- 1 file changed, 7 deletions(-) diff --git a/android/build.gradle b/android/build.gradle index 49bb912..efae34f 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -21,7 +21,6 @@ def safeExtGet(prop, fallback) { } apply plugin: 'com.android.library' -apply plugin: 'maven' buildscript { // The Android Gradle plugin is only required when opening the android folder stand-alone. @@ -40,7 +39,6 @@ buildscript { } apply plugin: 'com.android.library' -apply plugin: 'maven' android { compileSdkVersion safeExtGet('compileSdkVersion', DEFAULT_COMPILE_SDK_VERSION) @@ -142,10 +140,5 @@ afterEvaluate { project -> 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 - } } }