Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions apps/mobile/app.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ const createConfig = (): Omit<ExpoConfig, 'extra'> & { extra: { eas: EASConfig }
slug: process.env.EXPO_PUBLIC_APP_SLUG as string,
scheme: process.env.EXPO_PUBLIC_APP_SCHEME as string,
owner: process.env.EXPO_PUBLIC_APP_OWNER as string,
version: '1.1.0',
version: '1.2.0',
orientation: 'portrait',
icon: './assets/icon.png',
runtimeVersion: '1.1.0',
runtimeVersion: '1.2.0',
experiments: {
reactCompiler: true,
},
Expand All @@ -41,8 +41,8 @@ const createConfig = (): Omit<ExpoConfig, 'extra'> & { extra: { eas: EASConfig }
bundleIdentifier: appId,
supportsTablet: false,
buildNumber: appEnv.select({
default: '13',
production: '7',
default: '18',
production: '8',
}),
config: {
usesNonExemptEncryption: false,
Expand All @@ -51,8 +51,8 @@ const createConfig = (): Omit<ExpoConfig, 'extra'> & { extra: { eas: EASConfig }
android: {
package: appId,
versionCode: appEnv.select({
default: 13,
production: 7,
default: 15,
production: 8,
}),
adaptiveIcon: {
foregroundImage: './assets/adaptive-icon.png',
Expand Down
Loading