Skip to content

Commit 20a458e

Browse files
authored
Change merged assets path for android gradle 3.5.0
1 parent 355f66d commit 20a458e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test-app/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -571,8 +571,8 @@ class EmptyRunnable implements Runnable {
571571

572572
def getMergedAssetsOutputPath() {
573573
if (!project.hasProperty("mergedAssetsOutputPath")) {
574-
// mergedAssetsOutputPath not found fallback to the default value for android gradle plugin 3.4.0
575-
project.ext.mergedAssetsOutputPath = "$projectDir/build/intermediates/assets/" + project.selectedBuildType + "/out"
574+
// mergedAssetsOutputPath not found fallback to the default value for android gradle plugin 3.5.0
575+
project.ext.mergedAssetsOutputPath = "$projectDir/build/intermediates/merged_assets/" + project.selectedBuildType + "/out"
576576
}
577577
return project.ext.mergedAssetsOutputPath
578578
}

0 commit comments

Comments
 (0)