tectiv3 / react-native-aes

Native module for AES encryption
MIT License
188 stars 135 forks source link

Plugin with id 'maven' not found #64

Closed nakulsaini closed 2 years ago

nakulsaini commented 2 years ago

Android build failing with Plugin with id 'maven' not found error. React Native Version: 0.67.2

Temporarily fixed it by following change: apply plugin: 'maven' to apply plugin: 'maven-publish' at file _./nodemodules/react-native-aes-crypto/android/build.gradle

tectiv3 commented 2 years ago

In Gradle 7.x,

The maven plugin has been removed. You should use the maven-publish plugin instead.

AndreaGProg commented 2 years ago

in ./node_modules/react-native-aes-crypto/android/build.gradle change this apply plugin: 'maven' with apply plugin: 'maven-publish'