Skip to content

Commit

Permalink
[FIX]#157: NameSpace 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
flash159483 committed Sep 10, 2024
1 parent 69fa976 commit 432c5c7
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/opened-pr-notification.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
- name: add google-services.json
run: |
echo '${{ secrets.GOOGLE_SERVICES_JSON_DEV }}' > ./app/src/dev/google-services.json
echo '${{ secrets.GOOGLE_SERVICES_JSON_PROD }}' > ./app/src/prod/google-services.json
echo '${{ secrets.GOOGLE_SERVICES_JSON_REAL }}' > ./app/src/real/google-services.json
- name: Grant execute permission for gradlew
run: chmod +x gradlew
Expand Down
2 changes: 1 addition & 1 deletion app/.gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
/build
/src/dev/google-services.json
/src/prod/google-services.json
/src/real/google-services.json
4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ android {
applicationIdSuffix = ".dev"
}

create("prod") {
create("real") {
dimension = "wespot"
applicationIdSuffix = ".prod"
applicationIdSuffix = ".real"
}
}

Expand Down

0 comments on commit 432c5c7

Please sign in to comment.