Skip to content

Commit d8c4fac

Browse files
committed
Fix regex
1 parent d78b46f commit d8c4fac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugin/src/main/java/ru/cleverpumpkin/plugin/ProguardR8DictionaryGeneratorPlugin.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class ProguardR8DictionaryGeneratorPlugin : Plugin<Project> {
1414
const val LOG_TAG = "ProguardR8DictionaryGenerator"
1515
val TARGET_TASKS_REGEX = listOf(
1616
Regex("minify(.*?)With(?:R8|Proguard)"),
17-
Regex("transformClassesAndResourcesWith(?:R8|Proguard)For")
17+
Regex("transformClassesAndResourcesWith(?:R8|Proguard)For.*?")
1818
)
1919
}
2020

0 commit comments

Comments
 (0)