Skip to content

Commit eb89b8b

Browse files
committed
[BOOK-219] chore: .jks 파일 루트 디렉토리에 위치 할 수 있도록 변경
1 parent 7f78871 commit eb89b8b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ android {
1717
val propertiesFile = rootProject.file("keystore.properties")
1818
val properties = Properties()
1919
properties.load(propertiesFile.inputStream())
20-
storeFile = file(properties["STORE_FILE"] as String)
20+
storeFile = rootProject.file(properties["STORE_FILE"] as String)
2121
storePassword = properties["STORE_PASSWORD"] as String
2222
keyAlias = properties["KEY_ALIAS"] as String
2323
keyPassword = properties["KEY_PASSWORD"] as String

0 commit comments

Comments
 (0)