xlint 3adeprecation android studio

Solutions on MaxInterview for xlint 3adeprecation android studio by the best coders in the world

showing results for - "xlint 3adeprecation android studio"
Mateo
07 Jan 2021
1//add to android project level build.gradle
2allprojects {
3    gradle.projectsEvaluated {
4        tasks.withType(JavaCompile) {
5            options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
6        }
7    }
8}