Skip to content

Commit e1328bf

Browse files
chore(eas): update-env
1 parent 213db45 commit e1328bf

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

app.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export default ({ config }: ConfigContext): ExpoConfig => ({
99
description: `${Env.NAME} Mobile App`,
1010
owner: Env.EXPO_ACCOUNT_OWNER,
1111
scheme: Env.SCHEME,
12-
slug: 'obytesapp',
12+
slug: 'reactnativetemplate',
1313
version: Env.VERSION.toString(),
1414
orientation: 'portrait',
1515
icon: './assets/icon.png',

env.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,17 +28,17 @@ require('dotenv').config({
2828
* Such as: bundle id, package name, app name.
2929
*
3030
* You can add them to the .env file but we think it's better to keep them here as as we use prefix to generate this values based on the APP_ENV
31-
* for example: if the APP_ENV is staging, the bundle id will be com.rootstrap.staging
31+
* for example: if the APP_ENV is staging, the bundle id will be com.myexpoapp.staging
3232
*/
3333

3434
// TODO: Replace these values with your own
3535

3636
const BUNDLE_ID = 'com.rootstrap'; // ios bundle id
3737
const PACKAGE = 'com.rootstrap'; // android package name
3838
const NAME = 'RootstrapApp'; // app name
39-
const EXPO_ACCOUNT_OWNER = 'rootstrap'; // expo account owner
40-
const EAS_PROJECT_ID = 'c3e1075b-6fe7-4686-aa49-35b46a229044'; // eas project id
41-
const SCHEME = 'rootstrapApp'; // app scheme
39+
const EXPO_ACCOUNT_OWNER = 'rsdevs'; // expo account owner
40+
const EAS_PROJECT_ID = '72fdf440-59f1-493d-96e3-4afad8d7a045'; // eas project id
41+
const SCHEME = 'RootstrapApp'; // app scheme
4242

4343
/**
4444
* We declare a function withEnvSuffix that will add a suffix to the variable name based on the APP_ENV

0 commit comments

Comments
 (0)