From d8c4fac97c3a433383fb02fa49ccbc8d7ae23b36 Mon Sep 17 00:00:00 2001 From: Sergey Chuprin Date: Thu, 6 Feb 2020 11:19:34 +0800 Subject: [PATCH] Fix regex --- .../cleverpumpkin/plugin/ProguardR8DictionaryGeneratorPlugin.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/src/main/java/ru/cleverpumpkin/plugin/ProguardR8DictionaryGeneratorPlugin.kt b/plugin/src/main/java/ru/cleverpumpkin/plugin/ProguardR8DictionaryGeneratorPlugin.kt index 6e839ab..03b62a2 100644 --- a/plugin/src/main/java/ru/cleverpumpkin/plugin/ProguardR8DictionaryGeneratorPlugin.kt +++ b/plugin/src/main/java/ru/cleverpumpkin/plugin/ProguardR8DictionaryGeneratorPlugin.kt @@ -14,7 +14,7 @@ class ProguardR8DictionaryGeneratorPlugin : Plugin { const val LOG_TAG = "ProguardR8DictionaryGenerator" val TARGET_TASKS_REGEX = listOf( Regex("minify(.*?)With(?:R8|Proguard)"), - Regex("transformClassesAndResourcesWith(?:R8|Proguard)For") + Regex("transformClassesAndResourcesWith(?:R8|Proguard)For.*?") ) }