Add required plugins for Android Studio 3.6 to runtime

This commit is contained in:
Nikolay Krasko
2019-08-30 23:50:32 +03:00
parent a6fb2bd7a7
commit b856d60575
5 changed files with 25 additions and 0 deletions
+5
View File
@@ -68,6 +68,11 @@ dependencies {
}
testRuntime(intellijPluginDep("testng"))
if (Ide.AS36.orHigher()) {
testRuntime(intellijPluginDep("android-layoutlib"))
testRuntime(intellijPluginDep("android-wizardTemplate-plugin"))
}
}
sourceSets {
+5
View File
@@ -62,6 +62,11 @@ dependencies {
}
testRuntime(intellijPluginDep("android"))
testRuntime(intellijPluginDep("smali"))
if (Ide.AS36.orHigher()) {
testRuntime(intellijPluginDep("android-layoutlib"))
testRuntime(intellijPluginDep("android-wizardTemplate-plugin"))
}
}
sourceSets {
+5
View File
@@ -62,6 +62,11 @@ dependencies {
testRuntime(intellijPluginDep("coverage"))
testRuntime(intellijPluginDep("android"))
testRuntime(intellijPluginDep("smali"))
if (Ide.AS36.orHigher()) {
testRuntime(intellijPluginDep("android-layoutlib"))
testRuntime(intellijPluginDep("android-wizardTemplate-plugin"))
}
}
if (Ide.IJ()) {
+5
View File
@@ -61,6 +61,11 @@ dependencies {
testRuntime(intellijPluginDep("java-i18n"))
testRuntime(intellijPluginDep("java-decompiler"))
testRuntime(project(":plugins:kapt3-idea")) { isTransitive = false }
if (Ide.AS36.orHigher()) {
testRuntime(intellijPluginDep("android-layoutlib"))
testRuntime(intellijPluginDep("android-wizardTemplate-plugin"))
}
}
sourceSets {
@@ -58,6 +58,11 @@ dependencies {
}
testRuntime(intellijPluginDep("android"))
testRuntime(intellijPluginDep("smali"))
if (Ide.AS36.orHigher()) {
testRuntime(intellijPluginDep("android-layoutlib"))
testRuntime(intellijPluginDep("android-wizardTemplate-plugin"))
}
}
sourceSets {