Skip to content

Commit 5a3c0ec

Browse files
author
Mihail Slavchev
committed
remove unnecessary quotes
1 parent 1e7ce19 commit 5a3c0ec

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

build/project-template-gradle/build.gradle

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -361,17 +361,15 @@ task buildMetadata (type: JavaExec) {
361361
def keyStorePath
362362
def alias
363363

364-
currentApk = "\"" + currentApk + "\""
365-
366364
if (project.ext.selectedBuildType.equals("release")) {
367365
storePass = project.password
368366
keyPass = project.ksPassword
369-
keyStorePath = "\"" + project.ksPath + "\""
367+
keyStorePath = project.ksPath
370368
alias = project.alias
371369
} else {
372370
storePass = "android"
373371
keyPass = "android"
374-
keyStorePath = "\"" + keyStoreFile.getAbsolutePath() + "\""
372+
keyStorePath = keyStoreFile.getAbsolutePath()
375373
alias = "androiddebugkey"
376374
}
377375

0 commit comments

Comments
 (0)