Configuration 'compile' is obsolete and has been replaced with 'implementation' and 'api'.
It will be removed at the end of 2018. For more information see: http://d.android.com/r/tools/update-dependency-configurations.html
compileSdkVersion 27
buildToolsVersion "27.0.3"
To get rid of this error, modify the build.gradle file of the react-native-vector-icons module.
dependencies {
//noinspection GradleDynamicVersion
provided "com.facebook.react:react-native:${_reactNativeVersion}"
}
Becomes:
dependencies {
//noinspection GradleDynamicVersion
compileOnly "com.facebook.react:react-native:${_reactNativeVersion}"
}
There may be more of these errors throughout all of your plugins (and even in the build.gralde file of your React Native app.)
After a year, can we have an update of this module implementation please ?
Each time we install our node modules, we have to update this module to manually.
Would the maintainer of this repo accept a PR that fixes that?
Most helpful comment
After a year, can we have an update of this module implementation please ?
Each time we install our node modules, we have to update this module to manually.