We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e182773 commit 9c902c0Copy full SHA for 9c902c0
plugin/src/main/groovy/top/niunaijun/blackobfuscator/ObfPlugin.groovy
@@ -45,6 +45,7 @@ public class ObfPlugin implements Plugin<Project> {
45
addTask("transformDexArchiveWithDexMergerForDebug", tasks)
46
addTask("transformDexArchiveWithDexMergerForRelease", tasks)
47
addTask("minifyReleaseWithR8", tasks)
48
+ addTask("minifyDebugWithR8", tasks)
49
50
if (android != null) {
51
android.productFlavors.all(new Action<ProductFlavor>() {
@@ -61,6 +62,7 @@ public class ObfPlugin implements Plugin<Project> {
61
62
addTask("transformDexArchiveWithDexMergerFor${p}Release", tasks)
63
64
addTask("minify${p}ReleaseWithR8", tasks)
65
+ addTask("minify${p}DebugWithR8", tasks)
66
}
67
68
})
0 commit comments