前提・実現したいこと
javaを勉強してみたくなり、vscodeで環境をつくっていたところ、突如以下のようなエラーメッセージが表示されました。
以前にFlutterを勉強していたので、それが干渉しているのかなと考えています。
Flutterのデバッグやjavaの実行は問題なくできます。
googleで検索しても自分に合ったのが見つからなかったので、ご教授お願い致します。
※お家にあったjavaの本がjava8専用だったので、java8を採用しています。
発生している問題・エラーメッセージ
The declared package "io.flutter.plugins" does not match the expected package "hiroapp.android.app.src.main.java.io.flutter.plugins"
The import androidx cannot be resolved The import io.flutter.Log cannot be resolved The import io.flutter.embedding cannot be resolved FlutterEngine cannot be resolved to a type ```java package io.flutter.plugins; import androidx.annotation.Keep; import androidx.annotation.NonNull; import io.flutter.Log; import io.flutter.embedding.engine.FlutterEngine; /** * Generated file. Do not edit. * This file is generated by the Flutter tool based on the * plugins that support the Android platform. */ @Keep public final class GeneratedPluginRegistrant { private static final String TAG = "GeneratedPluginRegistrant"; public static void registerWith(@NonNull FlutterEngine flutterEngine) { } }
試したこと
・google検索
・vscodeの問題表示のところで、ヒントマークみたいなのをポチポチ
補足情報(FW/ツールのバージョンなど)
・win11
・Flutter:2.8.1
・java:SE17
・java8
あなたの回答
tips
プレビュー