Home > database >  Android studio Arctic Fox gradle procject settings not exists
Android studio Arctic Fox gradle procject settings not exists

Time:10-26

I need change Java 1.8 to Java 11 or higher but when go to Settings > Gradle don't have Gradle projects options.

I'm open my project in Android Studio but don't have this option.

Any solution how fix this problem?

enter image description here

CodePudding user response:

These settings are project-specific. You need to have a project opened in your Studio to see the project-specific settings here.

CodePudding user response:

It seems that Gradle wasn't configured for your project. If you want to use Gradle, you can add it first

In other cases see Project Structure -> Project settings (Ctrl Alt Shift S). You can here change Java version for non-Gradle projects.

  • Related