We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 49e6c78 commit c52938eCopy full SHA for c52938e
2 files changed
.github/workflows/develop_branch.yml
@@ -29,3 +29,9 @@ jobs:
29
30
- name: Build with Gradle
31
run: ./gradlew assembleDebug
32
+
33
+ - name: Generate local.properties
34
+ env:
35
+ KAKAO_NATIVE_APP_KEY: ${{ secrets.KAKAO_NATIVE_APP_KEY }}
36
+ run: |
37
+ echo "kakao.native.app.key=$KAKAO_NATIVE_APP_KEY" >> local.properties
app/build.gradle.kts
@@ -11,7 +11,10 @@ android {
11
12
val properties =
13
Properties().apply {
14
- load(rootProject.file("local.properties").inputStream())
+ val propFile = rootProject.file("local.properties")
15
+ if (propFile.exists()) {
16
+ load(propFile.inputStream())
17
+ }
18
}
19
20
defaultConfig {
0 commit comments