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 3c2f76c commit 49bf56e
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,12 @@ class ExplodedHelper {
Utils.logInfo('[warning]' + androidLibrary.rootFolder + ' not found!')
continue
}
File classJarFile = new File(androidLibrary.classesJarFile);
if (classJarFile.exists()) {
allJarFiles.add(androidLibrary.classesJarFile)
}
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 49bf56e

Please # to comment.