質問編集履歴
4
追記4を追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -107,3 +107,11 @@
|
|
107
107
|
インポートが赤くなっているようです。
|
108
108
|
|
109
109
|

|
110
|
+
|
111
|
+
|
112
|
+
|
113
|
+
◆追記4
|
114
|
+
|
115
|
+
build.gradleのsyncで以下のようなダウンロードエラーが出ていることに気づきました。
|
116
|
+
|
117
|
+

|
3
追記3を追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -33,3 +33,77 @@
|
|
33
33
|
26を27にしろっていう意味なのでしょうか?
|
34
34
|
|
35
35
|

|
36
|
+
|
37
|
+
|
38
|
+
|
39
|
+
◆追記3
|
40
|
+
|
41
|
+
dependenciesを以下のように書き換えてエラーの波線は出なくなりましたが、
|
42
|
+
|
43
|
+
```ここに言語を入力
|
44
|
+
|
45
|
+
dependencies {
|
46
|
+
|
47
|
+
compile fileTree(include: ['*.jar'], dir: 'libs')
|
48
|
+
|
49
|
+
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
|
50
|
+
|
51
|
+
exclude group: 'com.android.support', module: 'support-annotations'
|
52
|
+
|
53
|
+
})
|
54
|
+
|
55
|
+
implementation 'com.android.support:appcompat-v7:27.1.1'
|
56
|
+
|
57
|
+
implementation 'com.android.support:design:27.1.1'
|
58
|
+
|
59
|
+
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
|
60
|
+
|
61
|
+
testImplementation 'junit:junit:4.12'
|
62
|
+
|
63
|
+
androidTestImplementation 'com.android.support.test:runner:1.0.2'
|
64
|
+
|
65
|
+
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
|
66
|
+
|
67
|
+
implementation 'se.emilsjolander:StickyScrollViewItems:1.1.0'
|
68
|
+
|
69
|
+
implementation 'com.fasterxml.jackson.core:jackson-databind:2.3.4'
|
70
|
+
|
71
|
+
implementation 'org.apmem.tools:layouts:1.10'
|
72
|
+
|
73
|
+
implementation 'com.android.support:support-v4:27.1.1'
|
74
|
+
|
75
|
+
implementation 'com.android.support:support-media-compat:27.1.1'
|
76
|
+
|
77
|
+
implementation 'com.android.support:animated-vector-drawable:27.1.1'
|
78
|
+
|
79
|
+
implementation 'com.android.support:customtabs:27.1.1'
|
80
|
+
|
81
|
+
implementation 'com.google.firebase:firebase-core:16.0.4'
|
82
|
+
|
83
|
+
implementation 'com.google.firebase:firebase-messaging:17.3.4'
|
84
|
+
|
85
|
+
implementation 'com.google.firebase:firebase-analytics:16.0.5'
|
86
|
+
|
87
|
+
implementation 'com.google.firebase:firebase-appindexing:16.0.2'
|
88
|
+
|
89
|
+
implementation 'com.google.code.gson:gson:2.8.2'
|
90
|
+
|
91
|
+
implementation 'com.android.support:multidex:1.0.3'
|
92
|
+
|
93
|
+
implementation 'com.github.bumptech.glide:glide:4.7.1'
|
94
|
+
|
95
|
+
implementation 'com.caverock:androidsvg:1.2.1'
|
96
|
+
|
97
|
+
implementation 'com.github.chrisbanes:PhotoView:2.1.4'
|
98
|
+
|
99
|
+
implementation 'com.google.maps.android:android-maps-utils:0.5+'
|
100
|
+
|
101
|
+
}
|
102
|
+
|
103
|
+
```
|
104
|
+
|
105
|
+
未だにJava側のエラーは消えていません。
|
106
|
+
|
107
|
+
インポートが赤くなっているようです。
|
108
|
+
|
109
|
+

|
2
追記2を追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -16,10 +16,20 @@
|
|
16
16
|
|
17
17
|
|
18
18
|
|
19
|
-
◆追記
|
19
|
+
◆追記1
|
20
20
|
|
21
21
|
Activity継承クラスを開くと
|
22
22
|
|
23
23
|
onCreateの@Overrideの部分が赤かったり、
|
24
24
|
|
25
25
|
setContentView()が赤くなったり、他にも多数赤くなっていることに気付きました。
|
26
|
+
|
27
|
+
|
28
|
+
|
29
|
+
◆追記2
|
30
|
+
|
31
|
+
build.graldeを見ると以下のように26と27が混在しているっぽいのですが、
|
32
|
+
|
33
|
+
26を27にしろっていう意味なのでしょうか?
|
34
|
+
|
35
|
+

|
1
追記を追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -13,3 +13,13 @@
|
|
13
13
|

|
14
14
|
|
15
15
|
対処方法を教えていただけないでしょうか。
|
16
|
+
|
17
|
+
|
18
|
+
|
19
|
+
◆追記
|
20
|
+
|
21
|
+
Activity継承クラスを開くと
|
22
|
+
|
23
|
+
onCreateの@Overrideの部分が赤かったり、
|
24
|
+
|
25
|
+
setContentView()が赤くなったり、他にも多数赤くなっていることに気付きました。
|