|
@@ -46,6 +46,9 @@ export default ({ config }: ConfigContext): ExpoConfig => ({
|
|
|
ios: {
|
|
|
supportsTablet: true,
|
|
|
bundleIdentifier: env.PACKAGE_NAME,
|
|
|
+ config: {
|
|
|
+ googleMapsApiKey: env.IOS_GOOGLE_MAP_APIKEY
|
|
|
+ },
|
|
|
infoPlist: {
|
|
|
UIBackgroundModes: ['fetch'],
|
|
|
NSLocationAlwaysUsageDescription:
|
|
@@ -60,6 +63,11 @@ export default ({ config }: ConfigContext): ExpoConfig => ({
|
|
|
},
|
|
|
android: {
|
|
|
package: env.PACKAGE_NAME,
|
|
|
+ config: {
|
|
|
+ googleMaps: {
|
|
|
+ apiKey: env.ANDROID_GOOGLE_MAP_APIKEY
|
|
|
+ }
|
|
|
+ },
|
|
|
permissions: [
|
|
|
'ACCESS_BACKGROUND_LOCATION',
|
|
|
'ACCESS_FINE_LOCATION',
|