mirror of
https://github.com/morten-olsen/bob-the-algorithm.git
synced 2026-02-08 00:46:25 +01:00
monorepo
This commit is contained in:
51
packages/app/app.config.js
Normal file
51
packages/app/app.config.js
Normal file
@@ -0,0 +1,51 @@
|
||||
const pkg = require('./package.json');
|
||||
const config = {
|
||||
expo: {
|
||||
name: 'Bob',
|
||||
slug: 'bob',
|
||||
version: pkg.version,
|
||||
orientation: 'portrait',
|
||||
icon: './assets/images/icon.png',
|
||||
scheme: 'bobthealgorithm',
|
||||
userInterfaceStyle: 'automatic',
|
||||
splash: {
|
||||
image: './assets/images/splash.png',
|
||||
resizeMode: 'contain',
|
||||
backgroundColor: '#ffffff',
|
||||
},
|
||||
updates: {
|
||||
fallbackToCacheTimeout: 0,
|
||||
},
|
||||
assetBundlePatterns: ['**/*'],
|
||||
ios: {
|
||||
supportsTablet: true,
|
||||
bundleIdentifier: 'pro.mortenolsen.bob',
|
||||
buildNumber: pkg.version,
|
||||
config: {
|
||||
usesNonExemptEncryption: false,
|
||||
},
|
||||
},
|
||||
android: {
|
||||
adaptiveIcon: {
|
||||
foregroundImage: './assets/images/adaptive-icon.png',
|
||||
backgroundColor: '#ffffff',
|
||||
},
|
||||
package: 'pro.mortenolsen.bob',
|
||||
},
|
||||
web: {
|
||||
favicon: './assets/images/favicon.png',
|
||||
},
|
||||
// hooks: {
|
||||
// postPublish: [
|
||||
// {
|
||||
// file: 'sentry-expo/upload-sourcemaps',
|
||||
// config: {
|
||||
// setCommits: true,
|
||||
// },
|
||||
// },
|
||||
// ],
|
||||
// },
|
||||
},
|
||||
};
|
||||
|
||||
module.exports = config;
|
||||
Reference in New Issue
Block a user