I am using a build scheme for prod and one for staging (with 2 different bundle identifiers) and I am trying to use a separate GoogleService-Info.plist for each scheme. Is t
Here's how to do it in Xamarin C#:
string plistPath = NSBundle.MainBundle.PathForResource ("GoogleService-Info", "plist"); Options options = new Options (plistPath); App.Configure (options);
Remember to include the Firebase namespace:
using Firebase.Analytics;