Fatal Exception: java.lang.RuntimeException: Expo encountered a fatal error: Error while updating property 'fontFamily' in shadow node of type: RCTText

Please provide the following:

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

Replace this section with as much relevant information as possible and any relevant code along with your question.

i have got crash log from firebase . My app standalone apk is crashed in some device at startup but working fine in some another devices.
Below is the crash log received from firbase crash log

Fatal Exception: java.lang.RuntimeException: Expo encountered a fatal error: Error while updating property 'fontFamily' in shadow node of type: RCTText
       at host.exp.exponent.experience.BaseExperienceActivity$2.run(BaseExperienceActivity.java:206)
       at android.os.Handler.handleCallback(Handler.java:873)
       at android.os.Handler.dispatchMessage(Handler.java:99)
       at android.os.Looper.loop(Looper.java:214)
       at android.app.ActivityThread.main(ActivityThread.java:7073)
       at java.lang.reflect.Method.invoke(Method.java)
       at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:494)
       at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:964)

see this related upstream issue on react-native: https://github.com/facebook/react-native/issues/21002

above react-native issue link is related to height.
In my code i have written

 <Component
              style={
                Object {
                  "color": "#1087DD",
                  "fontFamily": "openSansRegular",
                  "fontSize": 16,
                }
              }
            >
              Don't have an account? Sign up for free!
            </Component>

is this correct format i have written fontFamily in my code

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