我应该如何为firebase phone auth向Info.plist文件添加自定义URL方案?

我应该如何为firebase phone auth向Info.plist文件添加自定义URL方案?,firebase,firebase-authentication,Firebase,Firebase Authentication,这个问题是关于 我已经尝试了几件事,将自定义URL方案添加到我的Info.plist中,但没有成功 我在Info.plist中添加了以下行 <key>CFBundleURLTypes</key> <array> <dict> <key>CFBundleTypeRole</key> <string>Editor</string> <key&g

这个问题是关于

我已经尝试了几件事,将自定义URL方案添加到我的Info.plist中,但没有成功

我在Info.plist中添加了以下行

<key>CFBundleURLTypes</key>
<array>
    <dict>
        <key>CFBundleTypeRole</key>
        <string>Editor</string>
        <key>CFBundleURLName</key>
        <string>com.googleusercontent.apps</string> 
        <key>CFBundleURLSchemes</key>
        <array>
            <string>apps.{{CLIENT_ID}}</string>
        </array>
    </dict>
</array>
CbundleUrlTypes
CbundleTypeRole
编辑
CFBundleURLName
com.googleusercontent.apps
循环流化床锅炉方案
应用程序{{CLIENT_ID}
编辑: 通过像这样修改上面的行,解决了这个问题


<key>CFBundleURLTypes</key>
<array>
    <dict>
        <key>CFBundleTypeRole</key>
        <string>Editor</string>
        <key>CFBundleURLSchemes</key>
        <array>
            <string>com.googleusercontent.apps.{{CLIENT_ID}}</string>
        </array>
    </dict>
</array>

CbundleurlTypes
CbundleTypeRole
编辑
循环流化床锅炉方案
com.googleusercontent.apps.{{CLIENT_ID}

将其添加到信息>Url类型中,如下所示:

详情如下:


将其添加到信息>Url类型中,如下所示:

详情如下: