From ccecc9013087ab6e6fcbe5e4e70215ebe641b73a Mon Sep 17 00:00:00 2001 From: Ilya Chernikov Date: Thu, 5 Apr 2018 21:13:48 +0200 Subject: [PATCH] Fix some kapt tests: some implicit usage of Project.getBasePath, which kapt depends on, was removed from the scripting, and therefore proguard was removing it from the compiler. This commit instructs proguard to keep it explicitly. --- compiler/compiler.pro | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/compiler/compiler.pro b/compiler/compiler.pro index 9cb6ba44ac5..f8face474c2 100644 --- a/compiler/compiler.pro +++ b/compiler/compiler.pro @@ -211,4 +211,5 @@ messages/**) # for webdemo -keep class com.intellij.openapi.progress.ProgressManager { *; } - \ No newline at end of file +# for kapt +-keep class com.intellij.openapi.project.Project { *; }