From b2db027ded3c129013e1bf9de76a620b645818e0 Mon Sep 17 00:00:00 2001 From: Vyacheslav Gerasimov Date: Fri, 18 Jan 2019 19:30:35 +0300 Subject: [PATCH] Add constant for AS 3.5 to IdeCompatibilityDsl --- buildSrc/src/main/kotlin/IdeCompatibilityDsl.kt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/buildSrc/src/main/kotlin/IdeCompatibilityDsl.kt b/buildSrc/src/main/kotlin/IdeCompatibilityDsl.kt index 8b4948077e2..aa84f7539b4 100644 --- a/buildSrc/src/main/kotlin/IdeCompatibilityDsl.kt +++ b/buildSrc/src/main/kotlin/IdeCompatibilityDsl.kt @@ -50,7 +50,8 @@ enum class Ide(val platform: Platform) : CompatibilityPredicate { AS31(Platform.P173), AS32(Platform.P181), AS33(Platform.P182), - AS34(Platform.P183); + AS34(Platform.P183), + AS35(Platform.P183); val kind = Kind.values().first { it.shortName == name.take(2) } val version = name.dropWhile { !it.isDigit() }.toInt()