Skip to content

Commit 4cd3659

Browse files
author
Mihail Slavchev
committed
Merge branch 'master' into release
2 parents 8965bc0 + 0a3109c commit 4cd3659

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

build/project-template-gradle/build.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -403,9 +403,10 @@ task buildMetadata (type: JavaExec) {
403403
zip_properties.put("encoding", "UTF-8")
404404

405405
def currentApk = project.ext.currentApkFile
406+
def currentApkAsEncoded = currentApk.replace(" ", "%20")
406407
def urlPrefix = "jar:file:" + (isWinOs ? "/" : "")
407408

408-
def zip_disk = URI.create(urlPrefix + currentApk);
409+
def zip_disk = URI.create(urlPrefix + currentApkAsEncoded);
409410

410411
def zipfs
411412
def pathInZipfile

0 commit comments

Comments
 (0)