URL Scheme not recognized IOS

So I want to add multiple url schemes in my app. But with the current version of expo it’s not possible. So I have this workaround for IOS. The problem is, ios is not recognizing the config

  "ios": {

    "infoPlist": {
      "CFBundleURLTypes": [
        {
          "CFBundleTypeRole": "Editor",
          "CFBundleURLSchemes": ["scheme1", "scheme2"]
        }
      ],
      "LSApplicationQueriesSchemes": ["scheme1", "scheme2"]
    }
  }

It will recognize.