質問編集履歴
1
classpathの変更によるエラーの変化の記載
title
CHANGED
File without changes
|
body
CHANGED
@@ -46,7 +46,28 @@
|
|
46
46
|
Attribute "android:translationZ" has already been defined
|
47
47
|
```
|
48
48
|
|
49
|
+
追記
|
50
|
+
build.gradle(Project)のclasspathを、
|
51
|
+
```
|
52
|
+
classpath 'com.android.tools.build:gradle:3.2.0-alpha13'
|
53
|
+
```
|
54
|
+
と書き換えて、invalidate and restartを押してAndroid Studioを再起動させたところ、エラーが以下のものに変わりました。
|
55
|
+
```
|
56
|
+
Apply plugin com.android.application 108ms
|
49
57
|
|
58
|
+
java.lang.RuntimeException: Minimum supported Gradle version is 4.6. Current version is 4.4. If using the gradle wrapper, try editing the distributionUrl in C:\Android\Android_Studio_Applications(プロジェクト名)\gradle\wrapper\gradle-wrapper.properties to gradle-4.6-all.zip
|
59
|
+
at com.android.build.gradle.BasePlugin.checkGradleVersion(BasePlugin.java:706)
|
60
|
+
at com.android.build.gradle.BasePlugin.apply(BasePlugin.java:255)
|
61
|
+
at com.android.build.gradle.AbstractAppPlugin.apply(AbstractAppPlugin.java:127)
|
62
|
+
at com.android.build.gradle.AppPlugin.apply(AppPlugin.java:46)
|
63
|
+
at com.android.build.gradle.AppPlugin.apply(AppPlugin.java:38)
|
64
|
+
at org.gradle.api.internal.plugins.ImperativeOnlyPluginTarget.applyImperative(ImperativeOnlyPluginTarget.java:42)
|
65
|
+
at org.gradle.api.internal.plugins.RuleBasedPluginTarget.applyImperative(RuleBasedPluginTarget.java:50)
|
66
|
+
at
|
67
|
+
(以下非常に長いため省略いたします)
|
68
|
+
|
69
|
+
```
|
70
|
+
|
50
71
|
### 補足情報(FW/ツールのバージョンなど)
|
51
72
|
AndroidStudioのバージョン
|
52
73
|
Currenversion:3.1.4(build 173.4907809)
|