[Solved]Can not setup app, crashes when pressing first continue button

On iPadOS 13.5, on original iPad Pro. I deleted app, and reinstalled it. No matter what I do, I can’t make it into the second setup screen. After pressing the continue button on the welcome screen, the second screen starts to slide into view, then app immediately crashes.

Any ideas on what is causing this? Any way I can help debug this?

:white_check_mark:
I had to add the internal_url and external_url entries beneath the homeassistant entry in my configuration.yaml file. I did not have those in my manual configuration.

Can you pls be a little more specific? Thx!

Per the documentation:

homeassistant:
  name: Home
  latitude: 32.87336
  longitude: 117.22743
  elevation: 430
  unit_system: metric
  time_zone: America/Los_Angeles
  external_url: "https://www.example.com"
  internal_url: "http://homeassistant.local:8123"
  whitelist_external_dirs:
    - /usr/var/dumping-ground
    - /tmp

Also, the example shows using domain names. I used IP addresses instead, as I don’t access it from external. My entries were like this.

external_url: “192.168.xx.xx:8123”
internal_url: “192.168.xx.xx:8123”

Thankyou so much!!