Suresh B B
Suresh B B

Reputation: 1420

Exception while build and run flutter app

                           **^

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

Answers (1)

Behzad Shabanifard
Behzad Shabanifard

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

Related Questions