您需要将Firebase网址方案添加到Info.plist。转到
<app_directory>/ios/Runner/Info.plist并添加以下内容:
<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"><plist version="1.0"><dict> ... <key>CFBundleURLTypes</key> <array> <dict> <key>CFBundleTypeRole</key> <string>Editor</string> <key>CFBundleURLSchemes</key> <array> <!-- Insert your reversed client ID here --> <string> REVERSED_CLIENT_ID </string> </array> </dict> </array> ...</dict></plist>
您可以
REVERSED_CLIENT_ID从
GoogleService-Info.plist文件中获取。
您可以在此处找到更多信息。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)