ios - expo prebuild generates multiple CFBundleURLSchemes - Stack Overflow

admin2025-04-17  3

Using scheme:'myappname' in app.json as mentioned in their docs, but it generates duplicate CFBundleURLSchemes and I am worried it's going to break something down the line. So far, schemes do work, but debugging univers

<key>CFBundleURLTypes</key>
<array>
  <dict>
    <key>CFBundleURLSchemes</key>
    <array>
      <string>myappname</string>
      <string>fi.myappname.app</string>
    </array>
  </dict>
  <dict>
    <key>CFBundleURLSchemes</key>
    <array>
      <string>exp+myappname-mobile</string>
    </array>
  </dict>
</array>
转载请注明原文地址:http://anycun.com/QandA/1744904944a89276.html