はじめまして。
こちらの記事で解決できそうです。
Properties():
Flutter: Cannot resolve symbol ‘Properties’
GradleException:
Android Studioで作成したFlutterプロジェクトがGradleまわりのErrorを吐いたので解決する
(質問文にエラーが出ているファイル名とエラー文があると回答がつきやすいかもしれないですね!)
--追記---------------------------------------------
もう少し詳しく書いてみます。
FileNotFoundExceptionに変更。
app/build.gradle
build.gradle
1if (flutterRoot == null) {
2 //throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.")
3↓
4 throw new FileNotFoundException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.")
5}
app/build.gradle
build.gradle
1android {
2 compileSdkVersion 29 //←この数字を覚える。
3
4 sourceSets {
5 main.java.srcDirs += 'src/main/kotlin'
6 }
7
8 defaultConfig {
9 // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
10 applicationId "com.example.untitled1"
11 minSdkVersion 16
12 targetSdkVersion 29 //←この数字を覚える。
13 versionCode flutterVersionCode.toInteger()
14 versionName flutterVersionName
15 }
ファイル→プロジェクト構造
プロジェクトSDKを先ほどのバージョンと揃える。
モジュールSDKを先ほどのバージョンと揃える。
こちらでいかがでしょうか!
これでも無理な場合は申し訳ないですがわかりません。
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/09/23 13:51
2021/09/23 14:03
2021/09/26 16:36
2021/09/28 14:21
2021/09/28 15:24
2021/10/05 13:22