回答編集履歴
1
追記
test
CHANGED
@@ -7,3 +7,37 @@
|
|
7
7
|
val strContent = "{ 'apikey' : '自分のAPIキー'}"
|
8
8
|
|
9
9
|
```
|
10
|
+
|
11
|
+
|
12
|
+
|
13
|
+
## 追記
|
14
|
+
|
15
|
+
|
16
|
+
|
17
|
+
> Unexpected token (use ' ; ' to separate expressions on the same line
|
18
|
+
|
19
|
+
> エラーが出ると同時にapikeyと中身両方共 Unresolved refference出ちゃいます...
|
20
|
+
|
21
|
+
|
22
|
+
|
23
|
+
多分こうしちゃってると思いますので
|
24
|
+
|
25
|
+
|
26
|
+
|
27
|
+
``` kotlin
|
28
|
+
|
29
|
+
val strContent = "{ "apikey" : "自分のAPIキー"}"
|
30
|
+
|
31
|
+
```
|
32
|
+
|
33
|
+
|
34
|
+
|
35
|
+
こうしてください。
|
36
|
+
|
37
|
+
|
38
|
+
|
39
|
+
``` kotlin
|
40
|
+
|
41
|
+
val strContent = "{ \"apikey\" : \"自分のAPIキー\" }"
|
42
|
+
|
43
|
+
```
|