I just upgraded react-native to Gradle version 7.0 for Android and i am facing this build error:
A problem occurred evaluating project ':react-native-switch-audio-output'.
Plugin with id 'maven' not found.
This is when i try to sync my project files with Gradle files
As per what i google, the 'maven' plugin is deprecated in gradle 7. The suggested replacement is maven-publish
Seems like this package is not maintained anymore. For us the solution was to remove it from our package.json and copy&paste implementation to our repo
I just upgraded react-native to Gradle version 7.0 for Android and i am facing this build error:
A problem occurred evaluating project ':react-native-switch-audio-output'.
This is when i try to sync my project files with Gradle files As per what i google, the 'maven' plugin is deprecated in gradle 7. The suggested replacement is maven-publish
Can this plugin be updated ?