Files
bob-the-algorithm/app.config.js
Morten Olsen 6181eeb0c8 fix
2022-05-11 23:18:16 +02:00

52 lines
1.1 KiB
JavaScript

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;