From 95c418e5a31590942a166d71cb6073f096042ee1 Mon Sep 17 00:00:00 2001 From: taetae98coding Date: Sun, 10 Nov 2024 02:00:58 +0900 Subject: [PATCH] hmm --- .github/workflows/build.yml | 44 ++++++------- .github/workflows/check_code_style.yml | 22 +++---- .github/workflows/dependency_guard.yml | 22 +++---- .../workflows/firebase_app_distribution.yml | 66 +++++++++---------- .gitignore | 4 +- .../Secret/DevDebug/GoogleService-Info.plist | 30 +++++++++ .../DevRelease/GoogleService-Info.plist | 30 +++++++++ .../Secret/RealDebug/GoogleService-Info.plist | 30 +++++++++ .../RealRelease/GoogleService-Info.plist | 30 +++++++++ .../android/src/dev/google-services.json | 48 ++++++++++++++ .../android/src/real/google-services.json | 48 ++++++++++++++ 11 files changed, 295 insertions(+), 79 deletions(-) create mode 100644 Diary/Secret/DevDebug/GoogleService-Info.plist create mode 100644 Diary/Secret/DevRelease/GoogleService-Info.plist create mode 100644 Diary/Secret/RealDebug/GoogleService-Info.plist create mode 100644 Diary/Secret/RealRelease/GoogleService-Info.plist create mode 100644 app/platform/android/src/dev/google-services.json create mode 100644 app/platform/android/src/real/google-services.json diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b6326be5..1773a85a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -34,17 +34,17 @@ jobs: echo android.real.key.alias=${{ secrets.ANDROID_REAL_KEY_ALIAS }} >> local.properties echo android.real.key.password=${{ secrets.ANDROID_REAL_KEY_PASSWORD }} >> local.properties - - name: Set Android google-services.json - run: | - echo '${{ secrets.ANDROID_DEV_GOOGLE_SERVICES_JSON }}' > app/platform/android/dev/google-services.json - echo '${{ secrets.ANDROID_REAL_GOOGLE_SERVICES_JSON }}' > app/platform/android/real/google-services.json - - - name: Set Apple GoogleService-Info.plist - run: | - echo '${{ secrets.APPLE_DEV_DEBUG_GOOGLE_SERVICE_INFO_PLIST }}' > Diary/secret/DevDebug/GoogleService-Info.plist - echo '${{ secrets.APPLE_DEV_RELEASE_GOOGLE_SERVICE_INFO_PLIST }}' > Diary/secret/DevRelease/GoogleService-Info.plist - echo '${{ secrets.APPLE_REAL_DEBUG_GOOGLE_SERVICE_INFO_PLIST }}' > Diary/secret/RealDebug/GoogleService-Info.plist - echo '${{ secrets.APPLE_REAL_RELEASE_GOOGLE_SERVICE_INFO_PLIST }}' > Diary/secret/RealRelease/GoogleService-Info.plist +# - name: Set Android google-services.json +# run: | +# echo '${{ secrets.ANDROID_DEV_GOOGLE_SERVICES_JSON }}' > app/platform/android/dev/google-services.json +# echo '${{ secrets.ANDROID_REAL_GOOGLE_SERVICES_JSON }}' > app/platform/android/real/google-services.json +# +# - name: Set Apple GoogleService-Info.plist +# run: | +# echo '${{ secrets.APPLE_DEV_DEBUG_GOOGLE_SERVICE_INFO_PLIST }}' > Diary/secret/DevDebug/GoogleService-Info.plist +# echo '${{ secrets.APPLE_DEV_RELEASE_GOOGLE_SERVICE_INFO_PLIST }}' > Diary/secret/DevRelease/GoogleService-Info.plist +# echo '${{ secrets.APPLE_REAL_DEBUG_GOOGLE_SERVICE_INFO_PLIST }}' > Diary/secret/RealDebug/GoogleService-Info.plist +# echo '${{ secrets.APPLE_REAL_RELEASE_GOOGLE_SERVICE_INFO_PLIST }}' > Diary/secret/RealRelease/GoogleService-Info.plist - name: Build ${{ matrix.command }} run: ${{ matrix.command }} @@ -73,17 +73,17 @@ jobs: echo android.real.key.alias=${{ secrets.ANDROID_REAL_KEY_ALIAS }} >> local.properties echo android.real.key.password=${{ secrets.ANDROID_REAL_KEY_PASSWORD }} >> local.properties - - name: Set Android google-services.json - run: | - echo '${{ secrets.ANDROID_DEV_GOOGLE_SERVICES_JSON }}' > app/platform/android/dev/google-services.json - echo '${{ secrets.ANDROID_REAL_GOOGLE_SERVICES_JSON }}' > app/platform/android/real/google-services.json - - - name: Set Apple GoogleService-Info.plist - run: | - echo '${{ secrets.APPLE_DEV_DEBUG_GOOGLE_SERVICE_INFO_PLIST }}' > Diary/secret/DevDebug/GoogleService-Info.plist - echo '${{ secrets.APPLE_DEV_RELEASE_GOOGLE_SERVICE_INFO_PLIST }}' > Diary/secret/DevRelease/GoogleService-Info.plist - echo '${{ secrets.APPLE_REAL_DEBUG_GOOGLE_SERVICE_INFO_PLIST }}' > Diary/secret/RealDebug/GoogleService-Info.plist - echo '${{ secrets.APPLE_REAL_RELEASE_GOOGLE_SERVICE_INFO_PLIST }}' > Diary/secret/RealRelease/GoogleService-Info.plist +# - name: Set Android google-services.json +# run: | +# echo '${{ secrets.ANDROID_DEV_GOOGLE_SERVICES_JSON }}' > app/platform/android/dev/google-services.json +# echo '${{ secrets.ANDROID_REAL_GOOGLE_SERVICES_JSON }}' > app/platform/android/real/google-services.json +# +# - name: Set Apple GoogleService-Info.plist +# run: | +# echo '${{ secrets.APPLE_DEV_DEBUG_GOOGLE_SERVICE_INFO_PLIST }}' > Diary/secret/DevDebug/GoogleService-Info.plist +# echo '${{ secrets.APPLE_DEV_RELEASE_GOOGLE_SERVICE_INFO_PLIST }}' > Diary/secret/DevRelease/GoogleService-Info.plist +# echo '${{ secrets.APPLE_REAL_DEBUG_GOOGLE_SERVICE_INFO_PLIST }}' > Diary/secret/RealDebug/GoogleService-Info.plist +# echo '${{ secrets.APPLE_REAL_RELEASE_GOOGLE_SERVICE_INFO_PLIST }}' > Diary/secret/RealRelease/GoogleService-Info.plist - name: Build iOS run: xcodebuild -project Diary/Diary.xcodeproj -scheme CI -destination 'platform=iOS Simulator,name=iPhone 16,OS=18.0' \ No newline at end of file diff --git a/.github/workflows/check_code_style.yml b/.github/workflows/check_code_style.yml index d55dfb7d..4fb71e40 100644 --- a/.github/workflows/check_code_style.yml +++ b/.github/workflows/check_code_style.yml @@ -27,16 +27,16 @@ jobs: echo android.real.key.alias=${{ secrets.ANDROID_REAL_KEY_ALIAS }} >> local.properties echo android.real.key.password=${{ secrets.ANDROID_REAL_KEY_PASSWORD }} >> local.properties - - name: Set Android google-services.json - run: | - echo '${{ secrets.ANDROID_DEV_GOOGLE_SERVICES_JSON }}' > app/platform/android/dev/google-services.json - echo '${{ secrets.ANDROID_REAL_GOOGLE_SERVICES_JSON }}' > app/platform/android/real/google-services.json - - - name: Set Apple GoogleService-Info.plist - run: | - echo '${{ secrets.APPLE_DEV_DEBUG_GOOGLE_SERVICE_INFO_PLIST }}' > Diary/secret/DevDebug/GoogleService-Info.plist - echo '${{ secrets.APPLE_DEV_RELEASE_GOOGLE_SERVICE_INFO_PLIST }}' > Diary/secret/DevRelease/GoogleService-Info.plist - echo '${{ secrets.APPLE_REAL_DEBUG_GOOGLE_SERVICE_INFO_PLIST }}' > Diary/secret/RealDebug/GoogleService-Info.plist - echo '${{ secrets.APPLE_REAL_RELEASE_GOOGLE_SERVICE_INFO_PLIST }}' > Diary/secret/RealRelease/GoogleService-Info.plist +# - name: Set Android google-services.json +# run: | +# echo '${{ secrets.ANDROID_DEV_GOOGLE_SERVICES_JSON }}' > app/platform/android/dev/google-services.json +# echo '${{ secrets.ANDROID_REAL_GOOGLE_SERVICES_JSON }}' > app/platform/android/real/google-services.json +# +# - name: Set Apple GoogleService-Info.plist +# run: | +# echo '${{ secrets.APPLE_DEV_DEBUG_GOOGLE_SERVICE_INFO_PLIST }}' > Diary/secret/DevDebug/GoogleService-Info.plist +# echo '${{ secrets.APPLE_DEV_RELEASE_GOOGLE_SERVICE_INFO_PLIST }}' > Diary/secret/DevRelease/GoogleService-Info.plist +# echo '${{ secrets.APPLE_REAL_DEBUG_GOOGLE_SERVICE_INFO_PLIST }}' > Diary/secret/RealDebug/GoogleService-Info.plist +# echo '${{ secrets.APPLE_REAL_RELEASE_GOOGLE_SERVICE_INFO_PLIST }}' > Diary/secret/RealRelease/GoogleService-Info.plist - run: ./gradlew :spotlessCheck \ No newline at end of file diff --git a/.github/workflows/dependency_guard.yml b/.github/workflows/dependency_guard.yml index b0263cd2..e7e28ac1 100644 --- a/.github/workflows/dependency_guard.yml +++ b/.github/workflows/dependency_guard.yml @@ -33,17 +33,17 @@ jobs: echo android.real.key.alias=${{ secrets.ANDROID_REAL_KEY_ALIAS }} >> local.properties echo android.real.key.password=${{ secrets.ANDROID_REAL_KEY_PASSWORD }} >> local.properties - - name: Set Android google-services.json - run: | - echo '${{ secrets.ANDROID_DEV_GOOGLE_SERVICES_JSON }}' > app/platform/android/dev/google-services.json - echo '${{ secrets.ANDROID_REAL_GOOGLE_SERVICES_JSON }}' > app/platform/android/real/google-services.json - - - name: Set Apple GoogleService-Info.plist - run: | - echo '${{ secrets.APPLE_DEV_DEBUG_GOOGLE_SERVICE_INFO_PLIST }}' > Diary/secret/DevDebug/GoogleService-Info.plist - echo '${{ secrets.APPLE_DEV_RELEASE_GOOGLE_SERVICE_INFO_PLIST }}' > Diary/secret/DevRelease/GoogleService-Info.plist - echo '${{ secrets.APPLE_REAL_DEBUG_GOOGLE_SERVICE_INFO_PLIST }}' > Diary/secret/RealDebug/GoogleService-Info.plist - echo '${{ secrets.APPLE_REAL_RELEASE_GOOGLE_SERVICE_INFO_PLIST }}' > Diary/secret/RealRelease/GoogleService-Info.plist +# - name: Set Android google-services.json +# run: | +# echo '${{ secrets.ANDROID_DEV_GOOGLE_SERVICES_JSON }}' > app/platform/android/dev/google-services.json +# echo '${{ secrets.ANDROID_REAL_GOOGLE_SERVICES_JSON }}' > app/platform/android/real/google-services.json +# +# - name: Set Apple GoogleService-Info.plist +# run: | +# echo '${{ secrets.APPLE_DEV_DEBUG_GOOGLE_SERVICE_INFO_PLIST }}' > Diary/secret/DevDebug/GoogleService-Info.plist +# echo '${{ secrets.APPLE_DEV_RELEASE_GOOGLE_SERVICE_INFO_PLIST }}' > Diary/secret/DevRelease/GoogleService-Info.plist +# echo '${{ secrets.APPLE_REAL_DEBUG_GOOGLE_SERVICE_INFO_PLIST }}' > Diary/secret/RealDebug/GoogleService-Info.plist +# echo '${{ secrets.APPLE_REAL_RELEASE_GOOGLE_SERVICE_INFO_PLIST }}' > Diary/secret/RealRelease/GoogleService-Info.plist - name: Build ${{ matrix.command }} run: ${{ matrix.command }} \ No newline at end of file diff --git a/.github/workflows/firebase_app_distribution.yml b/.github/workflows/firebase_app_distribution.yml index 084579e1..d7f183c0 100644 --- a/.github/workflows/firebase_app_distribution.yml +++ b/.github/workflows/firebase_app_distribution.yml @@ -31,17 +31,17 @@ jobs: echo android.real.key.alias=${{ secrets.ANDROID_REAL_KEY_ALIAS }} >> local.properties echo android.real.key.password=${{ secrets.ANDROID_REAL_KEY_PASSWORD }} >> local.properties - - name: Set Android google-services.json - run: | - echo '${{ secrets.ANDROID_DEV_GOOGLE_SERVICES_JSON }}' > app/platform/android/dev/google-services.json - echo '${{ secrets.ANDROID_REAL_GOOGLE_SERVICES_JSON }}' > app/platform/android/real/google-services.json - - - name: Set Apple GoogleService-Info.plist - run: | - echo '${{ secrets.APPLE_DEV_DEBUG_GOOGLE_SERVICE_INFO_PLIST }}' > Diary/secret/DevDebug/GoogleService-Info.plist - echo '${{ secrets.APPLE_DEV_RELEASE_GOOGLE_SERVICE_INFO_PLIST }}' > Diary/secret/DevRelease/GoogleService-Info.plist - echo '${{ secrets.APPLE_REAL_DEBUG_GOOGLE_SERVICE_INFO_PLIST }}' > Diary/secret/RealDebug/GoogleService-Info.plist - echo '${{ secrets.APPLE_REAL_RELEASE_GOOGLE_SERVICE_INFO_PLIST }}' > Diary/secret/RealRelease/GoogleService-Info.plist +# - name: Set Android google-services.json +# run: | +# echo '${{ secrets.ANDROID_DEV_GOOGLE_SERVICES_JSON }}' > app/platform/android/dev/google-services.json +# echo '${{ secrets.ANDROID_REAL_GOOGLE_SERVICES_JSON }}' > app/platform/android/real/google-services.json +# +# - name: Set Apple GoogleService-Info.plist +# run: | +# echo '${{ secrets.APPLE_DEV_DEBUG_GOOGLE_SERVICE_INFO_PLIST }}' > Diary/secret/DevDebug/GoogleService-Info.plist +# echo '${{ secrets.APPLE_DEV_RELEASE_GOOGLE_SERVICE_INFO_PLIST }}' > Diary/secret/DevRelease/GoogleService-Info.plist +# echo '${{ secrets.APPLE_REAL_DEBUG_GOOGLE_SERVICE_INFO_PLIST }}' > Diary/secret/RealDebug/GoogleService-Info.plist +# echo '${{ secrets.APPLE_REAL_RELEASE_GOOGLE_SERVICE_INFO_PLIST }}' > Diary/secret/RealRelease/GoogleService-Info.plist - name: Build APK run: ./gradlew :app:platform:android:assembleRealRelease @@ -79,17 +79,17 @@ jobs: echo android.real.key.alias=${{ secrets.ANDROID_REAL_KEY_ALIAS }} >> local.properties echo android.real.key.password=${{ secrets.ANDROID_REAL_KEY_PASSWORD }} >> local.properties - - name: Set Android google-services.json - run: | - echo '${{ secrets.ANDROID_DEV_GOOGLE_SERVICES_JSON }}' > app/platform/android/dev/google-services.json - echo '${{ secrets.ANDROID_REAL_GOOGLE_SERVICES_JSON }}' > app/platform/android/real/google-services.json - - - name: Set Apple GoogleService-Info.plist - run: | - echo '${{ secrets.APPLE_DEV_DEBUG_GOOGLE_SERVICE_INFO_PLIST }}' > Diary/secret/DevDebug/GoogleService-Info.plist - echo '${{ secrets.APPLE_DEV_RELEASE_GOOGLE_SERVICE_INFO_PLIST }}' > Diary/secret/DevRelease/GoogleService-Info.plist - echo '${{ secrets.APPLE_REAL_DEBUG_GOOGLE_SERVICE_INFO_PLIST }}' > Diary/secret/RealDebug/GoogleService-Info.plist - echo '${{ secrets.APPLE_REAL_RELEASE_GOOGLE_SERVICE_INFO_PLIST }}' > Diary/secret/RealRelease/GoogleService-Info.plist +# - name: Set Android google-services.json +# run: | +# echo '${{ secrets.ANDROID_DEV_GOOGLE_SERVICES_JSON }}' > app/platform/android/dev/google-services.json +# echo '${{ secrets.ANDROID_REAL_GOOGLE_SERVICES_JSON }}' > app/platform/android/real/google-services.json +# +# - name: Set Apple GoogleService-Info.plist +# run: | +# echo '${{ secrets.APPLE_DEV_DEBUG_GOOGLE_SERVICE_INFO_PLIST }}' > Diary/secret/DevDebug/GoogleService-Info.plist +# echo '${{ secrets.APPLE_DEV_RELEASE_GOOGLE_SERVICE_INFO_PLIST }}' > Diary/secret/DevRelease/GoogleService-Info.plist +# echo '${{ secrets.APPLE_REAL_DEBUG_GOOGLE_SERVICE_INFO_PLIST }}' > Diary/secret/RealDebug/GoogleService-Info.plist +# echo '${{ secrets.APPLE_REAL_RELEASE_GOOGLE_SERVICE_INFO_PLIST }}' > Diary/secret/RealRelease/GoogleService-Info.plist - name: Install the Apple certificate and provisioning profile env: @@ -158,17 +158,17 @@ jobs: echo android.real.key.alias=${{ secrets.ANDROID_REAL_KEY_ALIAS }} >> local.properties echo android.real.key.password=${{ secrets.ANDROID_REAL_KEY_PASSWORD }} >> local.properties - - name: Set Android google-services.json - run: | - echo '${{ secrets.ANDROID_DEV_GOOGLE_SERVICES_JSON }}' > app/platform/android/dev/google-services.json - echo '${{ secrets.ANDROID_REAL_GOOGLE_SERVICES_JSON }}' > app/platform/android/real/google-services.json - - - name: Set Apple GoogleService-Info.plist - run: | - echo '${{ secrets.APPLE_DEV_DEBUG_GOOGLE_SERVICE_INFO_PLIST }}' > Diary/secret/DevDebug/GoogleService-Info.plist - echo '${{ secrets.APPLE_DEV_RELEASE_GOOGLE_SERVICE_INFO_PLIST }}' > Diary/secret/DevRelease/GoogleService-Info.plist - echo '${{ secrets.APPLE_REAL_DEBUG_GOOGLE_SERVICE_INFO_PLIST }}' > Diary/secret/RealDebug/GoogleService-Info.plist - echo '${{ secrets.APPLE_REAL_RELEASE_GOOGLE_SERVICE_INFO_PLIST }}' > Diary/secret/RealRelease/GoogleService-Info.plist +# - name: Set Android google-services.json +# run: | +# echo '${{ secrets.ANDROID_DEV_GOOGLE_SERVICES_JSON }}' > app/platform/android/dev/google-services.json +# echo '${{ secrets.ANDROID_REAL_GOOGLE_SERVICES_JSON }}' > app/platform/android/real/google-services.json +# +# - name: Set Apple GoogleService-Info.plist +# run: | +# echo '${{ secrets.APPLE_DEV_DEBUG_GOOGLE_SERVICE_INFO_PLIST }}' > Diary/secret/DevDebug/GoogleService-Info.plist +# echo '${{ secrets.APPLE_DEV_RELEASE_GOOGLE_SERVICE_INFO_PLIST }}' > Diary/secret/DevRelease/GoogleService-Info.plist +# echo '${{ secrets.APPLE_REAL_DEBUG_GOOGLE_SERVICE_INFO_PLIST }}' > Diary/secret/RealDebug/GoogleService-Info.plist +# echo '${{ secrets.APPLE_REAL_RELEASE_GOOGLE_SERVICE_INFO_PLIST }}' > Diary/secret/RealRelease/GoogleService-Info.plist - name: Download ipa uses: actions/download-artifact@v4 diff --git a/.gitignore b/.gitignore index 922858cd..f80349d7 100644 --- a/.gitignore +++ b/.gitignore @@ -6,8 +6,8 @@ **/build -**/google-services.json -**/GoogleService-Info.plist +#**/google-services.json +#**/GoogleService-Info.plist **/xcuserdata **/dev.xcconfig diff --git a/Diary/Secret/DevDebug/GoogleService-Info.plist b/Diary/Secret/DevDebug/GoogleService-Info.plist new file mode 100644 index 00000000..509e0b04 --- /dev/null +++ b/Diary/Secret/DevDebug/GoogleService-Info.plist @@ -0,0 +1,30 @@ + + + + + API_KEY + AIzaSyBqM122KwieFju8KkKY2f6aZZ_IjR8MneU + GCM_SENDER_ID + 1029489765804 + PLIST_VERSION + 1 + BUNDLE_ID + io.github.taetae98coding.diary.dev.debug + PROJECT_ID + diary-dev-default + STORAGE_BUCKET + diary-dev-default.firebasestorage.app + IS_ADS_ENABLED + + IS_ANALYTICS_ENABLED + + IS_APPINVITE_ENABLED + + IS_GCM_ENABLED + + IS_SIGNIN_ENABLED + + GOOGLE_APP_ID + 1:1029489765804:ios:d73e84aa3c1d2fad485e09 + + \ No newline at end of file diff --git a/Diary/Secret/DevRelease/GoogleService-Info.plist b/Diary/Secret/DevRelease/GoogleService-Info.plist new file mode 100644 index 00000000..10299140 --- /dev/null +++ b/Diary/Secret/DevRelease/GoogleService-Info.plist @@ -0,0 +1,30 @@ + + + + + API_KEY + AIzaSyBqM122KwieFju8KkKY2f6aZZ_IjR8MneU + GCM_SENDER_ID + 1029489765804 + PLIST_VERSION + 1 + BUNDLE_ID + io.github.taetae98coding.diary.dev + PROJECT_ID + diary-dev-default + STORAGE_BUCKET + diary-dev-default.firebasestorage.app + IS_ADS_ENABLED + + IS_ANALYTICS_ENABLED + + IS_APPINVITE_ENABLED + + IS_GCM_ENABLED + + IS_SIGNIN_ENABLED + + GOOGLE_APP_ID + 1:1029489765804:ios:58a406de2cb5e315485e09 + + \ No newline at end of file diff --git a/Diary/Secret/RealDebug/GoogleService-Info.plist b/Diary/Secret/RealDebug/GoogleService-Info.plist new file mode 100644 index 00000000..5ff2a846 --- /dev/null +++ b/Diary/Secret/RealDebug/GoogleService-Info.plist @@ -0,0 +1,30 @@ + + + + + API_KEY + AIzaSyAmiB1Pub56iOY4WG39m6wuKGhedhRbNfo + GCM_SENDER_ID + 73292404769 + PLIST_VERSION + 1 + BUNDLE_ID + io.github.taetae98coding.diary.debug + PROJECT_ID + diary-real + STORAGE_BUCKET + diary-real.firebasestorage.app + IS_ADS_ENABLED + + IS_ANALYTICS_ENABLED + + IS_APPINVITE_ENABLED + + IS_GCM_ENABLED + + IS_SIGNIN_ENABLED + + GOOGLE_APP_ID + 1:73292404769:ios:28ae51f000bdf80fd12b60 + + \ No newline at end of file diff --git a/Diary/Secret/RealRelease/GoogleService-Info.plist b/Diary/Secret/RealRelease/GoogleService-Info.plist new file mode 100644 index 00000000..9d34c720 --- /dev/null +++ b/Diary/Secret/RealRelease/GoogleService-Info.plist @@ -0,0 +1,30 @@ + + + + + API_KEY + AIzaSyAmiB1Pub56iOY4WG39m6wuKGhedhRbNfo + GCM_SENDER_ID + 73292404769 + PLIST_VERSION + 1 + BUNDLE_ID + io.github.taetae98coding.diary + PROJECT_ID + diary-real + STORAGE_BUCKET + diary-real.firebasestorage.app + IS_ADS_ENABLED + + IS_ANALYTICS_ENABLED + + IS_APPINVITE_ENABLED + + IS_GCM_ENABLED + + IS_SIGNIN_ENABLED + + GOOGLE_APP_ID + 1:73292404769:ios:041c1183c7bde8a2d12b60 + + \ No newline at end of file diff --git a/app/platform/android/src/dev/google-services.json b/app/platform/android/src/dev/google-services.json new file mode 100644 index 00000000..4d1d3b51 --- /dev/null +++ b/app/platform/android/src/dev/google-services.json @@ -0,0 +1,48 @@ +{ + "project_info": { + "project_number": "1029489765804", + "project_id": "diary-dev-default", + "storage_bucket": "diary-dev-default.firebasestorage.app" + }, + "client": [ + { + "client_info": { + "mobilesdk_app_id": "1:1029489765804:android:14514dfe44a283a0485e09", + "android_client_info": { + "package_name": "io.github.taetae98coding.diary.dev" + } + }, + "oauth_client": [], + "api_key": [ + { + "current_key": "AIzaSyAT1BqsVi3TAq6eouDhR8bEV_3OJ9_OXno" + } + ], + "services": { + "appinvite_service": { + "other_platform_oauth_client": [] + } + } + }, + { + "client_info": { + "mobilesdk_app_id": "1:1029489765804:android:29a65b1244540758485e09", + "android_client_info": { + "package_name": "io.github.taetae98coding.diary.dev.debug" + } + }, + "oauth_client": [], + "api_key": [ + { + "current_key": "AIzaSyAT1BqsVi3TAq6eouDhR8bEV_3OJ9_OXno" + } + ], + "services": { + "appinvite_service": { + "other_platform_oauth_client": [] + } + } + } + ], + "configuration_version": "1" +} \ No newline at end of file diff --git a/app/platform/android/src/real/google-services.json b/app/platform/android/src/real/google-services.json new file mode 100644 index 00000000..dcd44011 --- /dev/null +++ b/app/platform/android/src/real/google-services.json @@ -0,0 +1,48 @@ +{ + "project_info": { + "project_number": "73292404769", + "project_id": "diary-real", + "storage_bucket": "diary-real.firebasestorage.app" + }, + "client": [ + { + "client_info": { + "mobilesdk_app_id": "1:73292404769:android:57bc53e05029706fd12b60", + "android_client_info": { + "package_name": "io.github.taetae98coding.diary" + } + }, + "oauth_client": [], + "api_key": [ + { + "current_key": "AIzaSyB5QcihaWsj6mOcrqTjnl8oO4RNM4MV7R0" + } + ], + "services": { + "appinvite_service": { + "other_platform_oauth_client": [] + } + } + }, + { + "client_info": { + "mobilesdk_app_id": "1:73292404769:android:86ee276a4ac64d54d12b60", + "android_client_info": { + "package_name": "io.github.taetae98coding.diary.debug" + } + }, + "oauth_client": [], + "api_key": [ + { + "current_key": "AIzaSyB5QcihaWsj6mOcrqTjnl8oO4RNM4MV7R0" + } + ], + "services": { + "appinvite_service": { + "other_platform_oauth_client": [] + } + } + } + ], + "configuration_version": "1" +} \ No newline at end of file