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 1e7ce19 commit 5a3c0ecCopy full SHA for 5a3c0ec
1 file changed
build/project-template-gradle/build.gradle
@@ -361,17 +361,15 @@ task buildMetadata (type: JavaExec) {
361
def keyStorePath
362
def alias
363
364
- currentApk = "\"" + currentApk + "\""
365
-
366
if (project.ext.selectedBuildType.equals("release")) {
367
storePass = project.password
368
keyPass = project.ksPassword
369
- keyStorePath = "\"" + project.ksPath + "\""
+ keyStorePath = project.ksPath
370
alias = project.alias
371
} else {
372
storePass = "android"
373
keyPass = "android"
374
- keyStorePath = "\"" + keyStoreFile.getAbsolutePath() + "\""
+ keyStorePath = keyStoreFile.getAbsolutePath()
375
alias = "androiddebugkey"
376
}
377
0 commit comments