We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8965bc0 + 0a3109c commit 4cd3659Copy full SHA for 4cd3659
1 file changed
build/project-template-gradle/build.gradle
@@ -403,9 +403,10 @@ task buildMetadata (type: JavaExec) {
403
zip_properties.put("encoding", "UTF-8")
404
405
def currentApk = project.ext.currentApkFile
406
+ def currentApkAsEncoded = currentApk.replace(" ", "%20")
407
def urlPrefix = "jar:file:" + (isWinOs ? "/" : "")
408
- def zip_disk = URI.create(urlPrefix + currentApk);
409
+ def zip_disk = URI.create(urlPrefix + currentApkAsEncoded);
410
411
def zipfs
412
def pathInZipfile
0 commit comments