Skip to content

Commit 67ccbf6

Browse files
committed
fix searching for merge assets folder on windows
1 parent 5d3cc88 commit 67ccbf6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test-app/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ android {
317317
task = variant.getMergeAssets()
318318
}
319319
for (File file : task.getOutputs().getFiles()) {
320-
if (!file.getPath().contains("/incremental/")) {
320+
if (!file.getPath().contains("${File.separator}incremental${File.separator}")) {
321321
project.ext.mergedAssetsOutputPath = file.getPath()
322322
break;
323323
}

0 commit comments

Comments
 (0)