Reputation: 1420
**^
warning: [options] source value 7 is obsolete and will be removed in a future release warning: [options] target value 7 is obsolete and will be removed in a future release warning: [options] To suppress warnings about obsolete options, use -Xlint:-options. error: warnings found and -Werror specified FAILURE: Build failed with an exception.
Compilation failed; see the compiler error output for details.
Upvotes: 2
Views: 956
Reputation: 88
You should check your gradle version with gradle version that imported packages using that .
try this
in build gradle module level :
android/build.gradle
classpath 'com.android.tools.build:gradle:3.5.0'
in gradle wrapper
android/gradle/wrapper/gradle-wrapper.properties
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.2-all.zip
Upvotes: 1