質問編集履歴
3
dqeefe
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
unresolved referenceが出ます。
|
1
|
+
Kotlinでunresolved referenceが出ます。
|
test
CHANGED
File without changes
|
2
dqeefe
test
CHANGED
File without changes
|
test
CHANGED
@@ -28,7 +28,11 @@
|
|
28
28
|
|
29
29
|
参照したいのは、User.ktのUserクラスとActionView.ktのActionViewクラスです。
|
30
30
|
|
31
|
+
|
32
|
+
|
31
|
-
|
33
|
+
MainActivity
|
34
|
+
|
35
|
+
```
|
32
36
|
|
33
37
|
|
34
38
|
|
@@ -108,9 +112,9 @@
|
|
108
112
|
|
109
113
|
```
|
110
114
|
|
111
|
-
|
112
|
-
|
113
|
-
|
115
|
+
java/sampleqiitaclient/model/User.kt
|
116
|
+
|
117
|
+
```
|
114
118
|
|
115
119
|
package sample.qiitaclient.model
|
116
120
|
|
@@ -130,9 +134,9 @@
|
|
130
134
|
|
131
135
|
|
132
136
|
|
133
|
-
|
134
|
-
|
135
|
-
|
137
|
+
java/sampleqiitaclient/view/ActionView.kt
|
138
|
+
|
139
|
+
```
|
136
140
|
|
137
141
|
package sample.qiitaclient.view
|
138
142
|
|
@@ -242,7 +246,9 @@
|
|
242
246
|
|
243
247
|
|
244
248
|
|
245
|
-
|
249
|
+
build.gradle(Project)
|
250
|
+
|
251
|
+
```
|
246
252
|
|
247
253
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
248
254
|
|
@@ -300,7 +306,9 @@
|
|
300
306
|
|
301
307
|
|
302
308
|
|
303
|
-
|
309
|
+
build.gradle(Module)
|
310
|
+
|
311
|
+
```
|
304
312
|
|
305
313
|
apply plugin: 'com.android.application'
|
306
314
|
|
1
dqe
test
CHANGED
File without changes
|
test
CHANGED
@@ -28,7 +28,9 @@
|
|
28
28
|
|
29
29
|
参照したいのは、User.ktのUserクラスとActionView.ktのActionViewクラスです。
|
30
30
|
|
31
|
-
```
|
31
|
+
```kotlin
|
32
|
+
|
33
|
+
|
32
34
|
|
33
35
|
package sample.qiitaclient
|
34
36
|
|