iOS app crash on TestFlight

Please provide the following:

  1. SDK Version: 36.0.0
  2. Platforms(Android/iOS/web/all): iOS

Hey all! i build an app on expo, everything works fine on development and production mode via expo start, but when create the build and uploaded to the App Store, is rejected because it fails after the onboarding screens. The first thing is that the app store team test the app on iPad and in my app.json i specific this "supportsTablet": false,.

This is the crash report from testflight:

{"app_name":"ComLukiinLukiin","timestamp":"2020-02-25 15:03:43.48 -0800","app_version":"1.0.0","slice_uuid":"3683e025-a18a-3c0a-a5ad-88e3f51caac7","adam_id":1500351617,"build_version":"1","bundleID":"com.lukiin.lukiin","share_with_app_devs":false,"is_first_party":false,"bug_type":"109","os_version":"iPhone OS 13.3.1 (17D50)","incident_id":"25A2CD0C-64B6-4C4E-A0A2-0E95E715C806","name":"ComLukiinLukiin"}
Incident Identifier: 25A2CD0C-64B6-4C4E-A0A2-0E95E715C806
CrashReporter Key:   a3beab7b2ad2d18ea4cd9f25e4a6c67da0fe69b1
Hardware Model:      iPad11,3
Process:             ComLukiinLukiin [16397]
Path:                /private/var/containers/Bundle/Application/5FB547C8-944D-4487-95AB-03369C4C2AD0/ExpoKitApp.app/ComLukiinLukiin
Identifier:          com.lukiin.lukiin
Version:             1 (1.0.0)
AppStoreTools:       11C29
Code Type:           ARM-64 (Native)
Role:                Foreground
Parent Process:      launchd [1]
Coalition:           com.lukiin.lukiin [13251]


Date/Time:           2020-02-25 15:03:42.5459 -0800
Launch Time:         2020-02-25 15:03:38.1703 -0800
OS Version:          iPhone OS 13.3.1 (17D50)
Release Type:        User
Baseband Version:    n/a
Report Version:      104

Exception Type:  EXC_CRASH (SIGABRT)
Exception Codes: 0x0000000000000000, 0x0000000000000000
Exception Note:  EXC_CORPSE_NOTIFY
Triggered by Thread:  0

Last Exception Backtrace:
(0x1832d696c 0x182fef028 0x1831c614c 0x10311bb24 0x103118efc 0x103107c98 0x103107230 0x1022f6038 0x1022fca2c 0x102511610 0x10257dafc 0x182f7ab7c 0x182f7bfd8 0x182f87cc8 0x183251cc8 0x18324ca24 0x18324bf40 0x18d4dc534 0x1873d7580 0x102178b58 0x1830cae18)

Thread 0 name:  Dispatch queue: com.apple.main-thread
Thread 0 Crashed:
0   libsystem_kernel.dylib        	0x00000001830c0efc 0x18309b000 + 155388
1   libsystem_pthread.dylib       	0x0000000182fe08b8 0x182fde000 + 10424
2   libsystem_c.dylib             	0x0000000182f70af4 0x182efa000 + 486132
3   libsystem_c.dylib             	0x0000000182f70a80 0x182efa000 + 486016
4   libc++abi.dylib               	0x00000001830883c8 0x183087000 + 5064
5   libc++abi.dylib               	0x00000001830885c0 0x183087000 + 5568
6   libobjc.A.dylib               	0x0000000182fef308 0x182fe9000 + 25352
7   libc++abi.dylib               	0x0000000183095634 0x183087000 + 58932
8   libc++abi.dylib               	0x00000001830955c0 0x183087000 + 58816
9   libdispatch.dylib             	0x0000000182f7bfec 0x182f79000 + 12268
10  libdispatch.dylib             	0x0000000182f87cc8 0x182f79000 + 60616
11  CoreFoundation                	0x0000000183251cc8 0x1831a4000 + 711880
12  CoreFoundation                	0x000000018324ca24 0x1831a4000 + 690724
13  CoreFoundation                	0x000000018324bf40 0x1831a4000 + 687936
14  GraphicsServices              	0x000000018d4dc534 0x18d4d9000 + 13620
15  UIKitCore                     	0x00000001873d7580 0x186994000 + 10761600
16  ComLukiinLukiin               	0x0000000102178b58 0x102174000 + 19288
17  libdyld.dylib                 	0x00000001830cae18 0x1830ca000 + 3608

Ans this is my app.json file:

{
  "expo": {
    "owner": "cokeina",
    "name": "Lukiin",
    "slug": "Lukiin",
    "privacy": "public",
    "sdkVersion": "36.0.0",
    "platforms": [
      "ios",
      "android"
    ],
    "version": "1.12",
    "orientation": "portrait",
    "icon": "./assets/icon.png",
    "splash": {
      "image": "./assets/splash.png",
      "resizeMode": "contain",
      "backgroundColor": "#ffffff"
    },
    "updates": {
      "fallbackToCacheTimeout": 0
    },
    "assetBundlePatterns": [
      "assets/fonts/*"
    ],
    "ios": {
      "supportsTablet": false,
      "bundleIdentifier": "com.lukiin.lukiin",
      "buildNumber": "1.12",
      "config": {
        "googleMapsApiKey": "xxxxxxxxxxxxxx"
      },
      "infoPlist": {
        "NSPhotoLibraryUsageDescription": "Lukiin quiere acceder a tus biblioteca de fotografías.",
        "NSLocationWhenInUseUsageDescription": "Lukiin necesita acceder a tu posición geográfica para funcionar correctamente.",
        "NSLocationAlwaysUsageDescription": "Lukiin necesita acceder a tu posición geográfica para funcionar correctamente.",
        "NSLocationAlwaysAndWhenInUseUsageDescription": "Lukiin necesita acceder a tu posición geográfica para funcionar correctamente."
      }
    },
    "android": {
      "versionCode": 3,
      "package": "com.lukiin.lukiin",
      "config": {
        "googleMaps": {
          "apiKey": "xxxxxxxxxx"
        }
      }
    },
    "facebookScheme": "xxxxxxxxxxx",
    "facebookAppId": "xxxxxxxxxx",
    "facebookDisplayName": "Lukiin"
  }
}

Been stuck for weeks, hope you can help me guys, cheers!

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.