Skip to content

Commit

Permalink
fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
nnjun committed Jan 11, 2022
1 parent 36d0f6d commit a924854
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ public class ObfPlugin implements Plugin<Project> {
}
List<Task> tasks = new ArrayList<>()
addTask("mergeDexRelease", tasks)
addTask("mergeDexDebug", tasks)
addTask("mergeLibDexDebug", tasks)
addTask("mergeProjectDexDebug", tasks)
addTask("transformDexArchiveWithDexMergerForDebug", tasks)
Expand All @@ -55,6 +56,7 @@ public class ObfPlugin implements Plugin<Project> {
def names = [productFlavor.name, name]
for (String p : names) {
addTask("mergeDex${p}Release", tasks)
addTask("mergeDex${p}Debug", tasks)
addTask("mergeLibDex${p}Debug", tasks)
addTask("mergeProjectDex${p}Debug", tasks)

Expand Down

0 comments on commit a924854

Please sign in to comment.