Browse Source

iOS config changes

Daniel 1 year ago
parent
commit
380ba65523
1 changed files with 4 additions and 3 deletions
  1. 4 3
      app.config.ts

+ 4 - 3
app.config.ts

@@ -49,8 +49,8 @@ export default ({ config }: ConfigContext): ExpoConfig => ({
   platforms: ['ios', 'android'],
   assetBundlePatterns: ['**/*'],
   ios: {
-    supportsTablet: true,
-    bundleIdentifier: env.PACKAGE_NAME,
+    supportsTablet: false,
+    bundleIdentifier: env.PACKAGE_NAME_IOS, // com.nomadmania.app2
     config: {
       googleMapsApiKey: env.IOS_GOOGLE_MAP_APIKEY
     },
@@ -99,7 +99,8 @@ export default ({ config }: ConfigContext): ExpoConfig => ({
       {
         android: {
           minSdkVersion: 24,
-          targetSdkVersion: 33
+          targetSdkVersion: 33,
+          // kotlinVersion: '1.7.1'
         }
       }
     ],