Skip to content

Commit

Permalink
chore(eas): update-env
Browse files Browse the repository at this point in the history
  • Loading branch information
fernandatoledo committed Aug 6, 2024
1 parent 213db45 commit e1328bf
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion app.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export default ({ config }: ConfigContext): ExpoConfig => ({
description: `${Env.NAME} Mobile App`,
owner: Env.EXPO_ACCOUNT_OWNER,
scheme: Env.SCHEME,
slug: 'obytesapp',
slug: 'reactnativetemplate',
version: Env.VERSION.toString(),
orientation: 'portrait',
icon: './assets/icon.png',
Expand Down
8 changes: 4 additions & 4 deletions env.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,17 +28,17 @@ require('dotenv').config({
* Such as: bundle id, package name, app name.
*
* 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
* for example: if the APP_ENV is staging, the bundle id will be com.rootstrap.staging
* for example: if the APP_ENV is staging, the bundle id will be com.myexpoapp.staging
*/

// TODO: Replace these values with your own

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

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

0 comments on commit e1328bf

Please sign in to comment.