Closed nakulsaini closed 2 years ago
In Gradle 7.x,
The maven plugin has been removed. You should use the maven-publish plugin instead.
in ./node_modules/react-native-aes-crypto/android/build.gradle change this apply plugin: 'maven' with apply plugin: 'maven-publish'
Android build failing with
Plugin with id 'maven' not found
error. React Native Version: 0.67.2Temporarily fixed it by following change:
apply plugin: 'maven'
toapply plugin: 'maven-publish'
at file _./nodemodules/react-native-aes-crypto/android/build.gradle