Home > Back-end >  Execution failed for task ':app:processDebugMainManifest'. VS code
Execution failed for task ':app:processDebugMainManifest'. VS code

Time:01-22

I'm new to flutter and am trying to run a new project on VS code.

installed the latest flutter at 19/1/2022. flutter --version gives me 2.8.1. jdk is 17.0.1

this is what i get ...

Launching lib\main.dart on SM N975F in debug mode...

FAILURE: Build failed with an exception.

* What went wrong:
Could not open settings generic class cache for settings file 'G:\1-programing\Projects\Flutter\flutter_application_2\android\settings.gradle' (C:\Users\username\.gradle\caches\6.7\scripts\1fnwrr8g4rohfp291nvlxj5qe).
> BUG! exception in phase 'semantic analysis' in source unit '_BuildScript_' Unsupported class file major version 61

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.

* Get more help at https://help.gradle.org

BUILD FAILED in 1s
Exception: Gradle task assembleDebug failed with exit code 1
Exited (sigterm)

tried to change gradle, which is 6.7 in gradle-wrapper.properties, to 7.3.3 which is the latest. and this is what i get...

Launching lib\main.dart on SM N975F in debug mode...

FAILURE: Build failed with an exception.

* What went wrong:
Execution failed for task ':app:processDebugMainManifest'.
> Unable to make field private final java.lang.String java.io.File.path accessible: module java.base does not "opens java.io" to unnamed module @30206a4d
* Try:
> Run with --stacktrace option to get the stack trace.
> Run with --info or --debug option to get more log output.
> Run with --scan to get full insights.

* Get more help at https://help.gradle.org

BUILD FAILED in 3s
Exception: Gradle task assembleDebug failed with exit code 1
Exited (sigterm)

i have tried changing the build.gradle in android/app/src

defaultConfig {
        // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
        applicationId "com.example.flutter_application_2"
        minSdkVersion flutter.minSdkVersion
        targetSdkVersion flutter.targetSdkVersion
        versionCode flutterVersionCode.toInteger()
        versionName flutterVersionName
    }

to

defaultConfig {
        applicationId "com.example.gfgpagination"
        minSdkVersion 19
        targetSdkVersion 30
        versionCode 1
        versionName "1.0"

        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  } 

and it was not helpfull. have tried searching these errors but i could not use them to this day.

CodePudding user response:

Try this for last error 'Unable to make field private final java.lang.String java.io.File.path' : https://exerror.com/accessible-module-java-base-does-not-opens-java-io-to-unnamed-module/

CodePudding user response:

In your Manifest.xml add below line if it is not present:

<uses-sdk android:minSdkVersion="23" android:targetSdkVersion="31" />

For more further information you will visit below link

Stack Overflow Answer

  •  Tags:  
  • Related