回答編集履歴
2
bityousei
test
CHANGED
@@ -34,7 +34,9 @@
|
|
34
34
|
|
35
35
|
|
36
36
|
|
37
|
-
|
37
|
+
app/build.gradle
|
38
|
+
|
39
|
+
```build.gradle
|
38
40
|
|
39
41
|
if (flutterRoot == null) {
|
40
42
|
|
@@ -50,9 +52,9 @@
|
|
50
52
|
|
51
53
|
|
52
54
|
|
55
|
+
app/build.gradle
|
53
56
|
|
54
|
-
|
55
|
-
```
|
57
|
+
```build.gradle
|
56
58
|
|
57
59
|
android {
|
58
60
|
|
@@ -88,6 +90,10 @@
|
|
88
90
|
|
89
91
|
|
90
92
|
|
93
|
+
|
94
|
+
|
95
|
+
|
96
|
+
|
91
97
|
ファイル→プロジェクト構造
|
92
98
|
|
93
99
|
|
1
詳細の追記
test
CHANGED
@@ -17,3 +17,93 @@
|
|
17
17
|
|
18
18
|
|
19
19
|
(質問文にエラーが出ているファイル名とエラー文があると回答がつきやすいかもしれないですね!)
|
20
|
+
|
21
|
+
|
22
|
+
|
23
|
+
|
24
|
+
|
25
|
+
--追記---------------------------------------------
|
26
|
+
|
27
|
+
|
28
|
+
|
29
|
+
もう少し詳しく書いてみます。
|
30
|
+
|
31
|
+
|
32
|
+
|
33
|
+
FileNotFoundExceptionに変更。
|
34
|
+
|
35
|
+
|
36
|
+
|
37
|
+
```app/build.gradle
|
38
|
+
|
39
|
+
if (flutterRoot == null) {
|
40
|
+
|
41
|
+
//throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.")
|
42
|
+
|
43
|
+
↓
|
44
|
+
|
45
|
+
throw new FileNotFoundException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.")
|
46
|
+
|
47
|
+
}
|
48
|
+
|
49
|
+
```
|
50
|
+
|
51
|
+
|
52
|
+
|
53
|
+
|
54
|
+
|
55
|
+
```app/build.gradle
|
56
|
+
|
57
|
+
android {
|
58
|
+
|
59
|
+
compileSdkVersion 29 //←この数字を覚える。
|
60
|
+
|
61
|
+
|
62
|
+
|
63
|
+
sourceSets {
|
64
|
+
|
65
|
+
main.java.srcDirs += 'src/main/kotlin'
|
66
|
+
|
67
|
+
}
|
68
|
+
|
69
|
+
|
70
|
+
|
71
|
+
defaultConfig {
|
72
|
+
|
73
|
+
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
|
74
|
+
|
75
|
+
applicationId "com.example.untitled1"
|
76
|
+
|
77
|
+
minSdkVersion 16
|
78
|
+
|
79
|
+
targetSdkVersion 29 //←この数字を覚える。
|
80
|
+
|
81
|
+
versionCode flutterVersionCode.toInteger()
|
82
|
+
|
83
|
+
versionName flutterVersionName
|
84
|
+
|
85
|
+
}
|
86
|
+
|
87
|
+
```
|
88
|
+
|
89
|
+
|
90
|
+
|
91
|
+
ファイル→プロジェクト構造
|
92
|
+
|
93
|
+
|
94
|
+
|
95
|
+
プロジェクトSDKを先ほどのバージョンと揃える。
|
96
|
+
|
97
|
+
![ ](f38f90d3fb499dfea3dfb8a2968fa38e.png)
|
98
|
+
|
99
|
+
|
100
|
+
|
101
|
+
モジュールSDKを先ほどのバージョンと揃える。
|
102
|
+
|
103
|
+
![ ](1257f10e8d25dfe492e978cef377f444.png)
|
104
|
+
|
105
|
+
|
106
|
+
|
107
|
+
こちらでいかがでしょうか!
|
108
|
+
|
109
|
+
これでも無理な場合は申し訳ないですがわかりません。
|