Skip to content

Commit

Permalink
fix: Remove duplicated ProGuard classpath argument
Browse files Browse the repository at this point in the history
yq.compiledClassesPath was being added to ProGuard's classpath and input path. This fixes it.
  • Loading branch information
JavkhlanK committed Jul 15, 2022
1 parent 427ea71 commit c719999
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion app/src/main/java/a/a/a/Dp.java
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,9 @@ public String getProGuardClasspath() {
}
}

classpath.append(classpathPart).append(':');
if (!classpathPart.equals(yq.compiledClassesPath)) {
classpath.append(classpathPart).append(':');
}
}

// remove trailing delimiter
Expand Down

0 comments on commit c719999

Please sign in to comment.