Skip to content

Commit

Permalink
allow embed aar that has no classes.jar #157
Browse files Browse the repository at this point in the history
  • Loading branch information
516025 authored and kezong committed Oct 22, 2020
1 parent 0670078 commit 9760c80
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,9 @@ class ExplodedHelper {
allJarFiles.add(androidLibrary.classesJarFile)
}
for (jarFile in allJarFiles) {
if (!jarFile.exists()) {
continue;
}
project.copy {
from project.zipTree(jarFile)
into folderOut
Expand Down

0 comments on commit 9760c80

Please sign in to comment.