From cab80763fc3f401a1dcfa067a649d49e217a8cf6 Mon Sep 17 00:00:00 2001 From: Mateusz Rostkowski Date: Thu, 3 Nov 2022 19:33:42 +0100 Subject: [PATCH] fix: change iosBundleIdentifier --- app.config.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app.config.ts b/app.config.ts index 906d4dc4..3b1c7ae0 100644 --- a/app.config.ts +++ b/app.config.ts @@ -21,8 +21,8 @@ const appIconPath = './assets/icons/ios/icon-' export const APP_CONFIG = { androidPackageName: 'your_android_package_name', // CONFIG: Add your android package name here appName: 'your_app_name', // CONFIG: Add your app name here - easProjectId: 'your _eas_project_id', // CONFIG: Add your eas project ID here - iosBundleIdentifier: 'your_ios_bundle_identifier', // CONFIG: Add your ios bundle identifier here + easProjectId: 'your-eas-project-id', // CONFIG: Add your eas project ID here + iosBundleIdentifier: 'your.ios.bundle.identifier', // CONFIG: Add your ios bundle identifier here isDev: process.env.IS_DEV === '1', isExpoGo: process.env.IS_EXPO_GO === '1', } as const