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.
1 parent 05437ff commit ce7c6c6Copy full SHA for ce7c6c6
1 file changed
build/project-template-gradle/build.gradle
@@ -314,8 +314,9 @@ task buildMetadata (type: JavaExec) {
314
zip_properties.put("encoding", "UTF-8")
315
316
def currentApk = project.ext.currentApkFile
317
+ def urlPrefix = "jar:file:" + (isWinOs ? "/" : "")
318
- def zip_disk = URI.create("jar:file:/" + currentApk);
319
+ def zip_disk = URI.create(urlPrefix + currentApk);
320
321
def zipfs
322
def pathInZipfile
0 commit comments