react-native-blur
react-native-blur copied to clipboard
Overrides a depricated API
Uses or overrides depricated API
react-native --v : 0.59.9 npm --v : 6.13.2 react-native-community --v : 3.3.1
I am getting this error on android. Please let me know how to fix this ASAP.
node_modules/@react-native-community/blur/android/src/main/java/com/cmcewen/blurview/BlurringView.java: uses or overrides a deprecated API. Recompile with -Xlint:deprecation for details.
Also getting this error
Add the following to app/build.gradle
as a workaround:
allprojects {
...
gradle.projectsEvaluated {
tasks.withType(JavaCompile) {
options.compilerArgs << "-Xlint:deprecation"
}
}
}
Source: https://stackoverflow.com/questions/49711773/how-to-recompile-with-xlintdeprecation