From ecf4d7cbd1f621865764941bbac7cfd811d0cf14 Mon Sep 17 00:00:00 2001 From: Dmitriy Novozhilov Date: Wed, 13 Apr 2022 19:22:37 +0400 Subject: [PATCH] [Build] Keep com.intellij.openapi.util.text.StringUtil in proguard rules This class is required for test framework, so without new rule it's impossible to use it outside of Kotlin project --- prepare/compiler/compiler.pro | 3 +++ 1 file changed, 3 insertions(+) diff --git a/prepare/compiler/compiler.pro b/prepare/compiler/compiler.pro index 2b512e30aec..604e5b45d94 100644 --- a/prepare/compiler/compiler.pro +++ b/prepare/compiler/compiler.pro @@ -285,3 +285,6 @@ public ** plus(java.lang.Object, java.lang.Object); public ** plusAll(java.util.Map); } + +# This class is needed for test framework +-keep class com.intellij.openapi.util.text.StringUtil { *; }