diff --git a/.firebaserc b/.firebaserc
index 58eed9d..eaf8365 100644
--- a/.firebaserc
+++ b/.firebaserc
@@ -1,18 +1,19 @@
{
"projects": {
- "default": "crossplatformkorea2024"
+ "default": "cross-platform-korea-5032f"
},
"targets": {
- "crossplatformkorea2024": {
+ "cross-platform-korea-5032f": {
"hosting": {
"staging": [
"cpk-staging"
],
"app": [
- "crossplatformkorea2024"
+ "cross-platform-korea-5032f"
]
}
}
},
- "etags": {}
-}
\ No newline at end of file
+ "etags": {},
+ "dataconnectEmulatorConfig": {}
+}
diff --git a/.github/workflows/deploy-pr.yml b/.github/workflows/deploy-pr.yml
index c89db65..1a8da74 100644
--- a/.github/workflows/deploy-pr.yml
+++ b/.github/workflows/deploy-pr.yml
@@ -40,18 +40,18 @@ jobs:
sed -i '/<\/head>/i \
\n\
\n\
- \n\
+ \n\
\n\
\n\
\n\
- \n\
+ \n\
\n\
\n' ./dist/index.html
- uses: FirebaseExtended/action-hosting-deploy@v0
with:
repoToken: '${{ secrets.GITHUB_TOKEN }}'
- firebaseServiceAccount: '${{ secrets.FIREBASE_SERVICE_ACCOUNT_CROSSPLATFORMKOREA2024 }}'
+ firebaseServiceAccount: '${{ secrets.FIREBASE_SERVICE_ACCOUNT_CROSS_PLATFORM_KOREA_5032F }}'
channelId: live
- projectId: crossplatformkorea2024
+ projectId: cross-platform-korea-5032f
target: cpk-staging
diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml
index 25dbcfb..4f11340 100644
--- a/.github/workflows/deploy.yml
+++ b/.github/workflows/deploy.yml
@@ -38,17 +38,17 @@ jobs:
sed -i '/<\/head>/i \
\n\
\n\
- \n\
+ \n\
\n\
\n\
\n\
- \n\
+ \n\
\n\
\n' ./dist/index.html
- uses: FirebaseExtended/action-hosting-deploy@v0
with:
repoToken: '${{ secrets.GITHUB_TOKEN }}'
- firebaseServiceAccount: '${{ secrets.FIREBASE_SERVICE_ACCOUNT_CROSSPLATFORMKOREA2024 }}'
+ firebaseServiceAccount: '${{ secrets.FIREBASE_SERVICE_ACCOUNT_CROSS_PLATFORM_KOREA_5032F }}'
channelId: live
- projectId: crossplatformkorea2024
+ projectId: cross-platform-korea-5032f
diff --git a/app.config.ts b/app.config.ts
index 30737ef..f76d34f 100644
--- a/app.config.ts
+++ b/app.config.ts
@@ -22,7 +22,7 @@ if (process.env.STAGE) {
}
const DEEP_LINK_URL = '[firebaseAppId].web.app';
-const buildNumber = 6;
+const buildNumber = 1;
export default ({config}: ConfigContext): ExpoConfig => ({
...config,
@@ -83,7 +83,7 @@ export default ({config}: ConfigContext): ExpoConfig => ({
googleClientIdAndroid: process.env.googleClientIdAndroid,
googleClientIdIOS: process.env.googleClientIdIOS,
googleClientIdWeb: process.env.googleClientIdWeb,
- eas: {projectId: 'bc7483f7-8ec6-409e-91a9-62a0f872c28b'},
+ eas: {projectId: '1a0107b0-1cef-4913-875f-639c38f59101'},
},
updates: {
fallbackToCacheTimeout: 0,
@@ -97,7 +97,7 @@ export default ({config}: ConfigContext): ExpoConfig => ({
},
ios: {
buildNumber: buildNumber.toString(),
- bundleIdentifier: 'com.dooboolab.cpk',
+ bundleIdentifier: 'com.crossplatformkorea.app',
associatedDomains: [`applinks:${DEEP_LINK_URL}`],
supportsTablet: true,
entitlements: {
@@ -134,7 +134,7 @@ export default ({config}: ConfigContext): ExpoConfig => ({
foregroundImage: './assets/adaptive_icon.png',
backgroundColor: '#343434',
},
- package: 'com.dooboolab.cpk',
+ package: 'com.crossplatformkorea.app',
intentFilters: [
{
action: 'VIEW',
diff --git a/dist/apple-app-site-association b/dist/apple-app-site-association
index 6657b81..e8eaa9c 100644
--- a/dist/apple-app-site-association
+++ b/dist/apple-app-site-association
@@ -3,7 +3,7 @@
"apps": [],
"details": [
{
- "appID": "LCXV255WTL.com.dooboolab.cpk",
+ "appID": "PRDQGB267K.com.crossplatformkorea.app",
"paths": ["*"]
}
]
diff --git a/src/utils/common.ts b/src/utils/common.ts
index 90b9424..d8babe2 100644
--- a/src/utils/common.ts
+++ b/src/utils/common.ts
@@ -51,7 +51,7 @@ export const goToAppStore = (): void => {
if (Platform.OS === 'ios') {
Linking.openURL('itms-apps://itunes.apple.com/us/app/apple-store/');
} else {
- Linking.openURL('market://details?id=com.dooboolab.cpk');
+ Linking.openURL('market://details?id=com.crossplatformkorea.app');
}
};