Skip to content

Instantly share code, notes, and snippets.

@itsashis4u
Created June 28, 2021 20:06
Show Gist options
  • Save itsashis4u/3b28aaab49de7caf116d3647868cc36c to your computer and use it in GitHub Desktop.
Save itsashis4u/3b28aaab49de7caf116d3647868cc36c to your computer and use it in GitHub Desktop.
expo config
{
name: 'app',
slug: 'app',
version: '1.0.0',
orientation: 'portrait',
icon: './assets/icon.png',
assetBundlePatterns: [
'**/*'
],
plugins: [
[
'with-rn-firebase',
{
androidGoogleServicesPath: './config/google-services.json',
iosGoogleServicesPath: './config/GoogleService-Info.plist'
}
]
],
description: undefined,
sdkVersion: '41.0.0',
platforms: [
'ios',
'android',
'web'
],
splash: {
image: './assets/splash.png',
resizeMode: 'contain',
backgroundColor: '#ffffff'
},
updates: {
fallbackToCacheTimeout: 0
},
ios: {
supportsTablet: true,
bundleIdentifier: 'dev.ashishkumar.app'
},
android: {
package: 'dev.ashishkumar.app',
permissions: [
'android.permission.READ_EXTERNAL_STORAGE',
'android.permission.WRITE_EXTERNAL_STORAGE',
'android.permission.INTERNET'
],
adaptiveIcon: {
foregroundImage: './assets/adaptive-icon.png',
backgroundColor: '#FFFFFF'
}
},
web: {
favicon: './assets/favicon.png'
},
_internal: {
isDebug: false,
projectRoot: '/Users/ashish/repos/app',
staticConfigPath: '/Users/ashish/repos/app/app.json',
packageJsonPath: '/Users/ashish/repos/app/package.json',
dynamicConfigPath: {},
pluginHistory: {
'@react-native-firebase/app': {
name: '@react-native-firebase/app',
version: '12.1.0'
},
'react-native-maps': {
name: 'react-native-maps',
version: 'UNVERSIONED'
},
'expo-ads-admob': {
name: 'expo-ads-admob',
version: 'UNVERSIONED'
},
'expo-apple-authentication': {
name: 'expo-apple-authentication',
version: 'UNVERSIONED'
},
'expo-contacts': {
name: 'expo-contacts',
version: 'UNVERSIONED'
},
'expo-notifications': {
name: 'expo-notifications',
version: 'UNVERSIONED'
},
'expo-updates': {
name: 'expo-updates',
version: '0.5.5'
},
'expo-branch': {
name: 'expo-branch',
version: 'UNVERSIONED'
},
'expo-document-picker': {
name: 'expo-document-picker',
version: 'UNVERSIONED'
},
'expo-facebook': {
name: 'expo-facebook',
version: 'UNVERSIONED'
},
'expo-splash-screen': {
name: 'expo-splash-screen',
version: '0.10.2'
},
'expo-file-system': {
name: 'expo-file-system',
version: '11.0.2'
}
}
},
mods: {
ios: {
dangerous: [AsyncFunction: interceptingMod] {
isProvider: false
},
xcodeproj: [AsyncFunction: interceptingMod] {
isProvider: false
},
infoPlist: [AsyncFunction: interceptingMod] {
isProvider: false
},
appDelegate: [AsyncFunction: interceptingMod] {
isProvider: false
},
entitlements: [AsyncFunction: interceptingMod] {
isProvider: false
},
expoPlist: [AsyncFunction: interceptingMod] {
isProvider: false
}
},
android: {
projectBuildGradle: [AsyncFunction: interceptingMod] {
isProvider: false
},
appBuildGradle: [AsyncFunction: interceptingMod] {
isProvider: false
},
dangerous: [AsyncFunction: interceptingMod] {
isProvider: false
},
manifest: [AsyncFunction: interceptingMod] {
isProvider: false
},
colors: [AsyncFunction: interceptingMod] {
isProvider: false
},
strings: [AsyncFunction: interceptingMod] {
isProvider: false
},
gradleProperties: [AsyncFunction: interceptingMod] {
isProvider: false
},
settingsGradle: [AsyncFunction: interceptingMod] {
isProvider: false
},
mainActivity: [AsyncFunction: interceptingMod] {
isProvider: false
},
styles: [AsyncFunction: interceptingMod] {
isProvider: false
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment