Skip to content

Commit

Permalink
allow embed aar that has no AndroidManifest.xml #206
Browse files Browse the repository at this point in the history
  • Loading branch information
kezong committed Oct 26, 2020
1 parent 7fc886c commit 955d9c5
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,9 @@ protected void doFullTaskAction() throws ManifestMerger2.MergeFailureException,
List<ManifestProvider> manifestProviders = new ArrayList<>();
if (secondaryManifestFiles != null) {
for (final File file : secondaryManifestFiles) {
if (!file.exists()) {
continue;
}
manifestProviders.add(new ManifestProvider() {
@Override
public File getManifest() {
Expand Down

0 comments on commit 955d9c5

Please sign in to comment.