Coder Social home page Coder Social logo

plugin.firebase's Introduction

Plugin.Firebase

This is a wrapper library around the native Android and iOS Firebase Xamarin SDKs which includes cross-platform APIs for most of the Firebase features.

Supported features

Feature Plugin Version
Analytics Plugin.Firebase.Analytics NuGet
Auth Plugin.Firebase.Auth NuGet
Facebook Sign In Plugin.Firebase.Auth.Facebook NuGet
Google Sign In Plugin.Firebase.Auth.Google NuGet
Cloud Messaging Plugin.Firebase.CloudMessaging NuGet
Crashlytics Plugin.Firebase.Crashlytics NuGet
Dynamic Links Plugin.Firebase.DynamicLinks NuGet
Firestore Plugin.Firebase.Firestore NuGet
Cloud Functions Plugin.Firebase.Functions NuGet
Remote Config Plugin.Firebase.RemoteConfig NuGet
Storage Plugin.Firebase.Storage NuGet
All in one Plugin.Firebase NuGet

Version 3.0.0 Notes

Version 3.0.0 of this plugin marks a migration from the abandoned Microsoft-published Firebase iOS Nuget packages (prefixed with Xamarin.Firebase.iOS.* this plugin previously depended on.

Public discussion of the issue can be found on MAUI's GH

There should not be any breaking API changes. However, we felt the major version bump was appropriate to communicate the significant change in the plugin's iOS binding dependencies, which are no longer sourced by Microsoft. Moving forward, this plugin will depend on a community-maintained fork of the deprecated packages published under a new package prefix AdamE.Firebase.iOS.*

The migration to AdamE.Firebase.iOS.* packages additionally bumps underlying native Firebase iOS SDKs to version 10.24.0. This is a significant upgrade from the previous latest-available version supported by Microsoft of 8.10. Check the Firebase iOS SDK release notes to see what's changed, which includes various bug fixes as well as privacy manifest support.

Basic setup

  1. Create a Firebase project in the Firebase Console, if you don't already have one. If you already have an existing Google project associated with your mobile app, click Import Google Project. Otherwise, click Create New Project.
  2. Click Add Firebase to your [iOS|Android] app and follow the setup steps. If you're importing an existing Google project, this may happen automatically and you can just download the config file.
  3. Add [GoogleService-Info.plist|google-services.json] file to your app project.
  4. Set [GoogleService-Info.plist|google-services.json] build action behaviour to [Bundle Resource|GoogleServicesJson] by Right clicking/Build Action.
  5. (iOS only) Check the Readme at AdamEssenmacher/GoogleApisForiOSComponents for additional setup steps that may be required.

.NET MAUI support

The new plugin version 1.2.0 now supports .NET MAUI applications with .NET 6 ๐Ÿš€

To get started add the GoogleService-Info.plist and the google-services.json files to the root folder of your project and include them in the .csproj file like this:

<ItemGroup Condition="'$(TargetFramework)' == 'net6.0-android'">
    <GoogleServicesJson Include="google-services.json" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net6.0-ios'">
    <BundleResource Include="GoogleService-Info.plist" />
</ItemGroup>

Be sure to change the TargetFramework condition to the correct value for your target versions (i.e. net6.0-*, net7.0-*, net8.0-*, etc.)

Initialize the plugin in your MauiProgram.cs like this:

using Plugin.Firebase.Auth;

#if IOS
using Plugin.Firebase.Core.Platforms.iOS;
#elif ANDROID
using Plugin.Firebase.Core.Platforms.Android;
#endif

public static class MauiProgram
{
    public static MauiApp CreateMauiApp()
    {
        return MauiApp
            .CreateBuilder()
            .UseMauiApp<App>()
            ...
            .RegisterFirebaseServices()
            .Build();
    }
    
    private static MauiAppBuilder RegisterFirebaseServices(this MauiAppBuilder builder)
    {
        builder.ConfigureLifecycleEvents(events => {
#if IOS
            events.AddiOS(iOS => iOS.WillFinishLaunching((_,__) => {
                CrossFirebase.Initialize();
                return false;
            }));
#elif ANDROID
            events.AddAndroid(android => android.OnCreate((activity, _) =>
                CrossFirebase.Initialize(activity)));
#endif
        });
        
        builder.Services.AddSingleton(_ => CrossFirebaseAuth.Current);
        return builder;
    }
    
}

Ensure the ApplicationId in your .csproj file matches the bundle_id and package_name inside of the [GoogleService-Info.plist|google-services.json] files:

<ApplicationId>com.example.myapp</ApplicationId>

The plugin doesn't support Windows or Mac catalyst, so either remove their targets from your .csproj file or use preprocessor directives and MSBuild conditions, e.g:

<ItemGroup Condition="'$(TargetFramework)' == 'net6.0-ios' OR '$(TargetFramework)' == 'net6.0-android'">
    <PackageReference Include="Plugin.Firebase" Version="1.2.0" />
</ItemGroup>

Android specifics

  • For package versions prior to Plugin.Firebase 2.0.7, Plugin.Firebase.Auth 2.0.5, Plugin.Firebase.Firestore 2.0.5, Plugin.Firebase.Functions 2.0.2 or Plugin.Firebase.Storage 2.0.2 add the following ItemGroup to your .csproj file to prevent build errors:
<ItemGroup Condition="'$(TargetFramework)' == 'net6.0-android'">
  <PackageReference Include="Xamarin.Kotlin.StdLib.Jdk7" Version="1.7.10" ExcludeAssets="build;buildTransitive" />
  <PackageReference Include="Xamarin.Kotlin.StdLib.Jdk8" Version="1.7.10" ExcludeAssets="build;buildTransitive" />
</ItemGroup>
  • For later versions add the following ItemGroup to your .csproj file to prevent build errors:
<ItemGroup Condition="'$(TargetFramework)' == 'net7.0-android'">
    <PackageReference Include="Xamarin.AndroidX.Core" Version="1.12.0.2" />
    <PackageReference Include="Xamarin.AndroidX.Collection" Version="1.3.0.1" />
    <PackageReference Include="Xamarin.AndroidX.Collection.Ktx" Version="1.3.0.1" />
    <PackageReference Include="Xamarin.AndroidX.Activity.Ktx" Version="1.8.0.1" />
    <PackageReference Include="Xamarin.AndroidX.Browser" Version="1.6.0.2" />
</ItemGroup>

Take a look at the sample project to get more information.

Plugin.Firebase.Legacy

If you are working with an older Xamarin project and are not able to migrate to .NET MAUI yet, there is a legacy version of the plugin called Plugin.Firebase.Legacy. The code for this package is located on a branch called legacy. Bugfixes or other small important changes can be done here and will be synced to the development/master branch if needed.

Android specifics

  • Add the following PackageReference to the .csproj file of your android project to prevent a build error (see this github comment for more information):
<PackageReference Include="Xamarin.Google.Guava.ListenableFuture" Version="1.0.0.2" ExcludeAssets="build;buildTransitive" />
  • If you receive an error that states the default Firebase App is not initialized, adding one package explicitly seems to resolve this issue (it doesn't seem to matter which package gets added).

Documentation and samples

In the docs folder you can find for every feature a designated readme file that describes the setup and usage of this feature or where to find more information.

In the sample folder you can find a sample Xamarin.Forms project. This project serves as a base to play around with the plugin and to test features that are hard to test automatically (like Authentication or Cloud Messages). playground-functions is a Cloud Functions project and contains the code to enable sending Cloud Messages from the backend.

In the tests folder you can find a Xamarin.Forms project that lets you run integration tests. You should definitely check out the *Fixture.cs files to learn how the plugin is supposed to work. All the tests should pass when they get executed on a real device.

In case you would like to run the sample or test project by yourself, you need to add the GoogleService-Info.plist and google-services.json files of your own firebase project and adapt the other config files like Info.plist, Entitlements.plist, AndroidManifest.xml.

For windows users

@coop-tim has created a .NET 8 sample project with a really good and extensive description. It's targeting iOS and Android with Firebase Cloud Messaging, Analytics and the relevant build pipelines to get them built and pushed into App Center. Definitely worth checking it out!

Using Firebase Local Emulator Suite

If you would like to use the Firebase Local Emulator Suite for your tests or rapid prototyping you can do so by following the steps of the Getting started guide and calling the UseEmulator(host, port) method of the desired firebase service before doing any other operations.

For example the Plugin.Firebase.IntegrationTests project is configured to be able to use the Cloud Firestore emulator. You can start the emulator with initial seed data by running firebase emulators:start --only firestore --import=test-data/. Uncomment the line CrossFirebaseFirestore.Current.UseEmulator("localhost", 8080); in IntegrationTestAppDelegate.cs or MainActivity.cs to let the test project know it should use the emulator. Now all firestore related tests should pass.

Troubleshooting

Windows 11 long path issue

Problems with the Xamarin.Firebase.iOS.Core package mean that installation can fail on Windows due to long paths See dotnet/maui#17828. To combat this, you need to enable long paths in the registry and move your local nuget cache. You should also keep the path to your project as short as possible.:

Powershell

Run in an elevated prompt

New-ItemProperty `
    -Path "HKLM:\SYSTEM\CurrentControlSet\Control\FileSystem" `
    -Name "LongPathsEnabled" `
    -Value 1 `
    -PropertyType DWORD `
    -Force
Nuget cache

Create a folder named C:\n. Add an environment variable:

NUGET_PACKAGES = C:\n

Install package !!!manually via CLI!!!

Don't open or build the project in VS until you have done the next part.

Navigate to your project folder and run in a command line:

dotnet add package Xamarin.Firebase.iOS.Core

Additional hints:
  • The long path problem is caused by XCFramework format. These are just naturally going to have long file names.
  • Visual Studio (Windows) is fundamentally not compatible with long file names.
  • There's nothing this plugin can do about it. Issues should be opened with the Visual Studio team and the iOS components team over at https://github.com/xamarin/GoogleApisForiOSComponents (for all the good it'll do you...)
  • This doesn't affect macs, which don't have an issue with the long file names.
  • The plugin is still buildable on VS (Windows) as long as you run dotnet restore outside of the IDE. However, the archiving will probably still need to happen on a mac.

Contributions

You are welcome to contribute to this project by creating a Pull Request. The project contains an .editorconfig file that handles the code formatting, so please apply the formatting rules by running dotnet format src/Plugin.Firebase.sln in the console before creating a Pull Request (see dotnet-format docs or this video for more information).

License

Plugin.Firebase is released under the MIT license. See the LICENSE file for details.

Release notes

  • Version 2.0.*
    • see docs of separate nuget packages
  • Version 2.0.0
    • All features have been split into separate nuget packages
    • Cleaned up namespaces
    • Enable usage of DateTime in Firestore #137
    • Remove unnecessary dependency Microsoft.CSharp #143
    • Fix fcm token refresh by adding DidReceiveRegistrationToken method to FirebaseCloudMessagingImplementation
  • Version 1.3.0
    • Get rid of newtonsoft.json, use system.text.json instead #119
    • Add crashlytics implementation #120
    • Add support for DateTime type to ToHashMap/Put extension #121
    • Lazy google/facebook auth #122
    • Return FIRAuthError.WrongPassword at android for wrong pw signin #117
    • Calling completion in didReceiveNotificationResponse:completionHandler #106
    • Big thanks to tranb3r for the contributions! :)

plugin.firebase's People

Contributors

adambebko avatar adamessenmacher avatar dependabot[bot] avatar gekidoku avatar kapusch avatar mataboge avatar matabogeo avatar robertmaxted avatar tobiasbuchholz avatar tranb3r avatar vhugogarcia avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

plugin.firebase's Issues

Firestore: simple compound query not working on iOS

Simple query crashing on iOS

tested the two function below, and both crashed with error :
NullreferenceException: NSvalue cannot be null

the functions tested:

Collection.WhereGreaterThan("property", value).GetDocumentsAsync<myObject>();

Collection.WhereGreaterThanOrEqualsTo("property", value).GetDocumentsAsync<myObject>();

The equivalent works perfect on android with the same information.

Couldn't retrieve FCM token

Hello, I have a problem with await CrossFirebaseCloudMessaging.Current.GetTokenAsync();

This line throw an Exception : Couldn't retrieve FCM token

I'm using .NET Maui, VS Mac and debugging on Iphone 13 Simulator

StackTrace : at Plugin.Firebase.CloudMessaging.FirebaseCloudMessagingImplementation.GetTokenAsync() at InitManage.ViewModels.Login.LoginViewModel.OnLoginCommand() in /Users/thomasbernard/Desktop/INIT Mobile .nosync/InitManage/InitManage/ViewModels/Login/LoginViewModel.cs:line 66

Create User

Am I missing something, or is CreateUserAsync(string email, string password) missing from the shared project?

I see it exists in both platform projects, but it's not exposed in the shared project.

CloudMessaging: CrossFirebaseCloudMessaging.Current.NotificationTapped not invoked when app is killed

The CrossFirebaseCloudMessaging.Current.NotificationTapped method is invoked when a user taps on a notification which was received when an app is in the background, in this case the method works. The Foreground method of receiving notifications also works perfect.

The issue comes when a user kills an app (by sliding up on both Android & iOS), and later receivers a notification: The notification pops up normally on the system tray, when a user taps on it, the app opens but the method CrossFirebaseCloudMessaging.Current.NotificationTapped is not fired. This happens on both platforms [android & iOS]

This is where I am initializing this method on the shared project, all the platform specific code were followed as per instructions

    public App()
    {
        CrossFirebaseCloudMessaging.Current.NotificationTapped += Current_NotificationTapped;
        ....
    }

[Feature] Enable Firebase emulators

Hello @TobiasBuchholz ,

I wonder if this is currently possible to enable Firebase emulators with your library ?

As your library provides a wrapper for all Firebase services, it would be very good being able to activate the Firebase emulators instead of pointing to an actual Firebase instance.

Is it something you already planned to add ? Do you have an idea about the required implementation ?
I would like to help on that but I do not have yet knowledge on how to do it.

Could not install nuget package on VS 2022

I tried to install the nuget package on Visual Studio 2022.

But i get the error:

Could not find a part of the path 'C:\Users\Roman.nuget\packages\xamarin.firebase.ios.installations\8.10.0.1\lib\net6.0-ios15.4\Firebase.Installations.resources\FirebaseInstallations.xcframework\ios-arm64_i386_x86_64-simulator\FirebaseInstallations.framework\Headers\FirebaseInstallations-umbrella.h'.

I already set the LongPathsEnabled to 1 on the registry. But it doesn't work.

Android Download crash

Hi!I like your plugin and thanks for it. I tryed to download a file in my project and there it seems to be a problem.
I also tryed in your sample project and the problem is still there.
I tryed to download a file and add observers for Fail,Success and Progress,but i get an error...
I alose checked on IOS and there it works.
How i tryed to download using observers
Screenshot 2021-02-23 at 13 31 38

the exception :
Screenshot 2021-02-23 at 13 31 59

Attaching a listener on a compounded query first loads ALL the documents in the collection

There seems to be a problem when attaching a listener to a compounded query, at first, all the documents in the collection are downloaded, instead of only those that "match" the query. This introduces financial implications when dealing with huge data. . The plugin continues to loads all the changes correctly when they occur. The main problem is the first initial loading, when attaching, were it first downloads literally all documents in the collection. I tested this scenario with the following implementation

        ActiveListener = CrossFirebaseFirestore.Current
                                  .GetCollection("GroupChat")
                                  .WhereGreaterThan("LatestTime", lastitem)
                                  .AddSnapshotListener<Object>(x => 
                                  {
                                     
                                  });

Unhandled Exception on iOS implementation of RunTransactionAsync

Hi @TobiasBuchholz ,

Just to let you know that exceptions cannot be handled if they occur in the iOS implementation for RunTransactionAsync :

public async Task<TResult> RunTransactionAsync<TResult>(Func<ITransaction, TResult> updateFunc)

image

This is annoying as the app is crashing even in a try catch block.
I have tried to fix it but with no success so far... Would you know how to fix it ?

Thanks in advance

Crashlytics

Hi,

Do you plan to add a cross-platform wrapper for crashlytics?

Also, thanks for this great plugin!

.NET MAUI

Is your library compatible with .NET MAUI?

Exception because of missing Activity on Android

Hi,

thanks for the grate library. For our use case it works grate.

We noticed that on Android sometimes, normally on app resume or if you activate "Don't keep activities" in developer settings your library throws this exception:

"Current Activity is null, ensure that the MainApplication.cs file is setting the CurrentActivity in your source code so Firebase Analytics can use it."

This are my questions :)

  1. Can we ignore it by "try-catching" it and your library will "recover" itself. Does it fetch on every call the current activity? This would mean we lose maybe one event but after the activity is instantiated your library will continue to work correctly
  2. Can we set the activity in any way?
  3. Is it a bug that can be fixed or is it intended behaviour?

Thanks a lot for your answer!

Cheers.

Android Notification custom implementation

First of the all, the library is great. Helps me to implement most of the firebase functionality in my app.

My only concern is when I send multiple notification in android, it's shows multiple notifications in notification bar & history. Is there a way that I can extend/exclude the service & create my notification customisation?

Or it would be a better to add grouping of the notification when multiple notification appears just like gmail handles it.

FirebaseInstallations

Hi,

Is it possible to add a cross-platform wrapper for FirebaseInstallations ?

Thank you

Project not buildable anymore ?

Hello @TobiasBuchholz, I did want to fetch your last commits in order to update my forked repo, but now I am not able to build the Plugin.Firebase project anymore (while it still build without your last commits).

I wonder, are you still able to build the project ?

Any thought on the error I get please ?

/Library/Frameworks/Mono.framework/External/xbuild/Xamarin/Android/Xamarin.Android.Common.targets(2,2): Error: Root element is missing.
  at System.Xml.XmlTextReaderImpl.Throw (System.Exception e) [0x00027] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/referencesource/System.Xml/System/Xml/Core/XmlTextReaderImpl.cs:2503 
  at System.Xml.XmlTextReaderImpl.ThrowWithoutLineInfo (System.String res) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/referencesource/System.Xml/System/Xml/Core/XmlTextReaderImpl.cs:2511 
  at System.Xml.XmlTextReaderImpl.ParseDocumentContent () [0x0035d] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/referencesource/System.Xml/System/Xml/Core/XmlTextReaderImpl.cs:3742 
  at System.Xml.XmlTextReaderImpl.Read () [0x0008c] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/referencesource/System.Xml/System/Xml/Core/XmlTextReaderImpl.cs:1168 
  at System.Xml.Linq.XDocument.Load (System.Xml.XmlReader reader, System.Xml.Linq.LoadOptions options) [0x00016] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/System.Private.Xml.Linq/src/System/Xml/Linq/XDocument.cs:427 
  at System.Xml.Linq.XDocument.Load (System.String uri, System.Xml.Linq.LoadOptions options) [0x0000f] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/System.Private.Xml.Linq/src/System/Xml/Linq/XDocument.cs:222 
  at System.Xml.Linq.XDocument.Load (System.String uri) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/System.Private.Xml.Linq/src/System/Xml/Linq/XDocument.cs:190 
  at Xamarin.Android.Tools.AndroidAppManifest.Load (System.String filename, Xamarin.Android.Tools.AndroidVersions versions) [0x0001c] in /Users/runner/work/1/s/xamarin-android/external/xamarin-android-tools/src/Xamarin.Android.Tools.AndroidSdk/AndroidAppManifest.cs:86 
  at Xamarin.Android.Tasks.GenerateLibraryResources.RunTaskAsync () [0x00120] in <8ec9987947904c4a8ffd2ddc5288dfe4>:0  (Plugin.Firebase)

[Feature] Cover all data types that Cloud Firestore supports

I can see that some of the data types that Cloud Firestore supports cannot be stored in the database.

For example, it is not possible to store a document which contains a reference to another document :

public class SimpleItem
    {
        [FirestoreDocumentId]
        public string Id { get; set; }

        [FirestoreProperty(nameof(Title))]
        public string Title { get; set; }

        [FirestoreProperty(nameof(DocReferencePath))]
        public string DocReferencePath { get; set; }

        [FirestoreProperty(nameof(DocReference))]
        // This is not going to be stored in the database
        public IDocumentReference DocReference { get; set; }
    }

Possible nullpointer

Hi,

there might be a nullpointer in the TrackEvent Method. I attached the stack trace maybe you can locate it.

System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object at Plugin.Firebase.Analytics.FirebaseAnalyticsImplementation.LogEvent (System.String eventName, System.Collections.Generic.IDictionary2 [TKey,TValue] parameters)

Thanks!

[Android] Firestore: Couldn't put object of type Plugin.Firebase.Android.Firestore.DocumentReferenceWrapper into HashMap

Hi @TobiasBuchholz, I am currently testing your library on my Android app, and there's actually an error when setting data to a document reference using : batch.SetData(shortUserReference, shortUserAccount);

StackTrace

System.ArgumentException: Couldn't put object of type Plugin.Firebase.Android.Firestore.DocumentReferenceWrapper into HashMap
  at System.Collections.Generic.DictionaryExtension.Put (Java.Util.IMap this, System.Object key, System.Object value) [0x00273] in <becdb5103fb14132a70e7e52fa7d7747>:0 
  at System.Collections.Generic.DictionaryExtension.ToHashMap (System.Object this) [0x00050] in <becdb5103fb14132a70e7e52fa7d7747>:0 
  at Plugin.Firebase.Android.Firestore.WriteBatchWrapper.SetData (Plugin.Firebase.Firestore.IDocumentReference document, System.Object data, Plugin.Firebase.Firestore.SetOptions options) [0x00032] in <becdb5103fb14132a70e7e52fa7d7747>:0 

Setup

Visual Studio Community 2022 for Mac (17.0.7)
Xamarin.Android (12.3.3.3)
Xamarin.Forms (5.0.0.2012)
Plugin.Firebase V1.1.2

Here is an extract of the model I'm trying to store :

    public partial class ShortUser
    {
        [FirestoreProperty(nameof(Username))]
        public string Username { get; set; }

        [FirestoreProperty(nameof(UserId))]
        public IDocumentReference UserId { get; set; }

        [FirestoreProperty(nameof(ProfilePicture))]
        public Photo ProfilePicture { get; set; }
    }

Context

I guess it's the IDocumentReference field that is causing the issue. But I've seen something similar which you already solved in the past : #7
Could you please have a look ? Thanks in advance for your help ๐Ÿ™

Nuget on Vs for Mac

Is this available on VS for mac. I just created a new MAUI project and once I add the Nuget.Package and add the code in the sample I will just get the following error.

Error CS0234: The type or namespace name 'Android' does not exist in the namespace 'Plugin.Firebase' (are you missing an assembly reference?) (CS0234)

Not able to install in a .NET MAUI project

I get the following error when I try to install the latest version (1.2.0) into a .NET MAUI project:

Could not find a part of the path 'C:\Users\andre.nuget\packages\xamarin.firebase.ios.installations\8.10.0.1\lib\net6.0-ios15.4\Firebase.Installations.resources\FirebaseInstallations.xcframework\ios-arm64_i386_x86_64-simulator\FirebaseInstallations.framework\Headers\FirebaseInstallations-umbrella.h'.

This can be reproduced by creating a blank .NET MAUI app in Visual Studio version 17.3.3.

Firestore: Couldn't put object of type System.Collections.Generic.Dictionary`2[System.String,System.Int64] into HashMap

Test Enviroment:

Visual studio: V16.9.2
tested on android device,
have not tested on ios
xamarin forms V5.0.0.2012
plugin.Firebase V1.0.5

Stacktrace

at System.Collections.Generic.DictionaryExtension.Put (Java.Util.IMap this, System.Object key, System.Object value) [0x0024a] in <916f017aa0394a678344f82f4e06f803>:0
at System.Collections.Generic.DictionaryExtension.ToHashMap (System.Object this) [0x00050] in <916f017aa0394a678344f82f4e06f803>:0
at Plugin.Firebase.Android.Firestore.DocumentReferenceWrapper.SetDataAsync (System.Object data, Plugin.Firebase.Firestore.SetOptions options) [0x00094] in <916f017aa0394a678344f82f4e06f803>:0

Issue:

The firetore feature shows an error when when uploading a 'firestore-Map' ( a dictionary in the c# world) into the firestore database.

The exception message:

Couldn't put object of type System.Collections.Generic.Dictionary2[System.String,System.Int64] into HashMap`

the code used to Add an object:

`
var document = con.GetCollection(CollectionName).CreateDocument();

await document.SetDataAsync(model, SetOptions.Merge());
`

the model used:

`
public class TestUser : IFirestoreObject
{
[Preserve]
public TestUser(){}

[FirestoreProperty("Score")]
public long Score { get; set; }

[FirestoreProperty("Likes")]
public IList Likes { get; set; }

[FirestoreProperty("SearchHistory")]
public Dictionary<string, long> SearchHistory { get; set; }
}
`

The initial conditions of the model:

`

        TestUser testUser = new TestUser();

        testUser.Likes = new List<string> { "1", "3", "25" };

        testUser.Score = 9;

        testUser.SearchHistory = new Dictionary<string, long>{ { "14", 5 }, { "45", 200 } };

`
the package seems to have a problem with casting dictionary to the android equivalent. when i remove the dictionary property, the data is uploading perfectly. When reading data (downloading from database), the plugin is able to cast the firestore-map back into the c# dictionary, the problem is casting c# dictionary to firestore-map when uploading.

The sample docs do not show an example for reading and writing an object with a map.

Firestore : System.ArgumentException: Do not know how to marshal object of type 'Plugin.Firebase.Firestore.FieldValue' to an NSObject

Hi @TobiasBuchholz , I am currently doing some tests about your Firestore "Update" methods, so that I can just "patch" specific fields instead of completely overwriting my object on Firestore.

While this methods works great : myDocumentReference.UpdateDataAsync(updates); , it doesn't work anymore in a transaction context for some types like IEnumerable, FieldValue, ... The error says it cannot "marshal" to an NSObject.

await CrossFirebaseFirestore.Current.RunTransactionAsync(transaction =>
            {
                transaction.UpdateData(myDocumentReference, updates);
                return true;
            });
.....
.....
var batch = CrossFirebaseFirestore.Current.CreateBatch();
batch.UpdateData(myDocumentReference, updates);
await batch.CommitAsync();

StackTrace

System.ArgumentException: Do not know how to marshal object of type 'Plugin.Firebase.Firestore.FieldValue' to an NSObject
  at Foundation.NSArray.From[T] (T[] items, System.Int64 count) [0x0005c] in /Library/Frameworks/Xamarin.iOS.framework/Versions/15.12.0.2/src/Xamarin.iOS/Foundation/NSArray.cs:153 
  at Foundation.NSArray.FromObjects (System.nint count, System.Object[] items) [0x00000] in /Library/Frameworks/Xamarin.iOS.framework/Versions/15.12.0.2/src/Xamarin.iOS/Foundation/NSArray.cs:136 
  at Foundation.NSDictionary`2[TKey,TValue].FromObjectsAndKeys (System.Object[] objects, System.Object[] keys, System.nint count) [0x00068] in /Library/Frameworks/Xamarin.iOS.framework/Versions/15.12.0.2/src/Xamarin.iOS/Foundation/NSDictionary_2.cs:235 
  at Firebase.CloudFirestore.WriteBatch.UpdateData (System.Collections.Generic.Dictionary`2[TKey,TValue] fields, Firebase.CloudFirestore.DocumentReference document) [0x0002a] in <6138d74f602843c4a14bce9b56ce2700>:0 
  at Plugin.Firebase.iOS.Firestore.WriteBatchWrapper.UpdateData (Plugin.Firebase.Firestore.IDocumentReference document, System.ValueTuple`2[System.String,System.Object][] data) [0x00012] in <af590805f88345db8c9a66cd819c17d8>:0 

Setup

Visual Studio Community 2022 for Mac (17.3)
Xamarin.iOS (15.12.0.2)
Xamarin.Forms (5.0.0.2478)
Plugin.Firebase V1.1.2

Note : I didn't try on Android yet.

Firestore: Requesting Document Id Attribute

An attribute for the document Id is necessary when reading data from Firestore if having the id as a class property.
The .Net Firestore implementation has that attribute as seen below from here

`[FirestoreDocumentId]`
`public string MyIdPropertyName { get; set; }`

When dealing with a large set of data it becomes tedious to update your id property from Document.Reference.Id for each document.

Please add the attribute that will automatically copy the document id into a single property in the class model.

[Feature] Provide Reauthenticate method under CrossFirebaseAuth.Current.CurrentUser

Hi @TobiasBuchholz , recently Apple requested app developers to provide a way for their users to delete their account.

I was happy to find the DeleteAsync method under CrossFirebaseAuth.Current.CurrentUser, however I have faced a FIRAuthErrorCodeRequiresRecentLogin which basically indicates the user has attempted a sensitive operation more than 5 minutes after signing in, and then requires recent authentication.

I could prompt a dialog for the user to be able to reauthenticate, however this is not suitable for users who signed in with Google, Facebook or Apple.

I can explain to my users that they need to reauthenticate and quickly go for the deletion of their account, however this would be neat having a Reauthenticate method under CrossFirebaseAuth.Current.CurrentUser.

I can see from the docs there is a way to do so with providers as well.

Build Error

FYI, Project have latest xamarin.forms 5

After installing Plugin.Firebase package from .nuget getting below error;

**Build Output

Building solution Diksha (Debug)
Build started 19-01-2021 13:55:29.


Project "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha/Diksha.csproj" (Build target(s)):

Target GenerateTargetFrameworkMonikerAttribute:
Skipping target "GenerateTargetFrameworkMonikerAttribute" because all output files are up-to-date with respect to the input files.
Target XamlG:
Generating code behind for XAML files
Target CssG:
Skipping target "CssG" because it has no outputs.
Target CssG:
Skipping target "CssG" because it has no outputs.
Target CoreCompile:
/Applications/Visual Studio.app/Contents/Resources/lib/monodevelop/bin/MSBuild/Current/bin/Roslyn/csc.exe /noconfig /unsafe- /checked- /nowarn:1701,1702,1701,1702,2008 /fullpaths /nostdlib+ /errorreport:prompt /warn:4 /define:TRACE;DEBUG;NETSTANDARD;NETSTANDARD2_0 /errorendlocation /preferreduilang:en-US /highentropyva+ /reference:/Users/hiteshmalhotra/.nuget/packages/microsoft.csharp/4.7.0/ref/netstandard2.0/Microsoft.CSharp.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/Microsoft.Win32.Primitives.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/mscorlib.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/netstandard.dll /reference:/Users/hiteshmalhotra/.nuget/packages/newtonsoft.json/12.0.3/lib/netstandard2.0/Newtonsoft.Json.dll /reference:/Users/hiteshmalhotra/.nuget/packages/plugin.firebase/1.0.1/lib/netstandard2.0/Plugin.Firebase.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.AppContext.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Collections.Concurrent.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Collections.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Collections.NonGeneric.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Collections.Specialized.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.ComponentModel.Composition.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.ComponentModel.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.ComponentModel.EventBasedAsync.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.ComponentModel.Primitives.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.ComponentModel.TypeConverter.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Console.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Core.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Data.Common.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Data.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Diagnostics.Contracts.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Diagnostics.Debug.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Diagnostics.FileVersionInfo.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Diagnostics.Process.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Diagnostics.StackTrace.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Diagnostics.TextWriterTraceListener.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Diagnostics.Tools.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Diagnostics.TraceSource.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Diagnostics.Tracing.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Drawing.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Drawing.Primitives.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Dynamic.Runtime.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Globalization.Calendars.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Globalization.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Globalization.Extensions.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.IO.Compression.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.IO.Compression.FileSystem.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.IO.Compression.ZipFile.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.IO.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.IO.FileSystem.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.IO.FileSystem.DriveInfo.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.IO.FileSystem.Primitives.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.IO.FileSystem.Watcher.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.IO.IsolatedStorage.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.IO.MemoryMappedFiles.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.IO.Pipes.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.IO.UnmanagedMemoryStream.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Linq.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Linq.Expressions.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Linq.Parallel.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Linq.Queryable.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Net.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Net.Http.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Net.NameResolution.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Net.NetworkInformation.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Net.Ping.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Net.Primitives.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Net.Requests.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Net.Security.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Net.Sockets.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Net.WebHeaderCollection.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Net.WebSockets.Client.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Net.WebSockets.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Numerics.dll /reference:/Users/hiteshmalhotra/.nuget/packages/system.numerics.vectors/4.5.0/ref/netstandard2.0/System.Numerics.Vectors.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.ObjectModel.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Reflection.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Reflection.Extensions.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Reflection.Primitives.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Resources.Reader.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Resources.ResourceManager.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Resources.Writer.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Runtime.CompilerServices.VisualC.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Runtime.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Runtime.Extensions.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Runtime.Handles.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Runtime.InteropServices.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Runtime.InteropServices.RuntimeInformation.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Runtime.Numerics.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Runtime.Serialization.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Runtime.Serialization.Formatters.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Runtime.Serialization.Json.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Runtime.Serialization.Primitives.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Runtime.Serialization.Xml.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Security.Claims.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Security.Cryptography.Algorithms.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Security.Cryptography.Csp.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Security.Cryptography.Encoding.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Security.Cryptography.Primitives.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Security.Cryptography.X509Certificates.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Security.Principal.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Security.SecureString.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.ServiceModel.Web.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Text.Encoding.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Text.Encoding.Extensions.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Text.RegularExpressions.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Threading.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Threading.Overlapped.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Threading.Tasks.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Threading.Tasks.Parallel.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Threading.Thread.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Threading.ThreadPool.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Threading.Timer.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Transactions.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.ValueTuple.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Web.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Windows.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Xml.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Xml.Linq.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Xml.ReaderWriter.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Xml.Serialization.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Xml.XDocument.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Xml.XmlDocument.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Xml.XmlSerializer.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Xml.XPath.dll /reference:/usr/local/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Xml.XPath.XDocument.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.essentials/1.6.0/lib/netstandard2.0/Xamarin.Essentials.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.forms/5.0.0.1874/lib/netstandard2.0/Xamarin.Forms.Core.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.forms/5.0.0.1874/lib/netstandard2.0/Xamarin.Forms.Platform.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.forms/5.0.0.1874/lib/netstandard2.0/Xamarin.Forms.Xaml.dll /debug+ /debug:portable /filealign:512 /optimize- /out:obj/Debug/netstandard2.0/Diksha.dll /refout:obj/Debug/netstandard2.0/ref/Diksha.dll /resource:App.xaml,Diksha.App.xaml /resource:MainPage.xaml,Diksha.MainPage.xaml /target:library /warnaserror- /utf8output /deterministic+ /langversion:7.3 App.xaml.cs AssemblyInfo.cs MainPage.xaml.cs "obj/Debug/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.cs" obj/Debug/netstandard2.0/App.xaml.g.cs obj/Debug/netstandard2.0/MainPage.xaml.g.cs obj/Debug/netstandard2.0/Diksha.AssemblyInfo.cs /warnaserror+:NU1605
Using shared compilation with compiler from directory: /Applications/Visual Studio.app/Contents/Resources/lib/monodevelop/bin/MSBuild/Current/bin/Roslyn
Target XamlC:
Compiling Xaml, assembly: obj/Debug/netstandard2.0/Diksha.dll
Creating "obj/Debug/netstandard2.0/XamlC.stamp" because "AlwaysCreate" was specified.
Target CopyFilesToOutputDirectory:
Copying file from "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha/obj/Debug/netstandard2.0/Diksha.dll" to "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha/bin/Debug/netstandard2.0/Diksha.dll".
Diksha -> /Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha/bin/Debug/netstandard2.0/Diksha.dll
Copying file from "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha/obj/Debug/netstandard2.0/Diksha.pdb" to "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha/bin/Debug/netstandard2.0/Diksha.pdb".
Build started 19-01-2021 13:55:30.


Project "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/Diksha.iOS.csproj" (Build target(s)):

Target PrepareForBuild:
Creating directory "obj/iPhoneSimulator/Debug/".
Target _CoreCompileInterfaceDefinitions:
Tool /usr/bin/xcrun execution started with arguments: ibtool --errors --warnings --notices --output-format xml1 --minimum-deployment-target 8.0 --target-device iphone --target-device ipad --auto-activate-custom-fonts --sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.3.sdk --compilation-directory "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/obj/iPhoneSimulator/Debug/ibtool" "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/Resources/LaunchScreen.storyboard"

  BundleResources Output:
    obj/iPhoneSimulator/Debug/ibtool/LaunchScreen.storyboardc/X5k-f2-b5h-view-yd7-JS-zBw.nib
    obj/iPhoneSimulator/Debug/ibtool/LaunchScreen.storyboardc/UIViewController-X5k-f2-b5h.nib
    obj/iPhoneSimulator/Debug/ibtool/LaunchScreen.storyboardc/Info.plist
  OutputManifests Output:
    obj/iPhoneSimulator/Debug/ibtool-manifests/LaunchScreen.storyboardc

Target _BeforeCoreCompileImageAssets:
Directory "obj/iPhoneSimulator/Debug/actool" doesn't exist. Skipping.
Target _CoreCompileImageAssets:
Tool /usr/bin/xcrun execution started with arguments: actool --errors --warnings --notices --output-format xml1 --output-partial-info-plist "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/obj/iPhoneSimulator/Debug/actool/partial-info.plist" --app-icon AppIcon --compress-pngs --target-device iphone --target-device ipad --minimum-deployment-target 8.0 --platform iphonesimulator --compile "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/obj/iPhoneSimulator/Debug/actool/bundle" "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/obj/iPhoneSimulator/Debug/actool/cloned-assets/Assets.xcassets"

Target _CoreCompileColladaAssets:
Skipping target "_CoreCompileColladaAssets" because it has no inputs.
Target _BeforeCoreCompileSceneKitAssets:
Skipping target "_BeforeCoreCompileSceneKitAssets" because it has no inputs.
Target _BeforeCoreCompileSceneKitAssets:
Skipping target "_BeforeCoreCompileSceneKitAssets" because it has no inputs.
Target _BeforeCoreCompileSceneKitAssets:
Skipping target "_BeforeCoreCompileSceneKitAssets" because it has no inputs.
Target _CoreCompileSceneKitAssets:
Skipping target "_CoreCompileSceneKitAssets" because it has no inputs.
Target _BeforeCompileTextureAtlases:
Skipping target "_BeforeCompileTextureAtlases" because it has no inputs.
Target _BeforeCompileTextureAtlases:
Skipping target "_BeforeCompileTextureAtlases" because it has no inputs.
Target _BeforeCompileTextureAtlases:
Skipping target "_BeforeCompileTextureAtlases" because it has no inputs.
Target _CoreCompileTextureAtlases:
Skipping target "_CoreCompileTextureAtlases" because it has no inputs.
Target _BeforeCompileCoreMLModels:
Directory "obj/iPhoneSimulator/Debug/coremlc" doesn't exist. Skipping.
Target _CoreOptimizePngImages:
Skipping target "_CoreOptimizePngImages" because it has no outputs.
Target _CoreOptimizePropertyLists:
/usr/bin/plutil -convert binary1 -o obj/iPhoneSimulator/Debug/optimized/GoogleSignIn.bundle/Info.plist /Users/hiteshmalhotra/Library/Caches/XamarinBuildDownload/GSgnI-5.0.2/Resources/GoogleSignIn.bundle/Info.plist
Target _CoreOptimizeLocalizationFiles:
/usr/bin/plutil -convert binary1 -o obj/iPhoneSimulator/Debug/optimized/GoogleSignIn.bundle/ar.lproj/GoogleSignIn.strings /Users/hiteshmalhotra/Library/Caches/XamarinBuildDownload/GSgnI-5.0.2/Resources/GoogleSignIn.bundle/ar.lproj/GoogleSignIn.strings
Target _CoreOptimizeLocalizationFiles:
/usr/bin/plutil -convert binary1 -o obj/iPhoneSimulator/Debug/optimized/GoogleSignIn.bundle/ca.lproj/GoogleSignIn.strings /Users/hiteshmalhotra/Library/Caches/XamarinBuildDownload/GSgnI-5.0.2/Resources/GoogleSignIn.bundle/ca.lproj/GoogleSignIn.strings
Target _CoreOptimizeLocalizationFiles:
/usr/bin/plutil -convert binary1 -o obj/iPhoneSimulator/Debug/optimized/GoogleSignIn.bundle/cs.lproj/GoogleSignIn.strings /Users/hiteshmalhotra/Library/Caches/XamarinBuildDownload/GSgnI-5.0.2/Resources/GoogleSignIn.bundle/cs.lproj/GoogleSignIn.strings
Target _CoreOptimizeLocalizationFiles:
/usr/bin/plutil -convert binary1 -o obj/iPhoneSimulator/Debug/optimized/GoogleSignIn.bundle/da.lproj/GoogleSignIn.strings /Users/hiteshmalhotra/Library/Caches/XamarinBuildDownload/GSgnI-5.0.2/Resources/GoogleSignIn.bundle/da.lproj/GoogleSignIn.strings
Target _CoreOptimizeLocalizationFiles:
/usr/bin/plutil -convert binary1 -o obj/iPhoneSimulator/Debug/optimized/GoogleSignIn.bundle/de.lproj/GoogleSignIn.strings /Users/hiteshmalhotra/Library/Caches/XamarinBuildDownload/GSgnI-5.0.2/Resources/GoogleSignIn.bundle/de.lproj/GoogleSignIn.strings
Target _CoreOptimizeLocalizationFiles:
/usr/bin/plutil -convert binary1 -o obj/iPhoneSimulator/Debug/optimized/GoogleSignIn.bundle/el.lproj/GoogleSignIn.strings /Users/hiteshmalhotra/Library/Caches/XamarinBuildDownload/GSgnI-5.0.2/Resources/GoogleSignIn.bundle/el.lproj/GoogleSignIn.strings
Target _CoreOptimizeLocalizationFiles:
/usr/bin/plutil -convert binary1 -o obj/iPhoneSimulator/Debug/optimized/GoogleSignIn.bundle/en.lproj/GoogleSignIn.strings /Users/hiteshmalhotra/Library/Caches/XamarinBuildDownload/GSgnI-5.0.2/Resources/GoogleSignIn.bundle/en.lproj/GoogleSignIn.strings
Target _CoreOptimizeLocalizationFiles:
/usr/bin/plutil -convert binary1 -o obj/iPhoneSimulator/Debug/optimized/GoogleSignIn.bundle/en_GB.lproj/GoogleSignIn.strings /Users/hiteshmalhotra/Library/Caches/XamarinBuildDownload/GSgnI-5.0.2/Resources/GoogleSignIn.bundle/en_GB.lproj/GoogleSignIn.strings
Target _CoreOptimizeLocalizationFiles:
/usr/bin/plutil -convert binary1 -o obj/iPhoneSimulator/Debug/optimized/GoogleSignIn.bundle/es.lproj/GoogleSignIn.strings /Users/hiteshmalhotra/Library/Caches/XamarinBuildDownload/GSgnI-5.0.2/Resources/GoogleSignIn.bundle/es.lproj/GoogleSignIn.strings
Target _CoreOptimizeLocalizationFiles:
/usr/bin/plutil -convert binary1 -o obj/iPhoneSimulator/Debug/optimized/GoogleSignIn.bundle/es_MX.lproj/GoogleSignIn.strings /Users/hiteshmalhotra/Library/Caches/XamarinBuildDownload/GSgnI-5.0.2/Resources/GoogleSignIn.bundle/es_MX.lproj/GoogleSignIn.strings
Target _CoreOptimizeLocalizationFiles:
/usr/bin/plutil -convert binary1 -o obj/iPhoneSimulator/Debug/optimized/GoogleSignIn.bundle/fi.lproj/GoogleSignIn.strings /Users/hiteshmalhotra/Library/Caches/XamarinBuildDownload/GSgnI-5.0.2/Resources/GoogleSignIn.bundle/fi.lproj/GoogleSignIn.strings
Target _CoreOptimizeLocalizationFiles:
/usr/bin/plutil -convert binary1 -o obj/iPhoneSimulator/Debug/optimized/GoogleSignIn.bundle/fr_CA.lproj/GoogleSignIn.strings /Users/hiteshmalhotra/Library/Caches/XamarinBuildDownload/GSgnI-5.0.2/Resources/GoogleSignIn.bundle/fr_CA.lproj/GoogleSignIn.strings
Target _CoreOptimizeLocalizationFiles:
/usr/bin/plutil -convert binary1 -o obj/iPhoneSimulator/Debug/optimized/GoogleSignIn.bundle/fr.lproj/GoogleSignIn.strings /Users/hiteshmalhotra/Library/Caches/XamarinBuildDownload/GSgnI-5.0.2/Resources/GoogleSignIn.bundle/fr.lproj/GoogleSignIn.strings
Target _CoreOptimizeLocalizationFiles:
/usr/bin/plutil -convert binary1 -o obj/iPhoneSimulator/Debug/optimized/GoogleSignIn.bundle/he.lproj/GoogleSignIn.strings /Users/hiteshmalhotra/Library/Caches/XamarinBuildDownload/GSgnI-5.0.2/Resources/GoogleSignIn.bundle/he.lproj/GoogleSignIn.strings
Target _CoreOptimizeLocalizationFiles:
/usr/bin/plutil -convert binary1 -o obj/iPhoneSimulator/Debug/optimized/GoogleSignIn.bundle/hi.lproj/GoogleSignIn.strings /Users/hiteshmalhotra/Library/Caches/XamarinBuildDownload/GSgnI-5.0.2/Resources/GoogleSignIn.bundle/hi.lproj/GoogleSignIn.strings
Target _CoreOptimizeLocalizationFiles:
/usr/bin/plutil -convert binary1 -o obj/iPhoneSimulator/Debug/optimized/GoogleSignIn.bundle/hr.lproj/GoogleSignIn.strings /Users/hiteshmalhotra/Library/Caches/XamarinBuildDownload/GSgnI-5.0.2/Resources/GoogleSignIn.bundle/hr.lproj/GoogleSignIn.strings
Target _CoreOptimizeLocalizationFiles:
/usr/bin/plutil -convert binary1 -o obj/iPhoneSimulator/Debug/optimized/GoogleSignIn.bundle/hu.lproj/GoogleSignIn.strings /Users/hiteshmalhotra/Library/Caches/XamarinBuildDownload/GSgnI-5.0.2/Resources/GoogleSignIn.bundle/hu.lproj/GoogleSignIn.strings
Target _CoreOptimizeLocalizationFiles:
/usr/bin/plutil -convert binary1 -o obj/iPhoneSimulator/Debug/optimized/GoogleSignIn.bundle/id.lproj/GoogleSignIn.strings /Users/hiteshmalhotra/Library/Caches/XamarinBuildDownload/GSgnI-5.0.2/Resources/GoogleSignIn.bundle/id.lproj/GoogleSignIn.strings
Target _CoreOptimizeLocalizationFiles:
/usr/bin/plutil -convert binary1 -o obj/iPhoneSimulator/Debug/optimized/GoogleSignIn.bundle/it.lproj/GoogleSignIn.strings /Users/hiteshmalhotra/Library/Caches/XamarinBuildDownload/GSgnI-5.0.2/Resources/GoogleSignIn.bundle/it.lproj/GoogleSignIn.strings
Target _CoreOptimizeLocalizationFiles:
/usr/bin/plutil -convert binary1 -o obj/iPhoneSimulator/Debug/optimized/GoogleSignIn.bundle/ja.lproj/GoogleSignIn.strings /Users/hiteshmalhotra/Library/Caches/XamarinBuildDownload/GSgnI-5.0.2/Resources/GoogleSignIn.bundle/ja.lproj/GoogleSignIn.strings
Target _CoreOptimizeLocalizationFiles:
/usr/bin/plutil -convert binary1 -o obj/iPhoneSimulator/Debug/optimized/GoogleSignIn.bundle/ko.lproj/GoogleSignIn.strings /Users/hiteshmalhotra/Library/Caches/XamarinBuildDownload/GSgnI-5.0.2/Resources/GoogleSignIn.bundle/ko.lproj/GoogleSignIn.strings
Target _CoreOptimizeLocalizationFiles:
/usr/bin/plutil -convert binary1 -o obj/iPhoneSimulator/Debug/optimized/GoogleSignIn.bundle/ms.lproj/GoogleSignIn.strings /Users/hiteshmalhotra/Library/Caches/XamarinBuildDownload/GSgnI-5.0.2/Resources/GoogleSignIn.bundle/ms.lproj/GoogleSignIn.strings
Target _CoreOptimizeLocalizationFiles:
/usr/bin/plutil -convert binary1 -o obj/iPhoneSimulator/Debug/optimized/GoogleSignIn.bundle/nb.lproj/GoogleSignIn.strings /Users/hiteshmalhotra/Library/Caches/XamarinBuildDownload/GSgnI-5.0.2/Resources/GoogleSignIn.bundle/nb.lproj/GoogleSignIn.strings
Target _CoreOptimizeLocalizationFiles:
/usr/bin/plutil -convert binary1 -o obj/iPhoneSimulator/Debug/optimized/GoogleSignIn.bundle/nl.lproj/GoogleSignIn.strings /Users/hiteshmalhotra/Library/Caches/XamarinBuildDownload/GSgnI-5.0.2/Resources/GoogleSignIn.bundle/nl.lproj/GoogleSignIn.strings
Target _CoreOptimizeLocalizationFiles:
/usr/bin/plutil -convert binary1 -o obj/iPhoneSimulator/Debug/optimized/GoogleSignIn.bundle/pl.lproj/GoogleSignIn.strings /Users/hiteshmalhotra/Library/Caches/XamarinBuildDownload/GSgnI-5.0.2/Resources/GoogleSignIn.bundle/pl.lproj/GoogleSignIn.strings
Target _CoreOptimizeLocalizationFiles:
/usr/bin/plutil -convert binary1 -o obj/iPhoneSimulator/Debug/optimized/GoogleSignIn.bundle/pt.lproj/GoogleSignIn.strings /Users/hiteshmalhotra/Library/Caches/XamarinBuildDownload/GSgnI-5.0.2/Resources/GoogleSignIn.bundle/pt.lproj/GoogleSignIn.strings
Target _CoreOptimizeLocalizationFiles:
/usr/bin/plutil -convert binary1 -o obj/iPhoneSimulator/Debug/optimized/GoogleSignIn.bundle/pt_BR.lproj/GoogleSignIn.strings /Users/hiteshmalhotra/Library/Caches/XamarinBuildDownload/GSgnI-5.0.2/Resources/GoogleSignIn.bundle/pt_BR.lproj/GoogleSignIn.strings
Target _CoreOptimizeLocalizationFiles:
/usr/bin/plutil -convert binary1 -o obj/iPhoneSimulator/Debug/optimized/GoogleSignIn.bundle/pt_PT.lproj/GoogleSignIn.strings /Users/hiteshmalhotra/Library/Caches/XamarinBuildDownload/GSgnI-5.0.2/Resources/GoogleSignIn.bundle/pt_PT.lproj/GoogleSignIn.strings
Target _CoreOptimizeLocalizationFiles:
/usr/bin/plutil -convert binary1 -o obj/iPhoneSimulator/Debug/optimized/GoogleSignIn.bundle/ro.lproj/GoogleSignIn.strings /Users/hiteshmalhotra/Library/Caches/XamarinBuildDownload/GSgnI-5.0.2/Resources/GoogleSignIn.bundle/ro.lproj/GoogleSignIn.strings
Target _CoreOptimizeLocalizationFiles:
/usr/bin/plutil -convert binary1 -o obj/iPhoneSimulator/Debug/optimized/GoogleSignIn.bundle/ru.lproj/GoogleSignIn.strings /Users/hiteshmalhotra/Library/Caches/XamarinBuildDownload/GSgnI-5.0.2/Resources/GoogleSignIn.bundle/ru.lproj/GoogleSignIn.strings
Target _CoreOptimizeLocalizationFiles:
/usr/bin/plutil -convert binary1 -o obj/iPhoneSimulator/Debug/optimized/GoogleSignIn.bundle/sk.lproj/GoogleSignIn.strings /Users/hiteshmalhotra/Library/Caches/XamarinBuildDownload/GSgnI-5.0.2/Resources/GoogleSignIn.bundle/sk.lproj/GoogleSignIn.strings
Target _CoreOptimizeLocalizationFiles:
/usr/bin/plutil -convert binary1 -o obj/iPhoneSimulator/Debug/optimized/GoogleSignIn.bundle/sv.lproj/GoogleSignIn.strings /Users/hiteshmalhotra/Library/Caches/XamarinBuildDownload/GSgnI-5.0.2/Resources/GoogleSignIn.bundle/sv.lproj/GoogleSignIn.strings
Target _CoreOptimizeLocalizationFiles:
/usr/bin/plutil -convert binary1 -o obj/iPhoneSimulator/Debug/optimized/GoogleSignIn.bundle/th.lproj/GoogleSignIn.strings /Users/hiteshmalhotra/Library/Caches/XamarinBuildDownload/GSgnI-5.0.2/Resources/GoogleSignIn.bundle/th.lproj/GoogleSignIn.strings
Target _CoreOptimizeLocalizationFiles:
/usr/bin/plutil -convert binary1 -o obj/iPhoneSimulator/Debug/optimized/GoogleSignIn.bundle/tr.lproj/GoogleSignIn.strings /Users/hiteshmalhotra/Library/Caches/XamarinBuildDownload/GSgnI-5.0.2/Resources/GoogleSignIn.bundle/tr.lproj/GoogleSignIn.strings
Target _CoreOptimizeLocalizationFiles:
/usr/bin/plutil -convert binary1 -o obj/iPhoneSimulator/Debug/optimized/GoogleSignIn.bundle/uk.lproj/GoogleSignIn.strings /Users/hiteshmalhotra/Library/Caches/XamarinBuildDownload/GSgnI-5.0.2/Resources/GoogleSignIn.bundle/uk.lproj/GoogleSignIn.strings
Target _CoreOptimizeLocalizationFiles:
/usr/bin/plutil -convert binary1 -o obj/iPhoneSimulator/Debug/optimized/GoogleSignIn.bundle/vi.lproj/GoogleSignIn.strings /Users/hiteshmalhotra/Library/Caches/XamarinBuildDownload/GSgnI-5.0.2/Resources/GoogleSignIn.bundle/vi.lproj/GoogleSignIn.strings
Target _CoreOptimizeLocalizationFiles:
/usr/bin/plutil -convert binary1 -o obj/iPhoneSimulator/Debug/optimized/GoogleSignIn.bundle/zh_CN.lproj/GoogleSignIn.strings /Users/hiteshmalhotra/Library/Caches/XamarinBuildDownload/GSgnI-5.0.2/Resources/GoogleSignIn.bundle/zh_CN.lproj/GoogleSignIn.strings
Target _CoreOptimizeLocalizationFiles:
/usr/bin/plutil -convert binary1 -o obj/iPhoneSimulator/Debug/optimized/GoogleSignIn.bundle/zh_TW.lproj/GoogleSignIn.strings /Users/hiteshmalhotra/Library/Caches/XamarinBuildDownload/GSgnI-5.0.2/Resources/GoogleSignIn.bundle/zh_TW.lproj/GoogleSignIn.strings
Target _GetProjectReferenceTargetFrameworkProperties:
__________________________________________________
Project "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/Diksha.iOS.csproj" is building "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha/Diksha.csproj" (GetTargetFrameworks target(s)):

Target ResolveProjectReferences:
__________________________________________________
Project "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/Diksha.iOS.csproj" is building "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha/Diksha.csproj" (GetTargetPath target(s)):

__________________________________________________
Project "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/Diksha.iOS.csproj" is building "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha/Diksha.csproj" (GetNativeManifest target(s)):

Target XamlG:
Skipping target "XamlG" because it has no outputs.
Target CssG:
Skipping target "CssG" because it has no outputs.
Target CssG:
Skipping target "CssG" because it has no outputs.
Target XamlG:
Skipping target "XamlG" because it has no outputs.
Target CoreCompile:
/Applications/Visual Studio.app/Contents/Resources/lib/monodevelop/bin/MSBuild/Current/bin/Roslyn/csc.exe /noconfig /nowarn:2008 /fullpaths /nostdlib+ /errorreport:prompt /warn:4 /define:IOS;MOBILE;UNIFIED;DEBUG /errorendlocation /preferreduilang:en-US /reference:"/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha/bin/Debug/netstandard2.0/ref/Diksha.dll" /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.facebook.corekit.ios/7.1.1/lib/xamarinios10/Facebook.CoreKit.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.facebook.loginkit.ios/7.1.1/lib/xamarinios10/Facebook.LoginKit.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.facebook.marketingkit.ios/5.11.1/lib/xamarinios10/Facebook.MarketingKit.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.facebook.placeskit.ios/5.12.0/lib/xamarinios10/Facebook.PlacesKit.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.facebook.sharekit.ios/7.1.1/lib/xamarinios10/Facebook.ShareKit.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.firebase.ios.abtesting/4.2.0/lib/xamarinios10/Firebase.ABTesting.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.firebase.ios.analytics/6.9.0/lib/xamarinios10/Firebase.Analytics.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.firebase.ios.auth/6.9.2/lib/xamarinios10/Firebase.Auth.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.firebase.ios.cloudfirestore/1.19.0/lib/xamarinios10/Firebase.CloudFirestore.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.firebase.ios.cloudfunctions/2.9.0/lib/xamarinios10/Firebase.CloudFunctions.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.firebase.ios.cloudmessaging/4.7.1/lib/xamarinios10/Firebase.CloudMessaging.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.firebase.ios.core/6.10.4/lib/xamarinios10/Firebase.Core.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.firebase.ios.dynamiclinks/4.3.1/lib/xamarinios10/Firebase.DynamicLinks.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.firebase.ios.installations/1.7.0/lib/xamarinios10/Firebase.Installations.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.firebase.ios.instanceid/4.8.0/lib/xamarinios10/Firebase.InstanceID.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.firebase.ios.remoteconfig/4.9.1/lib/xamarinios10/Firebase.RemoteConfig.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.firebase.ios.storage/3.9.1/lib/xamarinios10/Firebase.Storage.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.google.ios.signin/5.0.2.1/lib/xamarinios10/Google.SignIn.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Microsoft.CSharp.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/mscorlib.dll /reference:/Users/hiteshmalhotra/.nuget/packages/newtonsoft.json/12.0.3/lib/netstandard2.0/Newtonsoft.Json.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/OpenTK-1.0.dll /reference:/Users/hiteshmalhotra/.nuget/packages/plugin.firebase/1.0.1/lib/xamarinios10/Plugin.Firebase.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/System.Core.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/System.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/System.Numerics.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/System.Numerics.Vectors.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/System.Xml.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.essentials/1.6.0/lib/xamarinios10/Xamarin.Essentials.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.forms/5.0.0.1874/lib/Xamarin.iOS10/Xamarin.Forms.Core.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.forms/5.0.0.1874/lib/Xamarin.iOS10/Xamarin.Forms.Platform.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.forms/5.0.0.1874/lib/Xamarin.iOS10/Xamarin.Forms.Platform.iOS.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.forms/5.0.0.1874/lib/Xamarin.iOS10/Xamarin.Forms.Xaml.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Xamarin.iOS.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/Microsoft.Win32.Primitives.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/Microsoft.Win32.Registry.AccessControl.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/Microsoft.Win32.Registry.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/netstandard.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.AppContext.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Buffers.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Collections.Concurrent.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Collections.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Collections.NonGeneric.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Collections.Specialized.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.ComponentModel.Annotations.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.ComponentModel.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.ComponentModel.EventBasedAsync.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.ComponentModel.Primitives.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.ComponentModel.TypeConverter.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Console.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Data.Common.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Data.SqlClient.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Diagnostics.Contracts.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Diagnostics.Debug.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Diagnostics.FileVersionInfo.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Diagnostics.Process.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Diagnostics.StackTrace.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Diagnostics.TextWriterTraceListener.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Diagnostics.Tools.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Diagnostics.TraceEvent.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Diagnostics.TraceSource.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Diagnostics.Tracing.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Drawing.Common.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Drawing.Primitives.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Dynamic.Runtime.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Globalization.Calendars.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Globalization.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Globalization.Extensions.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.IO.Compression.ZipFile.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.IO.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.IO.FileSystem.AccessControl.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.IO.FileSystem.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.IO.FileSystem.DriveInfo.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.IO.FileSystem.Primitives.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.IO.FileSystem.Watcher.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.IO.IsolatedStorage.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.IO.MemoryMappedFiles.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.IO.Pipes.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.IO.UnmanagedMemoryStream.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Linq.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Linq.Expressions.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Linq.Parallel.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Linq.Queryable.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Memory.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Net.AuthenticationManager.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Net.Cache.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Net.HttpListener.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Net.Mail.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Net.NameResolution.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Net.NetworkInformation.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Net.Ping.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Net.Primitives.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Net.Requests.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Net.Security.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Net.ServicePoint.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Net.Sockets.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Net.Utilities.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Net.WebHeaderCollection.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Net.WebSockets.Client.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Net.WebSockets.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.ObjectModel.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Reflection.DispatchProxy.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Reflection.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Reflection.Emit.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Reflection.Emit.ILGeneration.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Reflection.Emit.Lightweight.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Reflection.Extensions.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Reflection.Primitives.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Reflection.TypeExtensions.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Resources.Reader.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Resources.ReaderWriter.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Resources.ResourceManager.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Resources.Writer.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Runtime.CompilerServices.VisualC.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Runtime.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Runtime.Extensions.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Runtime.Handles.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Runtime.InteropServices.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Runtime.InteropServices.RuntimeInformation.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Runtime.InteropServices.WindowsRuntime.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Runtime.Loader.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Runtime.Numerics.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Runtime.Serialization.Formatters.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Runtime.Serialization.Json.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Runtime.Serialization.Primitives.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Runtime.Serialization.Xml.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Security.AccessControl.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Security.Claims.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Security.Cryptography.Algorithms.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Security.Cryptography.Cng.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Security.Cryptography.Csp.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Security.Cryptography.DeriveBytes.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Security.Cryptography.Encoding.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Security.Cryptography.Encryption.Aes.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Security.Cryptography.Encryption.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Security.Cryptography.Encryption.ECDiffieHellman.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Security.Cryptography.Encryption.ECDsa.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Security.Cryptography.Hashing.Algorithms.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Security.Cryptography.Hashing.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Security.Cryptography.OpenSsl.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Security.Cryptography.Pkcs.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Security.Cryptography.Primitives.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Security.Cryptography.ProtectedData.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Security.Cryptography.RandomNumberGenerator.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Security.Cryptography.RSA.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Security.Cryptography.X509Certificates.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Security.Principal.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Security.Principal.Windows.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Security.SecureString.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.ServiceModel.Duplex.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.ServiceModel.Http.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.ServiceModel.NetTcp.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.ServiceModel.Primitives.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.ServiceModel.Security.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.ServiceProcess.ServiceController.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Text.Encoding.CodePages.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Text.Encoding.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Text.Encoding.Extensions.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Text.RegularExpressions.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Threading.AccessControl.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Threading.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Threading.Overlapped.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Threading.Tasks.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Threading.Tasks.Extensions.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Threading.Tasks.Parallel.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Threading.Thread.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Threading.ThreadPool.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Threading.Timer.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.ValueTuple.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Xml.ReaderWriter.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Xml.XDocument.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Xml.XmlDocument.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Xml.XmlSerializer.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Xml.XPath.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Xml.XPath.XDocument.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Xml.XPath.XmlDocument.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Xml.Xsl.Primitives.dll /debug+ /debug:full /nowin32manifest /optimize- /out:obj/iPhoneSimulator/Debug/Diksha.iOS.exe /target:exe /utf8output /langversion:7.3 Main.cs AppDelegate.cs Properties/AssemblyInfo.cs "obj/iPhoneSimulator/Debug/Xamarin.iOS,Version=v1.0.AssemblyAttributes.cs"
Using shared compilation with compiler from directory: /Applications/Visual Studio.app/Contents/Resources/lib/monodevelop/bin/MSBuild/Current/bin/Roslyn
Target _CopyFilesMarkedCopyLocal:
Copying file from "/Users/hiteshmalhotra/.nuget/packages/xamarin.facebook.corekit.ios/7.1.1/lib/xamarinios10/Facebook.CoreKit.dll" to "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Facebook.CoreKit.dll".
Copying file from "/Users/hiteshmalhotra/.nuget/packages/xamarin.essentials/1.6.0/lib/xamarinios10/Xamarin.Essentials.dll" to "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Xamarin.Essentials.dll".
Copying file from "/Users/hiteshmalhotra/.nuget/packages/xamarin.facebook.loginkit.ios/7.1.1/lib/xamarinios10/Facebook.LoginKit.dll" to "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Facebook.LoginKit.dll".
Copying file from "/Users/hiteshmalhotra/.nuget/packages/newtonsoft.json/12.0.3/lib/netstandard2.0/Newtonsoft.Json.dll" to "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Newtonsoft.Json.dll".
Copying file from "/Users/hiteshmalhotra/.nuget/packages/plugin.firebase/1.0.1/lib/xamarinios10/Plugin.Firebase.dll" to "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Plugin.Firebase.dll".
Copying file from "/Users/hiteshmalhotra/.nuget/packages/xamarin.essentials/1.6.0/lib/xamarinios10/Xamarin.Essentials.pdb" to "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Xamarin.Essentials.pdb".
Copying file from "/Users/hiteshmalhotra/.nuget/packages/xamarin.facebook.marketingkit.ios/5.11.1/lib/xamarinios10/Facebook.MarketingKit.dll" to "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Facebook.MarketingKit.dll".
Copying file from "/Users/hiteshmalhotra/.nuget/packages/xamarin.facebook.placeskit.ios/5.12.0/lib/xamarinios10/Facebook.PlacesKit.dll" to "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Facebook.PlacesKit.dll".
Copying file from "/Users/hiteshmalhotra/.nuget/packages/xamarin.firebase.ios.abtesting/4.2.0/lib/xamarinios10/Firebase.ABTesting.dll" to "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Firebase.ABTesting.dll".
Copying file from "/Users/hiteshmalhotra/.nuget/packages/xamarin.facebook.sharekit.ios/7.1.1/lib/xamarinios10/Facebook.ShareKit.dll" to "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Facebook.ShareKit.dll".
Copying file from "/Users/hiteshmalhotra/.nuget/packages/xamarin.firebase.ios.analytics/6.9.0/lib/xamarinios10/Firebase.Analytics.dll" to "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Firebase.Analytics.dll".
Copying file from "/Users/hiteshmalhotra/.nuget/packages/xamarin.firebase.ios.auth/6.9.2/lib/xamarinios10/Firebase.Auth.dll" to "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Firebase.Auth.dll".
Copying file from "/Users/hiteshmalhotra/.nuget/packages/xamarin.firebase.ios.cloudfunctions/2.9.0/lib/xamarinios10/Firebase.CloudFunctions.dll" to "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Firebase.CloudFunctions.dll".
Copying file from "/Users/hiteshmalhotra/.nuget/packages/xamarin.firebase.ios.cloudfirestore/1.19.0/lib/xamarinios10/Firebase.CloudFirestore.dll" to "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Firebase.CloudFirestore.dll".
Copying file from "/Users/hiteshmalhotra/.nuget/packages/xamarin.firebase.ios.cloudmessaging/4.7.1/lib/xamarinios10/Firebase.CloudMessaging.dll" to "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Firebase.CloudMessaging.dll".
Copying file from "/Users/hiteshmalhotra/.nuget/packages/xamarin.firebase.ios.core/6.10.4/lib/xamarinios10/Firebase.Core.dll" to "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Firebase.Core.dll".
Copying file from "/Users/hiteshmalhotra/.nuget/packages/xamarin.firebase.ios.dynamiclinks/4.3.1/lib/xamarinios10/Firebase.DynamicLinks.dll" to "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Firebase.DynamicLinks.dll".
Copying file from "/Users/hiteshmalhotra/.nuget/packages/xamarin.firebase.ios.installations/1.7.0/lib/xamarinios10/Firebase.Installations.dll" to "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Firebase.Installations.dll".
Copying file from "/Users/hiteshmalhotra/.nuget/packages/xamarin.firebase.ios.instanceid/4.8.0/lib/xamarinios10/Firebase.InstanceID.dll" to "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Firebase.InstanceID.dll".
Copying file from "/Users/hiteshmalhotra/.nuget/packages/xamarin.firebase.ios.remoteconfig/4.9.1/lib/xamarinios10/Firebase.RemoteConfig.dll" to "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Firebase.RemoteConfig.dll".
Copying file from "/Users/hiteshmalhotra/.nuget/packages/xamarin.firebase.ios.storage/3.9.1/lib/xamarinios10/Firebase.Storage.dll" to "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Firebase.Storage.dll".
Copying file from "/Users/hiteshmalhotra/.nuget/packages/xamarin.forms/5.0.0.1874/lib/Xamarin.iOS10/Xamarin.Forms.Core.dll" to "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Xamarin.Forms.Core.dll".
Copying file from "/Users/hiteshmalhotra/.nuget/packages/xamarin.forms/5.0.0.1874/lib/Xamarin.iOS10/Xamarin.Forms.Core.pdb" to "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Xamarin.Forms.Core.pdb".
Copying file from "/Users/hiteshmalhotra/.nuget/packages/xamarin.forms/5.0.0.1874/lib/Xamarin.iOS10/Xamarin.Forms.Platform.dll" to "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Xamarin.Forms.Platform.dll".
Copying file from "/Users/hiteshmalhotra/.nuget/packages/xamarin.forms/5.0.0.1874/lib/Xamarin.iOS10/Xamarin.Forms.Platform.iOS.dll" to "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Xamarin.Forms.Platform.iOS.dll".
Copying file from "/Users/hiteshmalhotra/.nuget/packages/xamarin.forms/5.0.0.1874/lib/Xamarin.iOS10/Xamarin.Forms.Platform.iOS.pdb" to "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Xamarin.Forms.Platform.iOS.pdb".
Copying file from "/Users/hiteshmalhotra/.nuget/packages/xamarin.forms/5.0.0.1874/lib/Xamarin.iOS10/Xamarin.Forms.Xaml.dll" to "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Xamarin.Forms.Xaml.dll".
Copying file from "/Users/hiteshmalhotra/.nuget/packages/xamarin.forms/5.0.0.1874/lib/Xamarin.iOS10/Xamarin.Forms.Xaml.pdb" to "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Xamarin.Forms.Xaml.pdb".
Copying file from "/Users/hiteshmalhotra/.nuget/packages/xamarin.forms/5.0.0.1874/lib/Xamarin.iOS10/ca/Xamarin.Forms.Platform.iOS.resources.dll" to "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/ca/Xamarin.Forms.Platform.iOS.resources.dll".
Copying file from "/Users/hiteshmalhotra/.nuget/packages/xamarin.forms/5.0.0.1874/lib/Xamarin.iOS10/ar/Xamarin.Forms.Platform.iOS.resources.dll" to "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/ar/Xamarin.Forms.Platform.iOS.resources.dll".
Copying file from "/Users/hiteshmalhotra/.nuget/packages/xamarin.forms/5.0.0.1874/lib/Xamarin.iOS10/cs/Xamarin.Forms.Platform.iOS.resources.dll" to "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/cs/Xamarin.Forms.Platform.iOS.resources.dll".
Copying file from "/Users/hiteshmalhotra/.nuget/packages/xamarin.forms/5.0.0.1874/lib/Xamarin.iOS10/da/Xamarin.Forms.Platform.iOS.resources.dll" to "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/da/Xamarin.Forms.Platform.iOS.resources.dll".
Copying file from "/Users/hiteshmalhotra/.nuget/packages/xamarin.forms/5.0.0.1874/lib/Xamarin.iOS10/de/Xamarin.Forms.Platform.iOS.resources.dll" to "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/de/Xamarin.Forms.Platform.iOS.resources.dll".
Copying file from "/Users/hiteshmalhotra/.nuget/packages/xamarin.forms/5.0.0.1874/lib/Xamarin.iOS10/el/Xamarin.Forms.Platform.iOS.resources.dll" to "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/el/Xamarin.Forms.Platform.iOS.resources.dll".
Copying file from "/Users/hiteshmalhotra/.nuget/packages/xamarin.forms/5.0.0.1874/lib/Xamarin.iOS10/es/Xamarin.Forms.Platform.iOS.resources.dll" to "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/es/Xamarin.Forms.Platform.iOS.resources.dll".
Copying file from "/Users/hiteshmalhotra/.nuget/packages/xamarin.forms/5.0.0.1874/lib/Xamarin.iOS10/fi/Xamarin.Forms.Platform.iOS.resources.dll" to "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/fi/Xamarin.Forms.Platform.iOS.resources.dll".
Copying file from "/Users/hiteshmalhotra/.nuget/packages/xamarin.forms/5.0.0.1874/lib/Xamarin.iOS10/fr/Xamarin.Forms.Platform.iOS.resources.dll" to "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/fr/Xamarin.Forms.Platform.iOS.resources.dll".
Copying file from "/Users/hiteshmalhotra/.nuget/packages/xamarin.forms/5.0.0.1874/lib/Xamarin.iOS10/he/Xamarin.Forms.Platform.iOS.resources.dll" to "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/he/Xamarin.Forms.Platform.iOS.resources.dll".
Copying file from "/Users/hiteshmalhotra/.nuget/packages/xamarin.forms/5.0.0.1874/lib/Xamarin.iOS10/hi/Xamarin.Forms.Platform.iOS.resources.dll" to "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/hi/Xamarin.Forms.Platform.iOS.resources.dll".
Copying file from "/Users/hiteshmalhotra/.nuget/packages/xamarin.forms/5.0.0.1874/lib/Xamarin.iOS10/hr/Xamarin.Forms.Platform.iOS.resources.dll" to "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/hr/Xamarin.Forms.Platform.iOS.resources.dll".
Copying file from "/Users/hiteshmalhotra/.nuget/packages/xamarin.forms/5.0.0.1874/lib/Xamarin.iOS10/hu/Xamarin.Forms.Platform.iOS.resources.dll" to "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/hu/Xamarin.Forms.Platform.iOS.resources.dll".
Copying file from "/Users/hiteshmalhotra/.nuget/packages/xamarin.forms/5.0.0.1874/lib/Xamarin.iOS10/id/Xamarin.Forms.Platform.iOS.resources.dll" to "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/id/Xamarin.Forms.Platform.iOS.resources.dll".
Copying file from "/Users/hiteshmalhotra/.nuget/packages/xamarin.forms/5.0.0.1874/lib/Xamarin.iOS10/it/Xamarin.Forms.Platform.iOS.resources.dll" to "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/it/Xamarin.Forms.Platform.iOS.resources.dll".
Copying file from "/Users/hiteshmalhotra/.nuget/packages/xamarin.forms/5.0.0.1874/lib/Xamarin.iOS10/ja/Xamarin.Forms.Platform.iOS.resources.dll" to "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/ja/Xamarin.Forms.Platform.iOS.resources.dll".
Copying file from "/Users/hiteshmalhotra/.nuget/packages/xamarin.forms/5.0.0.1874/lib/Xamarin.iOS10/ko/Xamarin.Forms.Platform.iOS.resources.dll" to "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/ko/Xamarin.Forms.Platform.iOS.resources.dll".
Copying file from "/Users/hiteshmalhotra/.nuget/packages/xamarin.forms/5.0.0.1874/lib/Xamarin.iOS10/ms/Xamarin.Forms.Platform.iOS.resources.dll" to "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/ms/Xamarin.Forms.Platform.iOS.resources.dll".
Copying file from "/Users/hiteshmalhotra/.nuget/packages/xamarin.forms/5.0.0.1874/lib/Xamarin.iOS10/nb/Xamarin.Forms.Platform.iOS.resources.dll" to "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/nb/Xamarin.Forms.Platform.iOS.resources.dll".
Copying file from "/Users/hiteshmalhotra/.nuget/packages/xamarin.forms/5.0.0.1874/lib/Xamarin.iOS10/nl/Xamarin.Forms.Platform.iOS.resources.dll" to "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/nl/Xamarin.Forms.Platform.iOS.resources.dll".
Copying file from "/Users/hiteshmalhotra/.nuget/packages/xamarin.forms/5.0.0.1874/lib/Xamarin.iOS10/pl/Xamarin.Forms.Platform.iOS.resources.dll" to "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/pl/Xamarin.Forms.Platform.iOS.resources.dll".
Copying file from "/Users/hiteshmalhotra/.nuget/packages/xamarin.forms/5.0.0.1874/lib/Xamarin.iOS10/pt-BR/Xamarin.Forms.Platform.iOS.resources.dll" to "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/pt-BR/Xamarin.Forms.Platform.iOS.resources.dll".
Copying file from "/Users/hiteshmalhotra/.nuget/packages/xamarin.forms/5.0.0.1874/lib/Xamarin.iOS10/pt/Xamarin.Forms.Platform.iOS.resources.dll" to "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/pt/Xamarin.Forms.Platform.iOS.resources.dll".
Copying file from "/Users/hiteshmalhotra/.nuget/packages/xamarin.forms/5.0.0.1874/lib/Xamarin.iOS10/ro/Xamarin.Forms.Platform.iOS.resources.dll" to "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/ro/Xamarin.Forms.Platform.iOS.resources.dll".
Copying file from "/Users/hiteshmalhotra/.nuget/packages/xamarin.forms/5.0.0.1874/lib/Xamarin.iOS10/ru/Xamarin.Forms.Platform.iOS.resources.dll" to "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/ru/Xamarin.Forms.Platform.iOS.resources.dll".
Copying file from "/Users/hiteshmalhotra/.nuget/packages/xamarin.forms/5.0.0.1874/lib/Xamarin.iOS10/sk/Xamarin.Forms.Platform.iOS.resources.dll" to "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/sk/Xamarin.Forms.Platform.iOS.resources.dll".
Copying file from "/Users/hiteshmalhotra/.nuget/packages/xamarin.forms/5.0.0.1874/lib/Xamarin.iOS10/sv/Xamarin.Forms.Platform.iOS.resources.dll" to "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/sv/Xamarin.Forms.Platform.iOS.resources.dll".
Copying file from "/Users/hiteshmalhotra/.nuget/packages/xamarin.forms/5.0.0.1874/lib/Xamarin.iOS10/th/Xamarin.Forms.Platform.iOS.resources.dll" to "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/th/Xamarin.Forms.Platform.iOS.resources.dll".
Copying file from "/Users/hiteshmalhotra/.nuget/packages/xamarin.forms/5.0.0.1874/lib/Xamarin.iOS10/uk/Xamarin.Forms.Platform.iOS.resources.dll" to "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/uk/Xamarin.Forms.Platform.iOS.resources.dll".
Copying file from "/Users/hiteshmalhotra/.nuget/packages/xamarin.forms/5.0.0.1874/lib/Xamarin.iOS10/tr/Xamarin.Forms.Platform.iOS.resources.dll" to "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/tr/Xamarin.Forms.Platform.iOS.resources.dll".
Copying file from "/Users/hiteshmalhotra/.nuget/packages/xamarin.forms/5.0.0.1874/lib/Xamarin.iOS10/vi/Xamarin.Forms.Platform.iOS.resources.dll" to "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/vi/Xamarin.Forms.Platform.iOS.resources.dll".
Copying file from "/Users/hiteshmalhotra/.nuget/packages/xamarin.forms/5.0.0.1874/lib/Xamarin.iOS10/zh-HK/Xamarin.Forms.Platform.iOS.resources.dll" to "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/zh-HK/Xamarin.Forms.Platform.iOS.resources.dll".
Copying file from "/Users/hiteshmalhotra/.nuget/packages/xamarin.forms/5.0.0.1874/lib/Xamarin.iOS10/zh-Hans/Xamarin.Forms.Platform.iOS.resources.dll" to "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/zh-Hans/Xamarin.Forms.Platform.iOS.resources.dll".
Copying file from "/Users/hiteshmalhotra/.nuget/packages/xamarin.google.ios.signin/5.0.2.1/lib/xamarinios10/Google.SignIn.dll" to "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Google.SignIn.dll".
Copying file from "/Users/hiteshmalhotra/.nuget/packages/xamarin.forms/5.0.0.1874/lib/Xamarin.iOS10/zh-Hant/Xamarin.Forms.Platform.iOS.resources.dll" to "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/zh-Hant/Xamarin.Forms.Platform.iOS.resources.dll".
Copying file from "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha/bin/Debug/netstandard2.0/Diksha.pdb" to "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.pdb".
Copying file from "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha/bin/Debug/netstandard2.0/Diksha.dll" to "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.dll".
Creating "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/obj/iPhoneSimulator/Debug/Diksha.iOS.csproj.CopyComplete" because "AlwaysCreate" was specified.
Target GetCopyToOutputDirectoryItems:
Target _GetCopyToOutputDirectoryItemsFromTransitiveProjectReferences:
__________________________________________________
Project "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/Diksha.iOS.csproj" is building "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha/Diksha.csproj" (GetCopyToOutputDirectoryItems target(s)):

Target CopyFilesToOutputDirectory:
Copying file from "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/obj/iPhoneSimulator/Debug/Diksha.iOS.exe" to "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.exe".
Diksha.iOS -> /Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.exe
Copying file from "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/obj/iPhoneSimulator/Debug/Diksha.iOS.pdb" to "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.pdb".
Target _DetectSigningIdentity:
Detected signing identity:

  Bundle Id: org.satsang.Diksha
  App Id: org.satsang.Diksha

Target _CopyResourcesToBundle:
Creating directory '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/LaunchScreen.storyboardc'

Copying file from '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/obj/iPhoneSimulator/Debug/ibtool/LaunchScreen.storyboardc/X5k-f2-b5h-view-yd7-JS-zBw.nib' to '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/LaunchScreen.storyboardc/X5k-f2-b5h-view-yd7-JS-zBw.nib'
        
Copying file from '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/obj/iPhoneSimulator/Debug/ibtool/LaunchScreen.storyboardc/UIViewController-X5k-f2-b5h.nib' to '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/LaunchScreen.storyboardc/UIViewController-X5k-f2-b5h.nib'
        
Copying file from '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/obj/iPhoneSimulator/Debug/ibtool/LaunchScreen.storyboardc/Info.plist' to '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/LaunchScreen.storyboardc/Info.plist'
        
Copying file from '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/obj/iPhoneSimulator/Debug/actool/bundle/[email protected]' to '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/[email protected]'
        
Copying file from '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/obj/iPhoneSimulator/Debug/actool/bundle/AppIcon20x20@2x~ipad.png' to '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/AppIcon20x20@2x~ipad.png'
        
Copying file from '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/obj/iPhoneSimulator/Debug/actool/bundle/[email protected]' to '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/[email protected]'
        
Copying file from '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/obj/iPhoneSimulator/Debug/actool/bundle/AppIcon20x20~ipad.png' to '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/AppIcon20x20~ipad.png'
        
Copying file from '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/obj/iPhoneSimulator/Debug/actool/bundle/[email protected]' to '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/[email protected]'
        
Copying file from '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/obj/iPhoneSimulator/Debug/actool/bundle/AppIcon29x29@2x~ipad.png' to '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/AppIcon29x29@2x~ipad.png'
        
Copying file from '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/obj/iPhoneSimulator/Debug/actool/bundle/[email protected]' to '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/[email protected]'
        
Copying file from '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/obj/iPhoneSimulator/Debug/actool/bundle/AppIcon29x29~ipad.png' to '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/AppIcon29x29~ipad.png'
        
Copying file from '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/obj/iPhoneSimulator/Debug/actool/bundle/[email protected]' to '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/[email protected]'
        
Copying file from '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/obj/iPhoneSimulator/Debug/actool/bundle/AppIcon40x40@2x~ipad.png' to '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/AppIcon40x40@2x~ipad.png'
        
Copying file from '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/obj/iPhoneSimulator/Debug/actool/bundle/[email protected]' to '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/[email protected]'
        
Copying file from '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/obj/iPhoneSimulator/Debug/actool/bundle/AppIcon40x40~ipad.png' to '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/AppIcon40x40~ipad.png'
        
Copying file from '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/obj/iPhoneSimulator/Debug/actool/bundle/[email protected]' to '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/[email protected]'
        
Copying file from '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/obj/iPhoneSimulator/Debug/actool/bundle/[email protected]' to '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/[email protected]'
        
Copying file from '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/obj/iPhoneSimulator/Debug/actool/bundle/AppIcon76x76@2x~ipad.png' to '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/AppIcon76x76@2x~ipad.png'
        
Copying file from '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/obj/iPhoneSimulator/Debug/actool/bundle/AppIcon76x76~ipad.png' to '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/AppIcon76x76~ipad.png'
        
Copying file from '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/obj/iPhoneSimulator/Debug/actool/bundle/AppIcon83.5x83.5@2x~ipad.png' to '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/AppIcon83.5x83.5@2x~ipad.png'
        
Copying file from '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/obj/iPhoneSimulator/Debug/actool/bundle/Assets.car' to '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/Assets.car'
        
Creating directory '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/GoogleSignIn.bundle'
        
Copying file from '/Users/hiteshmalhotra/Library/Caches/XamarinBuildDownload/GSgnI-5.0.2/Resources/GoogleSignIn.bundle/Roboto-Bold.ttf' to '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/GoogleSignIn.bundle/Roboto-Bold.ttf'
        
Copying file from '/Users/hiteshmalhotra/Library/Caches/XamarinBuildDownload/GSgnI-5.0.2/Resources/GoogleSignIn.bundle/google.png' to '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/GoogleSignIn.bundle/google.png'
        
Copying file from '/Users/hiteshmalhotra/Library/Caches/XamarinBuildDownload/GSgnI-5.0.2/Resources/GoogleSignIn.bundle/[email protected]' to '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/GoogleSignIn.bundle/[email protected]'
        
Copying file from '/Users/hiteshmalhotra/Library/Caches/XamarinBuildDownload/GSgnI-5.0.2/Resources/GoogleSignIn.bundle/[email protected]' to '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/GoogleSignIn.bundle/[email protected]'
        
Copying file from '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/obj/iPhoneSimulator/Debug/optimized/GoogleSignIn.bundle/Info.plist' to '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/GoogleSignIn.bundle/Info.plist'
        
Creating directory '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/GoogleSignIn.bundle/ar.lproj'
        
Copying file from '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/obj/iPhoneSimulator/Debug/optimized/GoogleSignIn.bundle/ar.lproj/GoogleSignIn.strings' to '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/GoogleSignIn.bundle/ar.lproj/GoogleSignIn.strings'
        
Creating directory '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/GoogleSignIn.bundle/ca.lproj'
        
Copying file from '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/obj/iPhoneSimulator/Debug/optimized/GoogleSignIn.bundle/ca.lproj/GoogleSignIn.strings' to '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/GoogleSignIn.bundle/ca.lproj/GoogleSignIn.strings'
        
Creating directory '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/GoogleSignIn.bundle/cs.lproj'
        
Copying file from '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/obj/iPhoneSimulator/Debug/optimized/GoogleSignIn.bundle/cs.lproj/GoogleSignIn.strings' to '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/GoogleSignIn.bundle/cs.lproj/GoogleSignIn.strings'
        
Creating directory '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/GoogleSignIn.bundle/da.lproj'
        
Copying file from '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/obj/iPhoneSimulator/Debug/optimized/GoogleSignIn.bundle/da.lproj/GoogleSignIn.strings' to '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/GoogleSignIn.bundle/da.lproj/GoogleSignIn.strings'
        
Creating directory '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/GoogleSignIn.bundle/de.lproj'
        
Copying file from '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/obj/iPhoneSimulator/Debug/optimized/GoogleSignIn.bundle/de.lproj/GoogleSignIn.strings' to '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/GoogleSignIn.bundle/de.lproj/GoogleSignIn.strings'
        
Creating directory '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/GoogleSignIn.bundle/el.lproj'
        
Copying file from '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/obj/iPhoneSimulator/Debug/optimized/GoogleSignIn.bundle/el.lproj/GoogleSignIn.strings' to '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/GoogleSignIn.bundle/el.lproj/GoogleSignIn.strings'
        
Creating directory '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/GoogleSignIn.bundle/en.lproj'
        
Copying file from '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/obj/iPhoneSimulator/Debug/optimized/GoogleSignIn.bundle/en.lproj/GoogleSignIn.strings' to '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/GoogleSignIn.bundle/en.lproj/GoogleSignIn.strings'
        
Creating directory '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/GoogleSignIn.bundle/en_GB.lproj'
        
Copying file from '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/obj/iPhoneSimulator/Debug/optimized/GoogleSignIn.bundle/en_GB.lproj/GoogleSignIn.strings' to '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/GoogleSignIn.bundle/en_GB.lproj/GoogleSignIn.strings'
        
Creating directory '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/GoogleSignIn.bundle/es.lproj'
        
Copying file from '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/obj/iPhoneSimulator/Debug/optimized/GoogleSignIn.bundle/es.lproj/GoogleSignIn.strings' to '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/GoogleSignIn.bundle/es.lproj/GoogleSignIn.strings'
        
Creating directory '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/GoogleSignIn.bundle/es_MX.lproj'
        
Copying file from '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/obj/iPhoneSimulator/Debug/optimized/GoogleSignIn.bundle/es_MX.lproj/GoogleSignIn.strings' to '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/GoogleSignIn.bundle/es_MX.lproj/GoogleSignIn.strings'
        
Creating directory '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/GoogleSignIn.bundle/fi.lproj'
        
Copying file from '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/obj/iPhoneSimulator/Debug/optimized/GoogleSignIn.bundle/fi.lproj/GoogleSignIn.strings' to '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/GoogleSignIn.bundle/fi.lproj/GoogleSignIn.strings'
        
Creating directory '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/GoogleSignIn.bundle/fr_CA.lproj'
        
Copying file from '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/obj/iPhoneSimulator/Debug/optimized/GoogleSignIn.bundle/fr_CA.lproj/GoogleSignIn.strings' to '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/GoogleSignIn.bundle/fr_CA.lproj/GoogleSignIn.strings'
        
Creating directory '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/GoogleSignIn.bundle/fr.lproj'
        
Copying file from '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/obj/iPhoneSimulator/Debug/optimized/GoogleSignIn.bundle/fr.lproj/GoogleSignIn.strings' to '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/GoogleSignIn.bundle/fr.lproj/GoogleSignIn.strings'
        
Creating directory '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/GoogleSignIn.bundle/he.lproj'
        
Copying file from '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/obj/iPhoneSimulator/Debug/optimized/GoogleSignIn.bundle/he.lproj/GoogleSignIn.strings' to '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/GoogleSignIn.bundle/he.lproj/GoogleSignIn.strings'
        
Creating directory '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/GoogleSignIn.bundle/hi.lproj'
        
Copying file from '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/obj/iPhoneSimulator/Debug/optimized/GoogleSignIn.bundle/hi.lproj/GoogleSignIn.strings' to '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/GoogleSignIn.bundle/hi.lproj/GoogleSignIn.strings'
        
Creating directory '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/GoogleSignIn.bundle/hr.lproj'
        
Copying file from '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/obj/iPhoneSimulator/Debug/optimized/GoogleSignIn.bundle/hr.lproj/GoogleSignIn.strings' to '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/GoogleSignIn.bundle/hr.lproj/GoogleSignIn.strings'
        
Creating directory '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/GoogleSignIn.bundle/hu.lproj'
        
Copying file from '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/obj/iPhoneSimulator/Debug/optimized/GoogleSignIn.bundle/hu.lproj/GoogleSignIn.strings' to '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/GoogleSignIn.bundle/hu.lproj/GoogleSignIn.strings'
        
Creating directory '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/GoogleSignIn.bundle/id.lproj'
        
Copying file from '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/obj/iPhoneSimulator/Debug/optimized/GoogleSignIn.bundle/id.lproj/GoogleSignIn.strings' to '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/GoogleSignIn.bundle/id.lproj/GoogleSignIn.strings'
        
Creating directory '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/GoogleSignIn.bundle/it.lproj'
        
Copying file from '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/obj/iPhoneSimulator/Debug/optimized/GoogleSignIn.bundle/it.lproj/GoogleSignIn.strings' to '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/GoogleSignIn.bundle/it.lproj/GoogleSignIn.strings'
        
Creating directory '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/GoogleSignIn.bundle/ja.lproj'
        
Copying file from '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/obj/iPhoneSimulator/Debug/optimized/GoogleSignIn.bundle/ja.lproj/GoogleSignIn.strings' to '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/GoogleSignIn.bundle/ja.lproj/GoogleSignIn.strings'
        
Creating directory '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/GoogleSignIn.bundle/ko.lproj'
        
Copying file from '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/obj/iPhoneSimulator/Debug/optimized/GoogleSignIn.bundle/ko.lproj/GoogleSignIn.strings' to '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/GoogleSignIn.bundle/ko.lproj/GoogleSignIn.strings'
        
Creating directory '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/GoogleSignIn.bundle/ms.lproj'
        
Copying file from '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/obj/iPhoneSimulator/Debug/optimized/GoogleSignIn.bundle/ms.lproj/GoogleSignIn.strings' to '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/GoogleSignIn.bundle/ms.lproj/GoogleSignIn.strings'
        
Creating directory '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/GoogleSignIn.bundle/nb.lproj'
        
Copying file from '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/obj/iPhoneSimulator/Debug/optimized/GoogleSignIn.bundle/nb.lproj/GoogleSignIn.strings' to '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/GoogleSignIn.bundle/nb.lproj/GoogleSignIn.strings'
        
Creating directory '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/GoogleSignIn.bundle/nl.lproj'
        
Copying file from '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/obj/iPhoneSimulator/Debug/optimized/GoogleSignIn.bundle/nl.lproj/GoogleSignIn.strings' to '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/GoogleSignIn.bundle/nl.lproj/GoogleSignIn.strings'
        
Creating directory '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/GoogleSignIn.bundle/pl.lproj'
        
Copying file from '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/obj/iPhoneSimulator/Debug/optimized/GoogleSignIn.bundle/pl.lproj/GoogleSignIn.strings' to '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/GoogleSignIn.bundle/pl.lproj/GoogleSignIn.strings'
        
Creating directory '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/GoogleSignIn.bundle/pt.lproj'
        
Copying file from '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/obj/iPhoneSimulator/Debug/optimized/GoogleSignIn.bundle/pt.lproj/GoogleSignIn.strings' to '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/GoogleSignIn.bundle/pt.lproj/GoogleSignIn.strings'
        
Creating directory '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/GoogleSignIn.bundle/pt_BR.lproj'
        
Copying file from '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/obj/iPhoneSimulator/Debug/optimized/GoogleSignIn.bundle/pt_BR.lproj/GoogleSignIn.strings' to '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/GoogleSignIn.bundle/pt_BR.lproj/GoogleSignIn.strings'
        
Creating directory '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/GoogleSignIn.bundle/pt_PT.lproj'
        
Copying file from '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/obj/iPhoneSimulator/Debug/optimized/GoogleSignIn.bundle/pt_PT.lproj/GoogleSignIn.strings' to '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/GoogleSignIn.bundle/pt_PT.lproj/GoogleSignIn.strings'
        
Creating directory '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/GoogleSignIn.bundle/ro.lproj'
        
Copying file from '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/obj/iPhoneSimulator/Debug/optimized/GoogleSignIn.bundle/ro.lproj/GoogleSignIn.strings' to '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/GoogleSignIn.bundle/ro.lproj/GoogleSignIn.strings'
        
Creating directory '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/GoogleSignIn.bundle/ru.lproj'
        
Copying file from '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/obj/iPhoneSimulator/Debug/optimized/GoogleSignIn.bundle/ru.lproj/GoogleSignIn.strings' to '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/GoogleSignIn.bundle/ru.lproj/GoogleSignIn.strings'
        
Creating directory '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/GoogleSignIn.bundle/sk.lproj'
        
Copying file from '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/obj/iPhoneSimulator/Debug/optimized/GoogleSignIn.bundle/sk.lproj/GoogleSignIn.strings' to '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/GoogleSignIn.bundle/sk.lproj/GoogleSignIn.strings'
        
Creating directory '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/GoogleSignIn.bundle/sv.lproj'
        
Copying file from '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/obj/iPhoneSimulator/Debug/optimized/GoogleSignIn.bundle/sv.lproj/GoogleSignIn.strings' to '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/GoogleSignIn.bundle/sv.lproj/GoogleSignIn.strings'
        
Creating directory '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/GoogleSignIn.bundle/th.lproj'
        
Copying file from '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/obj/iPhoneSimulator/Debug/optimized/GoogleSignIn.bundle/th.lproj/GoogleSignIn.strings' to '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/GoogleSignIn.bundle/th.lproj/GoogleSignIn.strings'
        
Creating directory '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/GoogleSignIn.bundle/tr.lproj'
        
Copying file from '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/obj/iPhoneSimulator/Debug/optimized/GoogleSignIn.bundle/tr.lproj/GoogleSignIn.strings' to '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/GoogleSignIn.bundle/tr.lproj/GoogleSignIn.strings'
        
Creating directory '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/GoogleSignIn.bundle/uk.lproj'
        
Copying file from '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/obj/iPhoneSimulator/Debug/optimized/GoogleSignIn.bundle/uk.lproj/GoogleSignIn.strings' to '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/GoogleSignIn.bundle/uk.lproj/GoogleSignIn.strings'
        
Creating directory '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/GoogleSignIn.bundle/vi.lproj'
        
Copying file from '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/obj/iPhoneSimulator/Debug/optimized/GoogleSignIn.bundle/vi.lproj/GoogleSignIn.strings' to '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/GoogleSignIn.bundle/vi.lproj/GoogleSignIn.strings'
        
Creating directory '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/GoogleSignIn.bundle/zh_CN.lproj'
        
Copying file from '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/obj/iPhoneSimulator/Debug/optimized/GoogleSignIn.bundle/zh_CN.lproj/GoogleSignIn.strings' to '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/GoogleSignIn.bundle/zh_CN.lproj/GoogleSignIn.strings'
        
Creating directory '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/GoogleSignIn.bundle/zh_TW.lproj'
        
Copying file from '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/obj/iPhoneSimulator/Debug/optimized/GoogleSignIn.bundle/zh_TW.lproj/GoogleSignIn.strings' to '/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/GoogleSignIn.bundle/zh_TW.lproj/GoogleSignIn.strings'

Target _DetectDebugNetworkConfiguration:
DebugIPAddresses: 127.0.0.1
Target _CompileAppManifest:
Directory "bin/iPhoneSimulator/Debug/Diksha.iOS.app.dSYM" doesn't exist. Skipping.
Target _ParseExtraMtouchArgs:
NoSymbolStrip Output: False
NoDSymUtil Output: false
Target _CompileToNative:
/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/bin/mtouch "@/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/obj/iPhoneSimulator/Debug/response-file.rsp" "--gcc_flags=-ObjC -lsqlite3 -ObjC -lc++ -lsqlite3 -lz -ObjC -lc++ -lsqlite3 -lz"
Xamarin.iOS 14.8.0.3 (xcode12.3: c51fabee8 using framework: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.3.sdk
Process exited with code 1, command:
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -F /Users/hiteshmalhotra/Library/Caches/XamarinBuildDownload/GSgnI-5.0.2/Frameworks -framework GoogleSignIn -framework CoreGraphics -framework CoreText -framework Foundation -framework LocalAuthentication -framework SystemConfiguration -framework UIKit -F /Users/hiteshmalhotra/Library/Caches/XamarinBuildDownload/GAppM-6.9.0/Frameworks -framework GoogleAppMeasurement -framework Security -framework StoreKit -F /Users/hiteshmalhotra/Library/Caches/XamarinBuildDownload/FAnlytcs-6.9.0/Frameworks -framework FirebaseAnalytics -framework AddressBook -framework AdSupport -F /Users/hiteshmalhotra/Library/Caches/XamarinBuildDownload/FAnlytcs-6.9.0/Frameworks -framework FIRAnalyticsConnector -framework SafariServices -framework QuickLook -framework PushKit -framework PhotosUI -framework NotificationCenter -framework ExternalAccessory -framework NewsstandKit -framework CoreTelephony -framework CoreMIDI -framework Accounts -framework iAd -framework VideoToolbox -framework Twitter -framework Social -framework Photos -framework PassKit -framework OpenGLES -framework NetworkExtension -framework MultipeerConnectivity -framework MobileCoreServices -framework MessageUI -framework MediaToolbox -framework MediaPlayer -framework MediaAccessibility -framework MapKit -framework JavaScriptCore -framework ImageIO -framework HomeKit -framework HealthKit -framework GameController -framework GLKit -framework EventKitUI -framework EventKit -framework CoreMotion -framework CoreLocation -framework CoreImage -framework QuartzCore -framework CloudKit -framework AudioToolbox -framework AssetsLibrary -framework AddressBookUI -framework SpriteKit -framework SceneKit -framework GameKit -framework WebKit -framework CoreVideo -framework CoreMedia -framework CoreData -framework CoreBluetooth -framework AVKit -framework AVFoundation -framework Accelerate -framework CFNetwork -weak_framework VisionKit -weak_framework UserNotificationsUI -weak_framework UniformTypeIdentifiers -weak_framework Speech -weak_framework SoundAnalysis -weak_framework ScreenTime -weak_framework QuickLookThumbnailing -weak_framework PencilKit -weak_framework Messages -weak_framework LinkPresentation -weak_framework IntentsUI -weak_framework IdentityLookupUI -weak_framework IdentityLookup -weak_framework HealthKitUI -weak_framework FileProviderUI -weak_framework DeviceCheck -weak_framework CoreHaptics -weak_framework CoreAudioKit -weak_framework ContactsUI -weak_framework BackgroundTasks -weak_framework AutomaticAssessmentConfiguration -weak_framework AppTrackingTransparency -weak_framework AppClip -weak_framework AdServices -weak_framework Accessibility -weak_framework WatchConnectivity -weak_framework Vision -weak_framework VideoSubscriberAccount -weak_framework UserNotifications -weak_framework SensorKit -weak_framework ReplayKit -weak_framework PDFKit -weak_framework NearbyInteraction -weak_framework ModelIO -weak_framework MetricKit -weak_framework Intents -weak_framework GameplayKit -weak_framework FileProvider -weak_framework CoreSpotlight -weak_framework Contacts -weak_framework ClassKit -weak_framework CarPlay -weak_framework CallKit -weak_framework BusinessChat -weak_framework ARKit -weak_framework Network -weak_framework NaturalLanguage -weak_framework CoreML -weak_framework AuthenticationServices -weak_framework MetalKit -weak_framework MetalPerformanceShaders -weak_framework Metal -weak_framework CoreFoundation -weak_framework GSS -Xlinker -rpath -Xlinker @executable_path/Frameworks /Library/Frameworks/Xamarin.iOS.framework/Versions/14.8.0.3/SDKs/MonoTouch.iphonesimulator.sdk/lib/Xamarin.iOS.registrar.a /Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/obj/iPhoneSimulator/Debug/mtouch-cache/x86_64/main.o /Library/Frameworks/Xamarin.iOS.framework/Versions/14.8.0.3/SDKs/MonoTouch.iphonesimulator.sdk/lib/libmonosgen-2.0.a /Library/Frameworks/Xamarin.iOS.framework/Versions/14.8.0.3/SDKs/MonoTouch.iphonesimulator.sdk/lib/libxamarin-debug.a /Library/Frameworks/Xamarin.iOS.framework/Versions/14.8.0.3/SDKs/MonoTouch.iphonesimulator.sdk/lib/libmono-native-compat.a -force_load /Library/Frameworks/Xamarin.iOS.framework/Versions/14.8.0.3/SDKs/MonoTouch.iphonesimulator.sdk/lib/libapp.a -weak-lcompression -Wl,-pie -arch x86_64 -gdwarf-2 -std=c++14 -I/Library/Frameworks/Xamarin.iOS.framework/Versions/14.8.0.3/SDKs/MonoTouch.iphonesimulator.sdk/include -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.3.sdk -Qunused-arguments -fobjc-legacy-dispatch -fobjc-abi-version=2 -mios-simulator-version-min=8.0 -lz -liconv -lz -o /Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.iOS/bin/iPhoneSimulator/Debug/Diksha.iOS.app/Diksha.iOS -ObjC -lsqlite3 -ObjC -lc++ -lsqlite3 -lz -ObjC -lc++ -lsqlite3 -lz -u _SystemNative_ConvertErrorPlatformToPal -u _SystemNative_ConvertErrorPalToPlatform -u _SystemNative_StrErrorR -u _SystemNative_GetNonCryptographicallySecureRandomBytes -u _SystemNative_OpenDir -u _SystemNative_GetReadDirRBufferSize -u _SystemNative_ReadDirR -u _SystemNative_CloseDir -u _SystemNative_ReadLink -u _SystemNative_FStat2 -u _SystemNative_Stat2 -u _SystemNative_LStat2 -u _SystemNative_Symlink -u _SystemNative_ChMod -u _SystemNative_CopyFile -u _SystemNative_GetEGid -u _SystemNative_GetEUid -u _SystemNative_LChflags -u _SystemNative_LChflagsCanSetHiddenFlag -u _SystemNative_Link -u _SystemNative_MkDir -u _SystemNative_Rename -u _SystemNative_RmDir -u _SystemNative_UTime -u _SystemNative_UTimes -u _SystemNative_Unlink -u _xamarin_timezone_get_local_name -u _xamarin_timezone_get_names -u _xamarin_timezone_get_data -u _xamarin_GetFolderPath -u _xamarin_log -u _xamarin_get_locale_country_code -u _xamarin_find_protocol_wrapper_type -u _xamarin_release_block_on_main_thread -u _xamarin_start_wwan -u _xamarin_get_block_descriptor -u _xamarin_simd__NMatrix4_objc_msgSend -u _xamarin_simd__NMatrix4_objc_msgSendSuper -u _xamarin_simd__NMatrix4_objc_msgSend_stret -u _xamarin_simd__NMatrix4_objc_msgSendSuper_stret -u _xamarin_simd__IntPtr_objc_msgSend_NMatrix4 -u _xamarin_simd__IntPtr_objc_msgSendSuper_NMatrix4 -u _xamarin_simd__IntPtr_objc_msgSend_IntPtr_NMatrix4 -u _xamarin_simd__IntPtr_objc_msgSendSuper_IntPtr_NMatrix4 -u _xamarin_simd__NVector3_objc_msgSend -u _xamarin_simd__NVector3_objc_msgSendSuper -u _xamarin_simd__NVector3_objc_msgSend_stret -u _xamarin_simd__NVector3_objc_msgSendSuper_stret -u _xamarin_simd__NMatrix3_objc_msgSend -u _xamarin_simd__NMatrix3_objc_msgSendSuper -u _xamarin_simd__NMatrix3_objc_msgSend_stret -u _xamarin_simd__NMatrix3_objc_msgSendSuper_stret -u _xamarin_simd__CGPoint_objc_msgSend_NVector3_int_CGSize -u _xamarin_simd__CGPoint_objc_msgSendSuper_NVector3_int_CGSize -u _xamarin_simd__CGPoint_objc_msgSend_stret_NVector3_int_CGSize -u _xamarin_simd__CGPoint_objc_msgSendSuper_stret_NVector3_int_CGSize -u _xamarin_simd__CGPoint_objc_msgSend_NVector3_Int64_CGSize -u _xamarin_simd__CGPoint_objc_msgSendSuper_NVector3_Int64_CGSize -u _xamarin_simd__CGPoint_objc_msgSend_stret_NVector3_Int64_CGSize -u _xamarin_simd__CGPoint_objc_msgSendSuper_stret_NVector3_Int64_CGSize -u _xamarin_simd__NVector3_objc_msgSend_CGPoint_NMatrix4_int_CGSize -u _xamarin_simd__NVector3_objc_msgSendSuper_CGPoint_NMatrix4_int_CGSize -u _xamarin_simd__NVector3_objc_msgSend_stret_CGPoint_NMatrix4_int_CGSize -u _xamarin_simd__NVector3_objc_msgSendSuper_stret_CGPoint_NMatrix4_int_CGSize -u _xamarin_simd__NVector3_objc_msgSend_CGPoint_NMatrix4_Int64_CGSize -u _xamarin_simd__NVector3_objc_msgSendSuper_CGPoint_NMatrix4_Int64_CGSize -u _xamarin_simd__NVector3_objc_msgSend_stret_CGPoint_NMatrix4_Int64_CGSize -u _xamarin_simd__NVector3_objc_msgSendSuper_stret_CGPoint_NMatrix4_Int64_CGSize -u _xamarin_simd__NMatrix4_objc_msgSend_int_CGSize_nfloat_nfloat -u _xamarin_simd__NMatrix4_objc_msgSendSuper_int_CGSize_nfloat_nfloat -u _xamarin_simd__NMatrix4_objc_msgSend_stret_int_CGSize_nfloat_nfloat -u _xamarin_simd__NMatrix4_objc_msgSendSuper_stret_int_CGSize_nfloat_nfloat -u _xamarin_simd__NMatrix4_objc_msgSend_Int64_CGSize_nfloat_nfloat -u _xamarin_simd__NMatrix4_objc_msgSendSuper_Int64_CGSize_nfloat_nfloat -u _xamarin_simd__NMatrix4_objc_msgSend_stret_Int64_CGSize_nfloat_nfloat -u _xamarin_simd__NMatrix4_objc_msgSendSuper_stret_Int64_CGSize_nfloat_nfloat -u _xamarin_simd__NMatrix4_objc_msgSend_int -u _xamarin_simd__NMatrix4_objc_msgSendSuper_int -u _xamarin_simd__NMatrix4_objc_msgSend_stret_int -u _xamarin_simd__NMatrix4_objc_msgSendSuper_stret_int -u _xamarin_simd__NMatrix4_objc_msgSend_Int64 -u _xamarin_simd__NMatrix4_objc_msgSendSuper_Int64 -u _xamarin_simd__NMatrix4_objc_msgSend_stret_Int64 -u _xamarin_simd__NMatrix4_objc_msgSendSuper_stret_Int64 -u _xamarin_simd__IntPtr_objc_msgSend_NMatrix4_NVector3 -u _xamarin_simd__IntPtr_objc_msgSendSuper_NMatrix4_NVector3 -u _xamarin_simd__IntPtr_objc_msgSend_IntPtr_NMatrix4_NVector3 -u _xamarin_simd__IntPtr_objc_msgSendSuper_IntPtr_NMatrix4_NVector3 -u _xamarin_simd__IntPtr_objc_msgSend_NVector3_NVector3_int_int -u _xamarin_simd__IntPtr_objc_msgSendSuper_NVector3_NVector3_int_int -u _xamarin_simd__IntPtr_objc_msgSend_NVector3_NVector3_Int64_Int64 -u _xamarin_simd__IntPtr_objc_msgSendSuper_NVector3_NVector3_Int64_Int64 -u _xamarin_simd__NVector3_objc_msgSend_CGPoint_NMatrix4 -u _xamarin_simd__NVector3_objc_msgSendSuper_CGPoint_NMatrix4 -u _xamarin_simd__NVector3_objc_msgSend_stret_CGPoint_NMatrix4 -u _xamarin_simd__NVector3_objc_msgSendSuper_stret_CGPoint_NMatrix4 -u _xamarin_simd__void_objc_msgSend_NMatrix4 -u _xamarin_simd__void_objc_msgSendSuper_NMatrix4 -u _xamarin_simd__void_objc_msgSend_NMatrix4_NVector3_NVector3_IntPtr -u _xamarin_simd__void_objc_msgSendSuper_NMatrix4_NVector3_NVector3_IntPtr -u _xamarin_simd__void_objc_msgSend_NVector3_IntPtr -u _xamarin_simd__void_objc_msgSendSuper_NVector3_IntPtr -u _xamarin_simd__Vector2_objc_msgSend_IntPtr -u _xamarin_simd__Vector2_objc_msgSendSuper_IntPtr -u _xamarin_simd__Vector2_objc_msgSend_stret_IntPtr -u _xamarin_simd__Vector2_objc_msgSendSuper_stret_IntPtr -u _xamarin_simd__NMatrix4_objc_msgSend_IntPtr -u _xamarin_simd__NMatrix4_objc_msgSendSuper_IntPtr -u _xamarin_simd__NMatrix4_objc_msgSend_stret_IntPtr -u _xamarin_simd__NMatrix4_objc_msgSendSuper_stret_IntPtr -u _xamarin_simd__NMatrix4x3_objc_msgSend -u _xamarin_simd__NMatrix4x3_objc_msgSendSuper -u _xamarin_simd__NMatrix4x3_objc_msgSend_stret -u _xamarin_simd__NMatrix4x3_objc_msgSendSuper_stret -u _xamarin_IntPtr_objc_msgSend_IntPtr -u _xamarin_IntPtr_objc_msgSendSuper_IntPtr -u _xamarin_IntPtr_objc_msgSend_IntPtr_IntPtr_UInt32 -u _xamarin_IntPtr_objc_msgSendSuper_IntPtr_IntPtr_UInt32 -u _xamarin_IntPtr_objc_msgSend_IntPtr_IntPtr_UInt64 -u _xamarin_IntPtr_objc_msgSendSuper_IntPtr_IntPtr_UInt64 -u _xamarin_IntPtr_objc_msgSend_IntPtr_nint_nint_nint_UInt32 -u _xamarin_IntPtr_objc_msgSendSuper_IntPtr_nint_nint_nint_UInt32 -u _xamarin_IntPtr_objc_msgSend_IntPtr_nint_nint_nint_UInt64 -u _xamarin_IntPtr_objc_msgSendSuper_IntPtr_nint_nint_nint_UInt64 -u _xamarin_IntPtr_objc_msgSend_IntPtr_UInt32_nint_UInt32 -u _xamarin_IntPtr_objc_msgSendSuper_IntPtr_UInt32_nint_UInt32 -u _xamarin_IntPtr_objc_msgSend_IntPtr_UInt64_nint_UInt64 -u _xamarin_IntPtr_objc_msgSendSuper_IntPtr_UInt64_nint_UInt64 -u _xamarin_simd__Vector2_objc_msgSend -u _xamarin_simd__Vector2_objc_msgSendSuper -u _xamarin_simd__Vector2_objc_msgSend_stret -u _xamarin_simd__Vector2_objc_msgSendSuper_stret -u _xamarin_simd__void_objc_msgSend_Vector2 -u _xamarin_simd__void_objc_msgSendSuper_Vector2 -u _xamarin_simd__Vector3_objc_msgSend -u _xamarin_simd__Vector3_objc_msgSendSuper -u _xamarin_simd__Vector3_objc_msgSend_stret -u _xamarin_simd__Vector3_objc_msgSendSuper_stret -u _xamarin_simd__void_objc_msgSend_Vector3 -u _xamarin_simd__void_objc_msgSendSuper_Vector3 -u _xamarin_simd__Matrix3_objc_msgSend -u _xamarin_simd__Matrix3_objc_msgSendSuper -u _xamarin_simd__Matrix3_objc_msgSend_stret -u _xamarin_simd__Matrix3_objc_msgSendSuper_stret -u _xamarin_simd__void_objc_msgSend_Matrix3 -u _xamarin_simd__void_objc_msgSendSuper_Matrix3 -u _xamarin_simd__void_objc_msgSend_NMatrix3 -u _xamarin_simd__void_objc_msgSendSuper_NMatrix3 -u _xamarin_simd__IntPtr_objc_msgSend_Vector2 -u _xamarin_simd__IntPtr_objc_msgSendSuper_Vector2 -u _xamarin_simd__IntPtr_objc_msgSend_Vector3 -u _xamarin_simd__IntPtr_objc_msgSendSuper_Vector3 -u _xamarin_simd__Vector2i_objc_msgSend -u _xamarin_simd__Vector2i_objc_msgSendSuper -u _xamarin_simd__Vector2i_objc_msgSend_stret -u _xamarin_simd__Vector2i_objc_msgSendSuper_stret -u _xamarin_simd__IntPtr_objc_msgSend_Vector2i_int_int_bool -u _xamarin_simd__IntPtr_objc_msgSendSuper_Vector2i_int_int_bool -u _xamarin_simd__IntPtr_objc_msgSend_Vector2i_int_int_bool_IntPtr -u _xamarin_simd__IntPtr_objc_msgSendSuper_Vector2i_int_int_bool_IntPtr -u _xamarin_simd__IntPtr_objc_msgSend_Vector2i -u _xamarin_simd__IntPtr_objc_msgSendSuper_Vector2i -u _xamarin_simd__IntPtr_objc_msgSend_float_Vector2_Vector2_IntPtr -u _xamarin_simd__IntPtr_objc_msgSendSuper_float_Vector2_Vector2_IntPtr -u _xamarin_simd__IntPtr_objc_msgSend_float_Vector2_Vector2 -u _xamarin_simd__IntPtr_objc_msgSendSuper_float_Vector2_Vector2 -u _xamarin_simd__GKTriangle_objc_msgSend_nuint -u _xamarin_simd__GKTriangle_objc_msgSendSuper_nuint -u _xamarin_simd__GKTriangle_objc_msgSend_stret_nuint -u _xamarin_simd__GKTriangle_objc_msgSendSuper_stret_nuint -u _xamarin_simd__float_objc_msgSend_Vector2 -u _xamarin_simd__float_objc_msgSendSuper_Vector2 -u _xamarin_simd__void_objc_msgSend_Vector3d -u _xamarin_simd__void_objc_msgSendSuper_Vector3d -u _xamarin_simd__Vector2d_objc_msgSend -u _xamarin_simd__Vector2d_objc_msgSendSuper -u _xamarin_simd__Vector2d_objc_msgSend_stret -u _xamarin_simd__Vector2d_objc_msgSendSuper_stret -u _xamarin_simd__IntPtr_objc_msgSend_IntPtr_Vector2d_Vector2d_Vector2i_bool -u _xamarin_simd__IntPtr_objc_msgSendSuper_IntPtr_Vector2d_Vector2d_Vector2i_bool -u _xamarin_simd__float_objc_msgSend_Vector2i -u _xamarin_simd__float_objc_msgSendSuper_Vector2i -u _xamarin_simd__void_objc_msgSend_float_Vector2i -u _xamarin_simd__void_objc_msgSendSuper_float_Vector2i -u _xamarin_simd__GKBox_objc_msgSend -u _xamarin_simd__GKBox_objc_msgSendSuper -u _xamarin_simd__GKBox_objc_msgSend_stret -u _xamarin_simd__GKBox_objc_msgSendSuper_stret -u _xamarin_simd__IntPtr_objc_msgSend_GKBox_float -u _xamarin_simd__IntPtr_objc_msgSendSuper_GKBox_float -u _xamarin_simd__IntPtr_objc_msgSend_IntPtr_Vector3 -u _xamarin_simd__IntPtr_objc_msgSendSuper_IntPtr_Vector3 -u _xamarin_simd__IntPtr_objc_msgSend_IntPtr_GKBox -u _xamarin_simd__IntPtr_objc_msgSendSuper_IntPtr_GKBox -u _xamarin_simd__IntPtr_objc_msgSend_GKBox -u _xamarin_simd__IntPtr_objc_msgSendSuper_GKBox -u _xamarin_simd__Vector2_objc_msgSend_nuint -u _xamarin_simd__Vector2_objc_msgSendSuper_nuint -u _xamarin_simd__Vector2_objc_msgSend_stret_nuint -u _xamarin_simd__Vector2_objc_msgSendSuper_stret_nuint -u _xamarin_simd__Vector3_objc_msgSend_nuint -u _xamarin_simd__Vector3_objc_msgSendSuper_nuint -u _xamarin_simd__Vector3_objc_msgSend_stret_nuint -u _xamarin_simd__Vector3_objc_msgSendSuper_stret_nuint -u _xamarin_simd__IntPtr_objc_msgSend_GKQuad_float -u _xamarin_simd__IntPtr_objc_msgSendSuper_GKQuad_float -u _xamarin_simd__IntPtr_objc_msgSend_IntPtr_Vector2 -u _xamarin_simd__IntPtr_objc_msgSendSuper_IntPtr_Vector2 -u _xamarin_simd__IntPtr_objc_msgSend_IntPtr_GKQuad -u _xamarin_simd__IntPtr_objc_msgSendSuper_IntPtr_GKQuad -u _xamarin_simd__IntPtr_objc_msgSend_GKQuad -u _xamarin_simd__IntPtr_objc_msgSendSuper_GKQuad -u _xamarin_simd__IntPtr_objc_msgSend_Vector2_Vector2_float -u _xamarin_simd__IntPtr_objc_msgSendSuper_Vector2_Vector2_float -u _xamarin_simd__IntPtr_objc_msgSend_IntPtr_Vector2_Vector2 -u _xamarin_simd__IntPtr_objc_msgSendSuper_IntPtr_Vector2_Vector2 -u _xamarin_simd__IntPtr_objc_msgSend_Vector2_Vector2 -u _xamarin_simd__IntPtr_objc_msgSendSuper_Vector2_Vector2 -u _xamarin_simd__GKQuad_objc_msgSend -u _xamarin_simd__GKQuad_objc_msgSendSuper -u _xamarin_simd__GKQuad_objc_msgSend_stret -u _xamarin_simd__GKQuad_objc_msgSendSuper_stret -u _xamarin_simd__void_objc_msgSend_IntPtr_Vector2_Vector2_int -u _xamarin_simd__void_objc_msgSendSuper_IntPtr_Vector2_Vector2_int -u _xamarin_simd__void_objc_msgSend_IntPtr_Vector2_Vector2_Int64 -u _xamarin_simd__void_objc_msgSendSuper_IntPtr_Vector2_Vector2_Int64 -u _xamarin_simd__void_objc_msgSend_IntPtr_Vector2_Vector2 -u _xamarin_simd__void_objc_msgSendSuper_IntPtr_Vector2_Vector2 -u _xamarin_simd__MPSAxisAlignedBoundingBox_objc_msgSend -u _xamarin_simd__MPSAxisAlignedBoundingBox_objc_msgSendSuper -u _xamarin_simd__MPSAxisAlignedBoundingBox_objc_msgSend_stret -u _xamarin_simd__MPSAxisAlignedBoundingBox_objc_msgSendSuper_stret -u _xamarin_simd__MPSImageHistogramInfo_objc_msgSend -u _xamarin_simd__MPSImageHistogramInfo_objc_msgSendSuper -u _xamarin_simd__MPSImageHistogramInfo_objc_msgSend_stret -u _xamarin_simd__MPSImageHistogramInfo_objc_msgSendSuper_stret -u _xamarin_simd__Vector4_objc_msgSend -u _xamarin_simd__Vector4_objc_msgSendSuper -u _xamarin_simd__Vector4_objc_msgSend_stret -u _xamarin_simd__Vector4_objc_msgSendSuper_stret -u _xamarin_simd__void_objc_msgSend_Vector4 -u _xamarin_simd__void_objc_msgSendSuper_Vector4 -u _xamarin_simd__IntPtr_objc_msgSend_IntPtr_ref_MPSImageHistogramInfo -u _xamarin_simd__IntPtr_objc_msgSendSuper_IntPtr_ref_MPSImageHistogramInfo -u _xamarin_simd__void_objc_msgSend_NMatrix4_Double -u _xamarin_simd__void_objc_msgSendSuper_NMatrix4_Double -u _xamarin_simd__void_objc_msgSend_NMatrix4d_Double -u _xamarin_simd__void_objc_msgSendSuper_NMatrix4d_Double -u _xamarin_simd__NMatrix4_objc_msgSend_Double -u _xamarin_simd__NMatrix4_objc_msgSendSuper_Double -u _xamarin_simd__NMatrix4_objc_msgSend_stret_Double -u _xamarin_simd__NMatrix4_objc_msgSendSuper_stret_Double -u _xamarin_simd__NMatrix4d_objc_msgSend_Double -u _xamarin_simd__NMatrix4d_objc_msgSendSuper_Double -u _xamarin_simd__NMatrix4d_objc_msgSend_stret_Double -u _xamarin_simd__NMatrix4d_objc_msgSendSuper_stret_Double -u _xamarin_simd__void_objc_msgSend_Quaternion_Double -u _xamarin_simd__void_objc_msgSendSuper_Quaternion_Double -u _xamarin_simd__void_objc_msgSend_Quaterniond_Double -u _xamarin_simd__void_objc_msgSendSuper_Quaterniond_Double -u _xamarin_simd__Quaternion_objc_msgSend_Double -u _xamarin_simd__Quaternion_objc_msgSendSuper_Double -u _xamarin_simd__Quaternion_objc_msgSend_stret_Double -u _xamarin_simd__Quaternion_objc_msgSendSuper_stret_Double -u _xamarin_simd__Quaterniond_objc_msgSend_Double -u _xamarin_simd__Quaterniond_objc_msgSendSuper_Double -u _xamarin_simd__Quaterniond_objc_msgSend_stret_Double -u _xamarin_simd__Quaterniond_objc_msgSendSuper_stret_Double -u _xamarin_simd__void_objc_msgSend_Vector2_Double -u _xamarin_simd__void_objc_msgSendSuper_Vector2_Double -u _xamarin_simd__void_objc_msgSend_Vector2d_Double -u _xamarin_simd__void_objc_msgSendSuper_Vector2d_Double -u _xamarin_simd__Vector2_objc_msgSend_Double -u _xamarin_simd__Vector2_objc_msgSendSuper_Double -u _xamarin_simd__Vector2_objc_msgSend_stret_Double -u _xamarin_simd__Vector2_objc_msgSendSuper_stret_Double -u _xamarin_simd__Vector2d_objc_msgSend_Double -u _xamarin_simd__Vector2d_objc_msgSendSuper_Double -u _xamarin_simd__Vector2d_objc_msgSend_stret_Double -u _xamarin_simd__Vector2d_objc_msgSendSuper_stret_Double -u _xamarin_simd__void_objc_msgSend_NVector3_Double -u _xamarin_simd__void_objc_msgSendSuper_NVector3_Double -u _xamarin_simd__void_objc_msgSend_NVector3d_Double -u _xamarin_simd__void_objc_msgSendSuper_NVector3d_Double -u _xamarin_simd__NVector3_objc_msgSend_Double -u _xamarin_simd__NVector3_objc_msgSendSuper_Double -u _xamarin_simd__NVector3_objc_msgSend_stret_Double -u _xamarin_simd__NVector3_objc_msgSendSuper_stret_Double -u _xamarin_simd__NVector3d_objc_msgSend_Double -u _xamarin_simd__NVector3d_objc_msgSendSuper_Double -u _xamarin_simd__NVector3d_objc_msgSend_stret_Double -u _xamarin_simd__NVector3d_objc_msgSendSuper_stret_Double -u _xamarin_simd__void_objc_msgSend_Vector4_Double -u _xamarin_simd__void_objc_msgSendSuper_Vector4_Double -u _xamarin_simd__void_objc_msgSend_Vector4d_Double -u _xamarin_simd__void_objc_msgSendSuper_Vector4d_Double -u _xamarin_simd__Vector4_objc_msgSend_Double -u _xamarin_simd__Vector4_objc_msgSendSuper_Double -u _xamarin_simd__Vector4_objc_msgSend_stret_Double -u _xamarin_simd__Vector4_objc_msgSendSuper_stret_Double -u _xamarin_simd__Vector4d_objc_msgSend_Double -u _xamarin_simd__Vector4d_objc_msgSendSuper_Double -u _xamarin_simd__Vector4d_objc_msgSend_stret_Double -u _xamarin_simd__Vector4d_objc_msgSendSuper_stret_Double -u _xamarin_simd__NMatrix4d_objc_msgSend -u _xamarin_simd__NMatrix4d_objc_msgSendSuper -u _xamarin_simd__NMatrix4d_objc_msgSend_stret -u _xamarin_simd__NMatrix4d_objc_msgSendSuper_stret -u _xamarin_simd__void_objc_msgSend_NMatrix4d -u _xamarin_simd__void_objc_msgSendSuper_NMatrix4d -u _xamarin_simd__MDLAxisAlignedBoundingBox_objc_msgSend -u _xamarin_simd__MDLAxisAlignedBoundingBox_objc_msgSendSuper -u _xamarin_simd__MDLAxisAlignedBoundingBox_objc_msgSend_stret -u _xamarin_simd__MDLAxisAlignedBoundingBox_objc_msgSendSuper_stret -u _xamarin_simd__void_objc_msgSend_NVector3 -u _xamarin_simd__void_objc_msgSendSuper_NVector3 -u _xamarin_simd__MDLAxisAlignedBoundingBox_objc_msgSend_Double -u _xamarin_simd__MDLAxisAlignedBoundingBox_objc_msgSendSuper_Double -u _xamarin_simd__MDLAxisAlignedBoundingBox_objc_msgSend_stret_Double -u _xamarin_simd__MDLAxisAlignedBoundingBox_objc_msgSendSuper_stret_Double -u _xamarin_simd__Matrix4_objc_msgSend -u _xamarin_simd__Matrix4_objc_msgSendSuper -u _xamarin_simd__Matrix4_objc_msgSend_stret -u _xamarin_simd__Matrix4_objc_msgSendSuper_stret -u _xamarin_simd__void_objc_msgSend_MDLAxisAlignedBoundingBox_bool -u _xamarin_simd__void_objc_msgSendSuper_MDLAxisAlignedBoundingBox_bool -u _xamarin_simd__void_objc_msgSend_Vector3_Vector3 -u _xamarin_simd__void_objc_msgSendSuper_Vector3_Vector3 -u _xamarin_simd__Vector3_objc_msgSend_Vector2i_Vector2i -u _xamarin_simd__Vector3_objc_msgSendSuper_Vector2i_Vector2i -u _xamarin_simd__Vector3_objc_msgSend_stret_Vector2i_Vector2i -u _xamarin_simd__Vector3_objc_msgSendSuper_stret_Vector2i_Vector2i -u _xamarin_simd__IntPtr_objc_msgSend_IntPtr_bool_IntPtr_Vector2i_nint_nuint_int_bool -u _xamarin_simd__IntPtr_objc_msgSendSuper_IntPtr_bool_IntPtr_Vector2i_nint_nuint_int_bool -u _xamarin_simd__IntPtr_objc_msgSend_IntPtr_bool_IntPtr_Vector2i_nint_nuint_Int64_bool -u _xamarin_simd__IntPtr_objc_msgSendSuper_IntPtr_bool_IntPtr_Vector2i_nint_nuint_Int64_bool -u _xamarin_simd__IntPtr_objc_msgSend_float_IntPtr_Vector2i_int_int_IntPtr_IntPtr -u _xamarin_simd__IntPtr_objc_msgSendSuper_float_IntPtr_Vector2i_int_int_IntPtr_IntPtr -u _xamarin_simd__IntPtr_objc_msgSend_float_IntPtr_Vector2i_int_Int64_IntPtr_IntPtr -u _xamarin_simd__IntPtr_objc_msgSendSuper_float_IntPtr_Vector2i_int_Int64_IntPtr_IntPtr -u _xamarin_simd__IntPtr_objc_msgSend_float_float_IntPtr_Vector2i -u _xamarin_simd__IntPtr_objc_msgSendSuper_float_float_IntPtr_Vector2i -u _xamarin_simd__IntPtr_objc_msgSend_IntPtr_IntPtr_IntPtr_Vector2i -u _xamarin_simd__IntPtr_objc_msgSendSuper_IntPtr_IntPtr_IntPtr_Vector2i -u _xamarin_simd__IntPtr_objc_msgSend_Vector3_IntPtr -u _xamarin_simd__IntPtr_objc_msgSendSuper_Vector3_IntPtr -u _xamarin_simd__void_objc_msgSend_Matrix4 -u _xamarin_simd__void_objc_msgSendSuper_Matrix4 -u _xamarin_simd__IntPtr_objc_msgSend_IntPtr_UInt32_Vector2 -u _xamarin_simd__IntPtr_objc_msgSendSuper_IntPtr_UInt32_Vector2 -u _xamarin_simd__IntPtr_objc_msgSend_IntPtr_UInt64_Vector2 -u _xamarin_simd__IntPtr_objc_msgSendSuper_IntPtr_UInt64_Vector2 -u _xamarin_simd__IntPtr_objc_msgSend_IntPtr_UInt32_Vector3 -u _xamarin_simd__IntPtr_objc_msgSendSuper_IntPtr_UInt32_Vector3 -u _xamarin_simd__IntPtr_objc_msgSend_IntPtr_UInt64_Vector3 -u _xamarin_simd__IntPtr_objc_msgSendSuper_IntPtr_UInt64_Vector3 -u _xamarin_simd__IntPtr_objc_msgSend_IntPtr_UInt32_Vector4 -u _xamarin_simd__IntPtr_objc_msgSendSuper_IntPtr_UInt32_Vector4 -u _xamarin_simd__IntPtr_objc_msgSend_IntPtr_UInt64_Vector4 -u _xamarin_simd__IntPtr_objc_msgSendSuper_IntPtr_UInt64_Vector4 -u _xamarin_simd__IntPtr_objc_msgSend_IntPtr_UInt32_Matrix4 -u _xamarin_simd__IntPtr_objc_msgSendSuper_IntPtr_UInt32_Matrix4 -u _xamarin_simd__IntPtr_objc_msgSend_IntPtr_UInt64_Matrix4 -u _xamarin_simd__IntPtr_objc_msgSendSuper_IntPtr_UInt64_Matrix4 -u _xamarin_simd__IntPtr_objc_msgSend_IntPtr_UInt32_NMatrix4 -u _xamarin_simd__IntPtr_objc_msgSendSuper_IntPtr_UInt32_NMatrix4 -u _xamarin_simd__IntPtr_objc_msgSend_IntPtr_UInt64_NMatrix4 -u _xamarin_simd__IntPtr_objc_msgSendSuper_IntPtr_UInt64_NMatrix4 -u _xamarin_simd__IntPtr_objc_msgSend_Vector3_Vector3i_bool_int_IntPtr -u _xamarin_simd__IntPtr_objc_msgSendSuper_Vector3_Vector3i_bool_int_IntPtr -u _xamarin_simd__IntPtr_objc_msgSend_Vector3_Vector3i_bool_Int64_IntPtr -u _xamarin_simd__IntPtr_objc_msgSendSuper_Vector3_Vector3i_bool_Int64_IntPtr -u _xamarin_simd__IntPtr_objc_msgSend_Vector3_Vector2i_bool_int_IntPtr -u _xamarin_simd__IntPtr_objc_msgSendSuper_Vector3_Vector2i_bool_int_IntPtr -u _xamarin_simd__IntPtr_objc_msgSend_Vector3_Vector2i_bool_Int64_IntPtr -u _xamarin_simd__IntPtr_objc_msgSendSuper_Vector3_Vector2i_bool_Int64_IntPtr -u _xamarin_simd__IntPtr_objc_msgSend_Vector3_Vector2i_bool_bool_int_IntPtr -u _xamarin_simd__IntPtr_objc_msgSendSuper_Vector3_Vector2i_bool_bool_int_IntPtr -u _xamarin_simd__IntPtr_objc_msgSend_Vector3_Vector2i_bool_bool_Int64_IntPtr -u _xamarin_simd__IntPtr_objc_msgSendSuper_Vector3_Vector2i_bool_bool_Int64_IntPtr -u _xamarin_simd__IntPtr_objc_msgSend_Vector3_Vector2i_bool_bool_bool_int_IntPtr -u _xamarin_simd__IntPtr_objc_msgSendSuper_Vector3_Vector2i_bool_bool_bool_int_IntPtr -u _xamarin_simd__IntPtr_objc_msgSend_Vector3_Vector2i_bool_bool_bool_Int64_IntPtr -u _xamarin_simd__IntPtr_objc_msgSendSuper_Vector3_Vector2i_bool_bool_bool_Int64_IntPtr -u _xamarin_simd__IntPtr_objc_msgSend_Vector3_Vector2i_int_bool_int_IntPtr -u _xamarin_simd__IntPtr_objc_msgSendSuper_Vector3_Vector2i_int_bool_int_IntPtr -u _xamarin_simd__IntPtr_objc_msgSend_Vector3_Vector2i_int_bool_Int64_IntPtr -u _xamarin_simd__IntPtr_objc_msgSendSuper_Vector3_Vector2i_int_bool_Int64_IntPtr -u _xamarin_simd__IntPtr_objc_msgSend_Vector3_Vector2i_int_IntPtr -u _xamarin_simd__IntPtr_objc_msgSendSuper_Vector3_Vector2i_int_IntPtr -u _xamarin_simd__IntPtr_objc_msgSend_Vector3_Vector2i_Int64_IntPtr -u _xamarin_simd__IntPtr_objc_msgSendSuper_Vector3_Vector2i_Int64_IntPtr -u _xamarin_simd__IntPtr_objc_msgSend_Vector3_bool_int_IntPtr -u _xamarin_simd__IntPtr_objc_msgSendSuper_Vector3_bool_int_IntPtr -u _xamarin_simd__IntPtr_objc_msgSend_Vector3_bool_Int64_IntPtr -u _xamarin_simd__IntPtr_objc_msgSendSuper_Vector3_bool_Int64_IntPtr -u _xamarin_simd__IntPtr_objc_msgSend_IntPtr_int_UInt32_IntPtr -u _xamarin_simd__IntPtr_objc_msgSendSuper_IntPtr_int_UInt32_IntPtr -u _xamarin_simd__IntPtr_objc_msgSend_Vector3_Vector3i_int_bool_IntPtr -u _xamarin_simd__IntPtr_objc_msgSendSuper_Vector3_Vector3i_int_bool_IntPtr -u _xamarin_simd__IntPtr_objc_msgSend_Vector3_Vector3i_Int64_bool_IntPtr -u _xamarin_simd__IntPtr_objc_msgSendSuper_Vector3_Vector3i_Int64_bool_IntPtr -u _xamarin_simd__IntPtr_objc_msgSend_Vector2_Vector2i_int_IntPtr -u _xamarin_simd__IntPtr_objc_msgSendSuper_Vector2_Vector2i_int_IntPtr -u _xamarin_simd__IntPtr_objc_msgSend_Vector2_Vector2i_Int64_IntPtr -u _xamarin_simd__IntPtr_objc_msgSendSuper_Vector2_Vector2i_Int64_IntPtr -u _xamarin_simd__IntPtr_objc_msgSend_Vector3_nuint_nuint_int_bool_bool_IntPtr -u _xamarin_simd__IntPtr_objc_msgSendSuper_Vector3_nuint_nuint_int_bool_bool_IntPtr -u _xamarin_simd__IntPtr_objc_msgSend_Vector3_nuint_nuint_Int64_bool_bool_IntPtr -u _xamarin_simd__IntPtr_objc_msgSendSuper_Vector3_nuint_nuint_Int64_bool_bool_IntPtr -u _xamarin_simd__IntPtr_objc_msgSend_float_Vector2_nuint_nuint_int_bool_IntPtr -u _xamarin_simd__IntPtr_objc_msgSendSuper_float_Vector2_nuint_nuint_int_bool_IntPtr -u _xamarin_simd__IntPtr_objc_msgSend_float_Vector2_nuint_nuint_Int64_bool_IntPtr -u _xamarin_simd__IntPtr_objc_msgSendSuper_float_Vector2_nuint_nuint_Int64_bool_IntPtr -u _xamarin_simd__IntPtr_objc_msgSend_float_Vector2_nuint_nuint_nuint_int_bool_IntPtr -u _xamarin_simd__IntPtr_objc_msgSendSuper_float_Vector2_nuint_nuint_nuint_int_bool_IntPtr -u _xamarin_simd__IntPtr_objc_msgSend_float_Vector2_nuint_nuint_nuint_Int64_bool_IntPtr -u _xamarin_simd__IntPtr_objc_msgSendSuper_float_Vector2_nuint_nuint_nuint_Int64_bool_IntPtr -u _xamarin_simd__bool_objc_msgSend_Vector2i_nint_float_IntPtr_IntPtr_IntPtr -u _xamarin_simd__bool_objc_msgSendSuper_Vector2i_nint_float_IntPtr_IntPtr_IntPtr -u _xamarin_simd__bool_objc_msgSend_Vector2i_IntPtr_IntPtr_IntPtr_IntPtr -u _xamarin_simd__bool_objc_msgSendSuper_Vector2i_IntPtr_IntPtr_IntPtr_IntPtr -u _xamarin_simd__IntPtr_objc_msgSend_float_IntPtr_Vector2i_int -u _xamarin_simd__IntPtr_objc_msgSendSuper_float_IntPtr_Vector2i_int -u _xamarin_simd__IntPtr_objc_msgSend_float_IntPtr_Vector2i_Int64 -u _xamarin_simd__IntPtr_objc_msgSendSuper_float_IntPtr_Vector2i_Int64 -u _xamarin_simd__IntPtr_objc_msgSend_float_IntPtr_Vector2i_int_int_bool -u _xamarin_simd__IntPtr_objc_msgSendSuper_float_IntPtr_Vector2i_int_int_bool -u _xamarin_simd__IntPtr_objc_msgSend_float_IntPtr_Vector2i_int_Int64_bool -u _xamarin_simd__IntPtr_objc_msgSendSuper_float_IntPtr_Vector2i_int_Int64_bool -u _xamarin_simd__IntPtr_objc_msgSend_IntPtr_int_Vector2i_float_float_float_float -u _xamarin_simd__IntPtr_objc_msgSendSuper_IntPtr_int_Vector2i_float_float_float_float -u _xamarin_simd__IntPtr_objc_msgSend_IntPtr_Int64_Vector2i_float_float_float_float -u _xamarin_simd__IntPtr_objc_msgSendSuper_IntPtr_Int64_Vector2i_float_float_float_float -u _xamarin_simd__IntPtr_objc_msgSend_IntPtr_int_Vector2i_float_float_float_float_float -u _xamarin_simd__IntPtr_objc_msgSendSuper_IntPtr_int_Vector2i_float_float_float_float_float -u _xamarin_simd__IntPtr_objc_msgSend_IntPtr_Int64_Vector2i_float_float_float_float_float -u _xamarin_simd__IntPtr_objc_msgSendSuper_IntPtr_Int64_Vector2i_float_float_float_float_float -u _xamarin_simd__IntPtr_objc_msgSend_IntPtr_IntPtr_Vector2i -u _xamarin_simd__IntPtr_objc_msgSendSuper_IntPtr_IntPtr_Vector2i -u _xamarin_simd__IntPtr_objc_msgSend_IntPtr_IntPtr_Vector2i_float -u _xamarin_simd__IntPtr_objc_msgSendSuper_IntPtr_IntPtr_Vector2i_float -u _xamarin_simd__IntPtr_objc_msgSend_Matrix4 -u _xamarin_simd__IntPtr_objc_msgSendSuper_Matrix4 -u _xamarin_simd__IntPtr_objc_msgSend_Matrix4_bool -u _xamarin_simd__IntPtr_objc_msgSendSuper_Matrix4_bool -u _xamarin_simd__IntPtr_objc_msgSend_NMatrix4_bool -u _xamarin_simd__IntPtr_objc_msgSendSuper_NMatrix4_bool -u _xamarin_simd__Vector3_objc_msgSend_Double -u _xamarin_simd__Vector3_objc_msgSendSuper_Double -u _xamarin_simd__Vector3_objc_msgSend_stret_Double -u _xamarin_simd__Vector3_objc_msgSendSuper_stret_Double -u _xamarin_simd__Matrix4_objc_msgSend_Double -u _xamarin_simd__Matrix4_objc_msgSendSuper_Double -u _xamarin_simd__Matrix4_objc_msgSend_stret_Double -u _xamarin_simd__Matrix4_objc_msgSendSuper_stret_Double -u _xamarin_simd__void_objc_msgSend_Vector3_Double -u _xamarin_simd__void_objc_msgSendSuper_Vector3_Double -u _xamarin_simd__void_objc_msgSend_Matrix4_Double -u _xamarin_simd__void_objc_msgSendSuper_Matrix4_Double -u _xamarin_simd__Matrix4_objc_msgSend_IntPtr_Double -u _xamarin_simd__Matrix4_objc_msgSendSuper_IntPtr_Double -u _xamarin_simd__Matrix4_objc_msgSend_stret_IntPtr_Double -u _xamarin_simd__Matrix4_objc_msgSendSuper_stret_IntPtr_Double -u _xamarin_simd__MDLVoxelIndexExtent2_objc_msgSend -u _xamarin_simd__MDLVoxelIndexExtent2_objc_msgSendSuper -u _xamarin_simd__MDLVoxelIndexExtent2_objc_msgSend_stret -u _xamarin_simd__MDLVoxelIndexExtent2_objc_msgSendSuper_stret -u _xamarin_simd__IntPtr_objc_msgSend_IntPtr_MDLAxisAlignedBoundingBox_float -u _xamarin_simd__IntPtr_objc_msgSendSuper_IntPtr_MDLAxisAlignedBoundingBox_float -u _xamarin_simd__bool_objc_msgSend_Vector4i_bool_bool_bool_bool -u _xamarin_simd__bool_objc_msgSendSuper_Vector4i_bool_bool_bool_bool -u _xamarin_simd__void_objc_msgSend_Vector4i -u _xamarin_simd__void_objc_msgSendSuper_Vector4i -u _xamarin_simd__IntPtr_objc_msgSend_MDLVoxelIndexExtent2 -u _xamarin_simd__IntPtr_objc_msgSendSuper_MDLVoxelIndexExtent2 -u _xamarin_simd__Vector4i_objc_msgSend_Vector3 -u _xamarin_simd__Vector4i_objc_msgSendSuper_Vector3 -u _xamarin_simd__Vector4i_objc_msgSend_stret_Vector3 -u _xamarin_simd__Vector4i_objc_msgSendSuper_stret_Vector3 -u _xamarin_simd__Vector3_objc_msgSend_Vector4i -u _xamarin_simd__Vector3_objc_msgSendSuper_Vector4i -u _xamarin_simd__Vector3_objc_msgSend_stret_Vector4i -u _xamarin_simd__Vector3_objc_msgSendSuper_stret_Vector4i -u _xamarin_simd__MDLAxisAlignedBoundingBox_objc_msgSend_Vector4i -u _xamarin_simd__MDLAxisAlignedBoundingBox_objc_msgSendSuper_Vector4i -u _xamarin_simd__MDLAxisAlignedBoundingBox_objc_msgSend_stret_Vector4i -u _xamarin_simd__MDLAxisAlignedBoundingBox_objc_msgSendSuper_stret_Vector4i -u _xamarin_simd__Vector3_objc_msgSend_Vector3 -u _xamarin_simd__Vector3_objc_msgSendSuper_Vector3 -u _xamarin_simd__Vector3_objc_msgSend_stret_Vector3 -u _xamarin_simd__Vector3_objc_msgSendSuper_stret_Vector3 -u _xamarin_simd__IntPtr_objc_msgSend_Vector4 -u _xamarin_simd__IntPtr_objc_msgSendSuper_Vector4 -u _xamarin_vector_float3__Vector4_objc_msgSend -u _xamarin_vector_float3__Vector4_objc_msgSendSuper -u _xamarin_vector_float3__Vector4_objc_msgSend_stret -u _xamarin_vector_float3__Vector4_objc_msgSendSuper_stret -u _xamarin_vector_float3__void_objc_msgSend_Vector4 -u _xamarin_vector_float3__void_objc_msgSendSuper_Vector4 -u _xamarin_simd__Quaternion_objc_msgSend -u _xamarin_simd__Quaternion_objc_msgSendSuper -u _xamarin_simd__Quaternion_objc_msgSend_stret -u _xamarin_simd__Quaternion_objc_msgSendSuper_stret -u _xamarin_simd__void_objc_msgSend_Quaternion -u _xamarin_simd__void_objc_msgSendSuper_Quaternion -u _xamarin_simd__NMatrix2_objc_msgSend -u _xamarin_simd__NMatrix2_objc_msgSendSuper -u _xamarin_simd__NMatrix2_objc_msgSend_stret -u _xamarin_simd__NMatrix2_objc_msgSendSuper_stret -u _xamarin_simd__void_objc_msgSend_NMatrix2 -u _xamarin_simd__void_objc_msgSendSuper_NMatrix2 -u _xamarin_simd__IntPtr_objc_msgSend_IntPtr_Vector4 -u _xamarin_simd__IntPtr_objc_msgSendSuper_IntPtr_Vector4 -u _xamarin_simd__IntPtr_objc_msgSend_IntPtr_Matrix2 -u _xamarin_simd__IntPtr_objc_msgSendSuper_IntPtr_Matrix2 -u _xamarin_simd__IntPtr_objc_msgSend_IntPtr_NMatrix2 -u _xamarin_simd__IntPtr_objc_msgSendSuper_IntPtr_NMatrix2 -u _xamarin_simd__IntPtr_objc_msgSend_IntPtr_Matrix3 -u _xamarin_simd__IntPtr_objc_msgSendSuper_IntPtr_Matrix3 -u _xamarin_simd__IntPtr_objc_msgSend_IntPtr_NMatrix3 -u _xamarin_simd__IntPtr_objc_msgSendSuper_IntPtr_NMatrix3 -u _xamarin_simd__IntPtr_objc_msgSend_IntPtr_Matrix4 -u _xamarin_simd__IntPtr_objc_msgSendSuper_IntPtr_Matrix4 -u _xamarin_simd__Vector2_objc_msgSend_nint -u _xamarin_simd__Vector2_objc_msgSendSuper_nint -u _xamarin_simd__Vector2_objc_msgSend_stret_nint -u _xamarin_simd__Vector2_objc_msgSendSuper_stret_nint -u _xamarin_CGPoint__VNNormalizedFaceBoundingBoxPointForLandmarkPoint_Vector2_CGRect_nuint_nuint_string -u _xamarin_CGPoint__VNImagePointForFaceLandmarkPoint_Vector2_CGRect_nuint_nuint_string -u _UIApplicationMain -u _xamarin_localized_string_format -u _xamarin_localized_string_format_1 -u _xamarin_localized_string_format_2 -u _xamarin_localized_string_format_3 -u _xamarin_localized_string_format_4 -u _xamarin_localized_string_format_5 -u _xamarin_localized_string_format_6 -u _xamarin_localized_string_format_7 -u _xamarin_localized_string_format_8 -u _xamarin_localized_string_format_9 -u _xamarin_init_nsthread -u _xamarin_os_log -u _NetSecurityNative_ReleaseGssBuffer -u _NetSecurityNative_DisplayMinorStatus -u _NetSecurityNative_DisplayMajorStatus -u _NetSecurityNative_ImportUserName -u _NetSecurityNative_ImportPrincipalName -u _NetSecurityNative_ReleaseName -u _NetSecurityNative_InitiateCredSpNego -u _NetSecurityNative_InitiateCredWithPassword -u _NetSecurityNative_ReleaseCred -u _NetSecurityNative_InitSecContext -u _NetSecurityNative_InitSecContextEx -u _NetSecurityNative_AcceptSecContext -u _NetSecurityNative_DeleteSecContext -u _NetSecurityNative_GetUser -u _NetSecurityNative_Wrap -u _NetSecurityNative_Unwrap -u _SystemNative_GetDomainSocketSizes -u _BrotliDecoderCreateInstance -u _BrotliDecoderDecompressStream -u _BrotliDecoderDecompress -u _BrotliDecoderDestroyInstance -u _BrotliDecoderIsFinished -u _BrotliEncoderCreateInstance -u _BrotliEncoderSetParameter -u _BrotliEncoderCompressStream -u _BrotliEncoderHasMoreOutput -u _BrotliEncoderDestroyInstance -u _BrotliEncoderCompress -u _mono_pmip -u _xamarin_dyn_objc_msgSend -u _xamarin_dyn_objc_msgSendSuper -u _xamarin_dyn_objc_msgSend_stret -u _xamarin_dyn_objc_msgSendSuper_stret
MTOUCH : error MT5210: Native linking failed, undefined symbol: _FIRInstallationIDDidChangeNotification. Please verify that all the necessary frameworks have been referenced and native libraries are properly linked in.

MTOUCH : error MT5210: Native linking failed, undefined symbol: _GULIsLoggableLevel. Please verify that all the necessary frameworks have been referenced and native libraries are properly linked in.
		
MTOUCH : error MT5210: Native linking failed, undefined symbol: _GULLogBasic. Please verify that all the necessary frameworks have been referenced and native libraries are properly linked in.
		
MTOUCH : error MT5210: Native linking failed, undefined symbol: _GULLogError. Please verify that all the necessary frameworks have been referenced and native libraries are properly linked in.
		
MTOUCH : error MT5210: Native linking failed, undefined symbol: _GULLogInfo. Please verify that all the necessary frameworks have been referenced and native libraries are properly linked in.
		
MTOUCH : error MT5210: Native linking failed, undefined symbol: _GULLogWarning. Please verify that all the necessary frameworks have been referenced and native libraries are properly linked in.
		
MTOUCH : error MT5210: Native linking failed, undefined symbol: _GULSetLoggerLevel. Please verify that all the necessary frameworks have been referenced and native libraries are properly linked in.
		
MTOUCH : error MT5211: Native linking failed, undefined Objective-C class: FIRApp. The symbol '_OBJC_CLASS_$_FIRApp' could not be found in any of the libraries or frameworks linked with your application.
		
MTOUCH : error MT5211: Native linking failed, undefined Objective-C class: FIRComponent. The symbol '_OBJC_CLASS_$_FIRComponent' could not be found in any of the libraries or frameworks linked with your application.
		
MTOUCH : error MT5211: Native linking failed, undefined Objective-C class: FIRInstallations. The symbol '_OBJC_CLASS_$_FIRInstallations' could not be found in any of the libraries or frameworks linked with your application.
		
MTOUCH : error MT5211: Native linking failed, undefined Objective-C class: FIROptions. The symbol '_OBJC_CLASS_$_FIROptions' could not be found in any of the libraries or frameworks linked with your application.
		
MTOUCH : error MT5211: Native linking failed, undefined Objective-C class: GTMAppAuthFetcherAuthorization. The symbol '_OBJC_CLASS_$_GTMAppAuthFetcherAuthorization' could not be found in any of the libraries or frameworks linked with your application.
		
MTOUCH : error MT5211: Native linking failed, undefined Objective-C class: GTMKeychain. The symbol '_OBJC_CLASS_$_GTMKeychain' could not be found in any of the libraries or frameworks linked with your application.
		
MTOUCH : error MT5211: Native linking failed, undefined Objective-C class: GTMOAuth2KeychainCompatibility. The symbol '_OBJC_CLASS_$_GTMOAuth2KeychainCompatibility' could not be found in any of the libraries or frameworks linked with your application.
		
MTOUCH : error MT5211: Native linking failed, undefined Objective-C class: GTMSessionFetcher. The symbol '_OBJC_CLASS_$_GTMSessionFetcher' could not be found in any of the libraries or frameworks linked with your application.
		
MTOUCH : error MT5211: Native linking failed, undefined Objective-C class: GULAppDelegateSwizzler. The symbol '_OBJC_CLASS_$_GULAppDelegateSwizzler' could not be found in any of the libraries or frameworks linked with your application.
		
MTOUCH : error MT5211: Native linking failed, undefined Objective-C class: GULAppEnvironmentUtil. The symbol '_OBJC_CLASS_$_GULAppEnvironmentUtil' could not be found in any of the libraries or frameworks linked with your application.
		
MTOUCH : error MT5211: Native linking failed, undefined Objective-C class: GULMutableDictionary. The symbol '_OBJC_CLASS_$_GULMutableDictionary' could not be found in any of the libraries or frameworks linked with your application.
		
MTOUCH : error MT5211: Native linking failed, undefined Objective-C class: GULNetwork. The symbol '_OBJC_CLASS_$_GULNetwork' could not be found in any of the libraries or frameworks linked with your application.
		
MTOUCH : error MT5211: Native linking failed, undefined Objective-C class: GULSwizzler. The symbol '_OBJC_CLASS_$_GULSwizzler' could not be found in any of the libraries or frameworks linked with your application.
		
MTOUCH : error MT5211: Native linking failed, undefined Objective-C class: OIDAuthState. The symbol '_OBJC_CLASS_$_OIDAuthState' could not be found in any of the libraries or frameworks linked with your application.
		
MTOUCH : error MT5211: Native linking failed, undefined Objective-C class: OIDAuthorizationRequest. The symbol '_OBJC_CLASS_$_OIDAuthorizationRequest' could not be found in any of the libraries or frameworks linked with your application.
		
MTOUCH : error MT5211: Native linking failed, undefined Objective-C class: OIDAuthorizationService. The symbol '_OBJC_CLASS_$_OIDAuthorizationService' could not be found in any of the libraries or frameworks linked with your application.
		
MTOUCH : error MT5211: Native linking failed, undefined Objective-C class: OIDIDToken. The symbol '_OBJC_CLASS_$_OIDIDToken' could not be found in any of the libraries or frameworks linked with your application.
		
MTOUCH : error MT5211: Native linking failed, undefined Objective-C class: OIDServiceConfiguration. The symbol '_OBJC_CLASS_$_OIDServiceConfiguration' could not be found in any of the libraries or frameworks linked with your application.
		
MTOUCH : error MT5211: Native linking failed, undefined Objective-C class: OIDURLQueryComponent. The symbol '_OBJC_CLASS_$_OIDURLQueryComponent' could not be found in any of the libraries or frameworks linked with your application.
		
MTOUCH : error MT5210: Native linking failed, undefined symbol: _OBJC_METACLASS_$_GTMAppAuthFetcherAuthorization. Please verify that all the necessary frameworks have been referenced and native libraries are properly linked in.
		
MTOUCH : error MT5210: Native linking failed, undefined symbol: _OIDOAuthErrorResponseErrorKey. Please verify that all the necessary frameworks have been referenced and native libraries are properly linked in.
		
MTOUCH : error MT5210: Native linking failed, undefined symbol: _OIDOAuthTokenErrorDomain. Please verify that all the necessary frameworks have been referenced and native libraries are properly linked in.
		
MTOUCH : error MT5210: Native linking failed, undefined symbol: _OIDResponseTypeCode. Please verify that all the necessary frameworks have been referenced and native libraries are properly linked in.
		
MTOUCH : error MT5210: Native linking failed, undefined symbol: _kFIRLoggerAnalytics. Please verify that all the necessary frameworks have been referenced and native libraries are properly linked in.
		
MTOUCH : error MT5210: Native linking failed, undefined symbol: _kGULNetworkHTTPStatusCodeCannotAcceptTraffic. Please verify that all the necessary frameworks have been referenced and native libraries are properly linked in.
		
MTOUCH : error MT5210: Native linking failed, undefined symbol: _kGULNetworkHTTPStatusCodeNotFound. Please verify that all the necessary frameworks have been referenced and native libraries are properly linked in.
		
MTOUCH : error MT5210: Native linking failed, undefined symbol: _kGULNetworkHTTPStatusCodeNotModified. Please verify that all the necessary frameworks have been referenced and native libraries are properly linked in.
		
MTOUCH : error MT5210: Native linking failed, undefined symbol: _kGULNetworkHTTPStatusCodeUnavailable. Please verify that all the necessary frameworks have been referenced and native libraries are properly linked in.
		
MTOUCH : error MT5210: Native linking failed, undefined symbol: _kGULNetworkHTTPStatusNoContent. Please verify that all the necessary frameworks have been referenced and native libraries are properly linked in.
		
MTOUCH : error MT5210: Native linking failed, undefined symbol: _kGULNetworkHTTPStatusOK. Please verify that all the necessary frameworks have been referenced and native libraries are properly linked in.
		
MTOUCH : error MT5210: Native linking failed, undefined symbol: _pb_decode. Please verify that all the necessary frameworks have been referenced and native libraries are properly linked in.
		
MTOUCH : error MT5210: Native linking failed, undefined symbol: _pb_decode_varint. Please verify that all the necessary frameworks have been referenced and native libraries are properly linked in.
		
MTOUCH : error MT5210: Native linking failed, undefined symbol: _pb_encode. Please verify that all the necessary frameworks have been referenced and native libraries are properly linked in.
		
MTOUCH : error MT5210: Native linking failed, undefined symbol: _pb_encode_string. Please verify that all the necessary frameworks have been referenced and native libraries are properly linked in.
		
MTOUCH : error MT5210: Native linking failed, undefined symbol: _pb_encode_submessage. Please verify that all the necessary frameworks have been referenced and native libraries are properly linked in.
		
MTOUCH : error MT5210: Native linking failed, undefined symbol: _pb_encode_tag_for_field. Please verify that all the necessary frameworks have been referenced and native libraries are properly linked in.
		
MTOUCH : error MT5210: Native linking failed, undefined symbol: _pb_encode_varint. Please verify that all the necessary frameworks have been referenced and native libraries are properly linked in.
		
MTOUCH : error MT5210: Native linking failed, undefined symbol: _pb_istream_from_buffer. Please verify that all the necessary frameworks have been referenced and native libraries are properly linked in.
		
MTOUCH : error MT5210: Native linking failed, undefined symbol: _pb_ostream_from_buffer. Please verify that all the necessary frameworks have been referenced and native libraries are properly linked in.
		
MTOUCH : error MT5210: Native linking failed, undefined symbol: _pb_read. Please verify that all the necessary frameworks have been referenced and native libraries are properly linked in.
		
MTOUCH : warning MT5215: References to 'System' might require additional -framework=XXX or -lXXX instructions to the native linker
		
MTOUCH : warning MT5215: References to 'System' might require additional -framework=XXX or -lXXX instructions to the native linker
		
MTOUCH : warning MT5215: References to 'System.Net.Security' might require additional -framework=XXX or -lXXX instructions to the native linker
		
MTOUCH : warning MT5215: References to 'System' might require additional -framework=XXX or -lXXX instructions to the native linker
		
MTOUCH : warning MT5215: References to 'System' might require additional -framework=XXX or -lXXX instructions to the native linker
		
MTOUCH : error MT5201: Native linking failed. Please review the build log and the user flags provided to gcc: -ObjC -lsqlite3 -ObjC -lc++ -lsqlite3 -lz -ObjC -lc++ -lsqlite3 -lz
		
Undefined symbols for architecture x86_64:
  "_FIRInstallationIDDidChangeNotification", referenced from:
      +[FIRAnalytics observeFirebaseInstallationIDChanges] in FirebaseAnalytics(FIRAnalytics_0adfd2755b005a0faa1ca7ac39e5b0af.o)
  "_GULIsLoggableLevel", referenced from:
      -[APMMonitor isLoggableLevel:] in GoogleAppMeasurement(APMMonitor_672f9d70262397b5b18753158d7fbc88.o)
  "_GULLogBasic", referenced from:
      -[APMASLLogger logMessage:logTag:messageCode:withLogLevel:] in GoogleAppMeasurement(APMASLLogger_327bc788c66c49ee4b89eba71bc1e78c.o)
  "_GULLogError", referenced from:
      +[APMAnalytics startWithAppID:origin:options:] in GoogleAppMeasurement(APMAnalytics_afb70a99a6288a50ca78cb3992eea2d3.o)
      -[APMUserDefaults synchronize] in GoogleAppMeasurement(APMUserDefaults_dd148a05b52b5850cbe60d3f072966b5.o)
  "_GULLogInfo", referenced from:
      ___44+[UIViewController(APMScreenClassName) load]_block_invoke in GoogleAppMeasurement(UIViewController+APMScreenClassName_d414992ede38c698bc9a23de180c8cb5.o)
  "_GULLogWarning", referenced from:
      +[APMMeasurement sharedInstance] in GoogleAppMeasurement(APMMeasurement_7b399ffe8f030717675febfa49640b5b.o)
      -[APMUserDefaults objectForKey:] in GoogleAppMeasurement(APMUserDefaults_dd148a05b52b5850cbe60d3f072966b5.o)
      -[APMUserDefaults setObject:forKey:] in GoogleAppMeasurement(APMUserDefaults_dd148a05b52b5850cbe60d3f072966b5.o)
      -[APMUserDefaults synchronize] in GoogleAppMeasurement(APMUserDefaults_dd148a05b52b5850cbe60d3f072966b5.o)
      ___44+[UIViewController(APMScreenClassName) load]_block_invoke in GoogleAppMeasurement(UIViewController+APMScreenClassName_d414992ede38c698bc9a23de180c8cb5.o)
  "_GULSetLoggerLevel", referenced from:
      -[APMMonitor setDebugModeEnabled:] in GoogleAppMeasurement(APMMonitor_672f9d70262397b5b18753158d7fbc88.o)
      -[APMMonitor setVerboseLoggingEnabled:] in GoogleAppMeasurement(APMMonitor_672f9d70262397b5b18753158d7fbc88.o)
  "_OBJC_CLASS_$_FIRApp", referenced from:
      objc-class-ref in FirebaseAnalytics(FIRAnalytics_0adfd2755b005a0faa1ca7ac39e5b0af.o)
      objc-class-ref in FIRAnalyticsConnector(FIRAnalyticsConnector_03d6aa66122ddf8e6248126c55bd74f9.o)
  "_OBJC_CLASS_$_FIRComponent", referenced from:
      objc-class-ref in FIRAnalyticsConnector(FIRAnalyticsConnector_03d6aa66122ddf8e6248126c55bd74f9.o)
  "_OBJC_CLASS_$_FIRInstallations", referenced from:
      objc-class-ref in FirebaseAnalytics(FIRAnalytics_0adfd2755b005a0faa1ca7ac39e5b0af.o)
  "_OBJC_CLASS_$_FIROptions", referenced from:
      objc-class-ref in FirebaseAnalytics(FIRAnalytics_0adfd2755b005a0faa1ca7ac39e5b0af.o)
  "_OBJC_CLASS_$_GTMAppAuthFetcherAuthorization", referenced from:
      _OBJC_CLASS_$_GTMAppAuthFetcherAuthorizationWithEMMSupport in GoogleSignIn(GIDAuthentication_7b83cc27af8929ec7e4c9760d73a0f31.o)
      objc-class-ref in GoogleSignIn(GIDAuthentication_7b83cc27af8929ec7e4c9760d73a0f31.o)
      objc-class-ref in GoogleSignIn(GIDSignIn_f05654be6d1b2af59ab6df426a0c4eb9.o)
      objc-class-ref in GoogleSignIn(GIDAuthStateMigration_bdf842e92d17b12b5f020e0e721bd017.o)
     (maybe you meant: _OBJC_CLASS_$_GTMAppAuthFetcherAuthorizationEMMChainedDelegate, _OBJC_CLASS_$_GTMAppAuthFetcherAuthorizationWithEMMSupport )
  "_OBJC_CLASS_$_GTMKeychain", referenced from:
      objc-class-ref in GoogleSignIn(GIDAuthStateMigration_bdf842e92d17b12b5f020e0e721bd017.o)
  "_OBJC_CLASS_$_GTMOAuth2KeychainCompatibility", referenced from:
      objc-class-ref in GoogleSignIn(GIDAuthStateMigration_bdf842e92d17b12b5f020e0e721bd017.o)
  "_OBJC_CLASS_$_GTMSessionFetcher", referenced from:
      objc-class-ref in GoogleSignIn(GIDSignIn_f05654be6d1b2af59ab6df426a0c4eb9.o)
  "_OBJC_CLASS_$_GULAppDelegateSwizzler", referenced from:
      objc-class-ref in GoogleAppMeasurement(APMAnalytics_afb70a99a6288a50ca78cb3992eea2d3.o)
  "_OBJC_CLASS_$_GULAppEnvironmentUtil", referenced from:
      objc-class-ref in GoogleAppMeasurement(APMEExperimentRequestBuilder_12748648d8c35932afca945ea57f2087.o)
  "_OBJC_CLASS_$_GULMutableDictionary", referenced from:
      objc-class-ref in GoogleAppMeasurement(APMEExperiment_b3c96bea2f53adcd709fd81d0364ad2a.o)
      objc-class-ref in GoogleAppMeasurement(APMEExperimentRequestBuilder_12748648d8c35932afca945ea57f2087.o)
      objc-class-ref in GoogleAppMeasurement(APMEManager_992e57f4e93bf57b6ed9c7d18caeed24.o)
      objc-class-ref in GoogleAppMeasurement(APMRemoteConfig_d3814875519cb2287bc3048a57b4c6d6.o)
      objc-class-ref in GoogleAppMeasurement(APMESnapshot_6dd58467bbd13c093acb8c6f99bae2d6.o)
  "_OBJC_CLASS_$_GULNetwork", referenced from:
      objc-class-ref in GoogleAppMeasurement(APMAnalytics_afb70a99a6288a50ca78cb3992eea2d3.o)
      objc-class-ref in GoogleAppMeasurement(APMMeasurement_7b399ffe8f030717675febfa49640b5b.o)
      objc-class-ref in GoogleAppMeasurement(APMAppDelegateInterceptor_f117b3c129e186ea53de114819e5495d.o)
      objc-class-ref in GoogleAppMeasurement(APMETaskManager_abb5cf39cfcc87178a161bc60e426b00.o)
  "_OBJC_CLASS_$_GULSwizzler", referenced from:
      objc-class-ref in GoogleAppMeasurement(UIViewController+APMScreenClassName_d414992ede38c698bc9a23de180c8cb5.o)
  "_OBJC_CLASS_$_OIDAuthState", referenced from:
      objc-class-ref in GoogleSignIn(GIDAuthentication_7b83cc27af8929ec7e4c9760d73a0f31.o)
      objc-class-ref in GoogleSignIn(GIDSignIn_f05654be6d1b2af59ab6df426a0c4eb9.o)
  "_OBJC_CLASS_$_OIDAuthorizationRequest", referenced from:
      objc-class-ref in GoogleSignIn(GIDSignIn_f05654be6d1b2af59ab6df426a0c4eb9.o)
  "_OBJC_CLASS_$_OIDAuthorizationService", referenced from:
      objc-class-ref in GoogleSignIn(GIDAuthentication_7b83cc27af8929ec7e4c9760d73a0f31.o)
      objc-class-ref in GoogleSignIn(GIDSignIn_f05654be6d1b2af59ab6df426a0c4eb9.o)
  "_OBJC_CLASS_$_OIDIDToken", referenced from:
      objc-class-ref in GoogleSignIn(GIDGoogleUser_2bdd4a676c033bc6ca21970e75d9159c.o)
      objc-class-ref in GoogleSignIn(GIDAuthentication_7b83cc27af8929ec7e4c9760d73a0f31.o)
      objc-class-ref in GoogleSignIn(GIDSignIn_f05654be6d1b2af59ab6df426a0c4eb9.o)
  "_OBJC_CLASS_$_OIDServiceConfiguration", referenced from:
      objc-class-ref in GoogleSignIn(GIDSignIn_f05654be6d1b2af59ab6df426a0c4eb9.o)
  "_OBJC_CLASS_$_OIDURLQueryComponent", referenced from:
      objc-class-ref in GoogleSignIn(GIDSignIn_f05654be6d1b2af59ab6df426a0c4eb9.o)
  "_OBJC_METACLASS_$_GTMAppAuthFetcherAuthorization", referenced from:
      _OBJC_METACLASS_$_GTMAppAuthFetcherAuthorizationWithEMMSupport in GoogleSignIn(GIDAuthentication_7b83cc27af8929ec7e4c9760d73a0f31.o)
     (maybe you meant: _OBJC_METACLASS_$_GTMAppAuthFetcherAuthorizationEMMChainedDelegate, _OBJC_METACLASS_$_GTMAppAuthFetcherAuthorizationWithEMMSupport )
  "_OIDOAuthErrorResponseErrorKey", referenced from:
      +[GIDAuthentication handleTokenFetchEMMError:completion:] in GoogleSignIn(GIDAuthentication_7b83cc27af8929ec7e4c9760d73a0f31.o)
  "_OIDOAuthTokenErrorDomain", referenced from:
      ___46-[GIDAuthentication refreshTokensWithHandler:]_block_invoke in GoogleSignIn(GIDAuthentication_7b83cc27af8929ec7e4c9760d73a0f31.o)
  "_OIDResponseTypeCode", referenced from:
      -[GIDSignIn authenticateInteractivelyWithOptions:] in GoogleSignIn(GIDSignIn_f05654be6d1b2af59ab6df426a0c4eb9.o)
  "_kFIRLoggerAnalytics", referenced from:
      +[FIRAnalytics startWithConfiguration:options:] in FirebaseAnalytics(FIRAnalytics_0adfd2755b005a0faa1ca7ac39e5b0af.o)
  "_kGULNetworkHTTPStatusCodeCannotAcceptTraffic", referenced from:
-[APMMeasurement networkUploadCompletionHandlerWithResponse : error : ] in GoogleAppMeasurement(APMMeasurement_7b399ffe8f030717675febfa49640b5b.o)
      -[APMMeasurement networkRemoteConfigFetchCompletionHandler:data:error:] in GoogleAppMeasurement(APMMeasurement_7b399ffe8f030717675febfa49640b5b.o)
      -[APMETaskManager handleFetchingExperimentsResponse:data:error:] in GoogleAppMeasurement(APMETaskManager_abb5cf39cfcc87178a161bc60e426b00.o)
  "_kGULNetworkHTTPStatusCodeNotFound", referenced from:
      -[APMMeasurement networkRemoteConfigFetchCompletionHandler:data:error:] in GoogleAppMeasurement(APMMeasurement_7b399ffe8f030717675febfa49640b5b.o)
  "_kGULNetworkHTTPStatusCodeNotModified", referenced from:
      -[APMMeasurement networkRemoteConfigFetchCompletionHandler:data:error:] in GoogleAppMeasurement(APMMeasurement_7b399ffe8f030717675febfa49640b5b.o)
      ___46-[APMMeasurement(URL) requestDeferredDeepLink]_block_invoke in GoogleAppMeasurement(APMMeasurement+URL_1fc571aa6e6482c311c1202d3640dac7.o)
  "_kGULNetworkHTTPStatusCodeUnavailable", referenced from:
-[APMMeasurement networkUploadCompletionHandlerWithResponse : error : ] in GoogleAppMeasurement(APMMeasurement_7b399ffe8f030717675febfa49640b5b.o)
      -[APMMeasurement networkRemoteConfigFetchCompletionHandler:data:error:] in GoogleAppMeasurement(APMMeasurement_7b399ffe8f030717675febfa49640b5b.o)
      -[APMETaskManager handleFetchingExperimentsResponse:data:error:] in GoogleAppMeasurement(APMETaskManager_abb5cf39cfcc87178a161bc60e426b00.o)
  "_kGULNetworkHTTPStatusNoContent", referenced from:
-[APMMeasurement networkUploadCompletionHandlerWithResponse : error : ] in GoogleAppMeasurement(APMMeasurement_7b399ffe8f030717675febfa49640b5b.o)
      -[APMMeasurement networkRemoteConfigFetchCompletionHandler:data:error:] in GoogleAppMeasurement(APMMeasurement_7b399ffe8f030717675febfa49640b5b.o)
      -[APMETaskManager handleFetchingExperimentsResponse:data:error:] in GoogleAppMeasurement(APMETaskManager_abb5cf39cfcc87178a161bc60e426b00.o)
      ___46-[APMMeasurement(URL) requestDeferredDeepLink]_block_invoke in GoogleAppMeasurement(APMMeasurement+URL_1fc571aa6e6482c311c1202d3640dac7.o)
  "_kGULNetworkHTTPStatusOK", referenced from:
-[APMMeasurement networkUploadCompletionHandlerWithResponse : error : ] in GoogleAppMeasurement(APMMeasurement_7b399ffe8f030717675febfa49640b5b.o)
      -[APMMeasurement networkRemoteConfigFetchCompletionHandler:data:error:] in GoogleAppMeasurement(APMMeasurement_7b399ffe8f030717675febfa49640b5b.o)
      -[APMETaskManager handleFetchingExperimentsResponse:data:error:] in GoogleAppMeasurement(APMETaskManager_abb5cf39cfcc87178a161bc60e426b00.o)
      ___46-[APMMeasurement(URL) requestDeferredDeepLink]_block_invoke in GoogleAppMeasurement(APMMeasurement+URL_1fc571aa6e6482c311c1202d3640dac7.o)
  "_pb_decode", referenced from:
      _apmpb_decode_app_property in GoogleAppMeasurement(apmpb_app_property_decoder_1e0d392532f0e92ac4a6bd4bafe94d5c.o)
      _apmpb_decode_audience in GoogleAppMeasurement(apmpb_audience_decoder_cc83cde2ff4bad459266586f933de30f.o)
      _apmpb_decode_audience_leaf_filter_result in GoogleAppMeasurement(apmpb_audience_leaf_filter_result_decoder_f914edca53e4d7c33f31613d65ced601.o)
      _apmpb_decode_client_property in GoogleAppMeasurement(apmpb_client_property_decoder_d8b73853831e950afcec00f870947bf0.o)
      _apmpb_decode_custom_property in GoogleAppMeasurement(apmpb_custom_property_decoder_1dd7aec66e94733583fb11d19e573761.o)
      _apmpb_decode_dynamic_filter_result_timestamp in GoogleAppMeasurement(apmpb_dynamic_filter_result_timestamp_decoder_71bff49c2c8f2d0aa8aa241428d8866b.o)
      _apmpb_decode_event in GoogleAppMeasurement(apmpb_event_decoder_2b8ad8e6179a651157955c789ce612a1.o)
      ...
  "_pb_decode_varint", referenced from:
      _nano_decode_repeated_uint64 in GoogleAppMeasurement(decoder_common_08d0f64da88215e2ce71dfdcc5effbc9.o)
  "_pb_encode", referenced from:
      _nano_two_pass_encoding in GoogleAppMeasurement(encoder_common_95142571aa08269c9b30f203d972ddbe.o)
  "_pb_encode_string", referenced from:
      _nano_encode_string in GoogleAppMeasurement(encoder_common_95142571aa08269c9b30f203d972ddbe.o)
  "_pb_encode_submessage", referenced from:
      _apmpb_encode_repeated_app_property in GoogleAppMeasurement(apmpb_app_property_encoder_91dca50e0948f713a7b5a81b38d8de8c.o)
      _apmpb_encode_repeated_audience in GoogleAppMeasurement(apmpb_audience_encoder_bda72f46cebfc697d4d0291d861648a4.o)
      _apmpb_encode_repeated_audience_leaf_filter_result in GoogleAppMeasurement(apmpb_audience_leaf_filter_result_encoder_9331227ab3a4d88a1bec7e60c6729fae.o)
      _apmpb_encode_repeated_client_property in GoogleAppMeasurement(apmpb_client_property_encoder_e1cb79023143f538da29b3c29e796b58.o)
      _apmpb_encode_repeated_custom_property in GoogleAppMeasurement(apmpb_custom_property_encoder_21a0c2e7f051ce00649cdf27d8bb3b97.o)
      _apmpb_encode_repeated_dynamic_filter_result_timestamp in GoogleAppMeasurement(apmpb_dynamic_filter_result_timestamp_encoder_e3c748904b0d1342446ba7697238b245.o)
      _apmpb_encode_repeated_event in GoogleAppMeasurement(apmpb_event_encoder_b92404800fcc1eb72dc16defda2a448b.o)
      ...
  "_pb_encode_tag_for_field", referenced from:
      _apmpb_encode_repeated_app_property in GoogleAppMeasurement(apmpb_app_property_encoder_91dca50e0948f713a7b5a81b38d8de8c.o)
      _apmpb_encode_repeated_audience in GoogleAppMeasurement(apmpb_audience_encoder_bda72f46cebfc697d4d0291d861648a4.o)
      _apmpb_encode_repeated_audience_leaf_filter_result in GoogleAppMeasurement(apmpb_audience_leaf_filter_result_encoder_9331227ab3a4d88a1bec7e60c6729fae.o)
      _apmpb_encode_repeated_client_property in GoogleAppMeasurement(apmpb_client_property_encoder_e1cb79023143f538da29b3c29e796b58.o)
      _apmpb_encode_repeated_custom_property in GoogleAppMeasurement(apmpb_custom_property_encoder_21a0c2e7f051ce00649cdf27d8bb3b97.o)
      _apmpb_encode_repeated_dynamic_filter_result_timestamp in GoogleAppMeasurement(apmpb_dynamic_filter_result_timestamp_encoder_e3c748904b0d1342446ba7697238b245.o)
      _apmpb_encode_repeated_event in GoogleAppMeasurement(apmpb_event_encoder_b92404800fcc1eb72dc16defda2a448b.o)
      ...
  "_pb_encode_varint", referenced from:
      _nano_encode_repeated_uint64 in GoogleAppMeasurement(encoder_common_95142571aa08269c9b30f203d972ddbe.o)
  "_pb_istream_from_buffer", referenced from:
      _apmpb_decode_app_property in GoogleAppMeasurement(apmpb_app_property_decoder_1e0d392532f0e92ac4a6bd4bafe94d5c.o)
      _apmpb_decode_audience in GoogleAppMeasurement(apmpb_audience_decoder_cc83cde2ff4bad459266586f933de30f.o)
      _apmpb_decode_audience_leaf_filter_result in GoogleAppMeasurement(apmpb_audience_leaf_filter_result_decoder_f914edca53e4d7c33f31613d65ced601.o)
      _apmpb_decode_client_property in GoogleAppMeasurement(apmpb_client_property_decoder_d8b73853831e950afcec00f870947bf0.o)
      _apmpb_decode_custom_property in GoogleAppMeasurement(apmpb_custom_property_decoder_1dd7aec66e94733583fb11d19e573761.o)
      _apmpb_decode_dynamic_filter_result_timestamp in GoogleAppMeasurement(apmpb_dynamic_filter_result_timestamp_decoder_71bff49c2c8f2d0aa8aa241428d8866b.o)
      _apmpb_decode_event in GoogleAppMeasurement(apmpb_event_decoder_2b8ad8e6179a651157955c789ce612a1.o)
      ...
  "_pb_ostream_from_buffer", referenced from:
      _nano_two_pass_encoding in GoogleAppMeasurement(encoder_common_95142571aa08269c9b30f203d972ddbe.o)
  "_pb_read", referenced from:
      _apmpb_decode_repeated_app_property in GoogleAppMeasurement(apmpb_app_property_decoder_1e0d392532f0e92ac4a6bd4bafe94d5c.o)
      _apmpb_decode_repeated_audience in GoogleAppMeasurement(apmpb_audience_decoder_cc83cde2ff4bad459266586f933de30f.o)
      _apmpb_decode_repeated_audience_leaf_filter_result in GoogleAppMeasurement(apmpb_audience_leaf_filter_result_decoder_f914edca53e4d7c33f31613d65ced601.o)
      _apmpb_decode_repeated_client_property in GoogleAppMeasurement(apmpb_client_property_decoder_d8b73853831e950afcec00f870947bf0.o)
      _apmpb_decode_repeated_custom_property in GoogleAppMeasurement(apmpb_custom_property_decoder_1dd7aec66e94733583fb11d19e573761.o)
      _apmpb_decode_repeated_dynamic_filter_result_timestamp in GoogleAppMeasurement(apmpb_dynamic_filter_result_timestamp_decoder_71bff49c2c8f2d0aa8aa241428d8866b.o)
      _apmpb_decode_repeated_event in GoogleAppMeasurement(apmpb_event_decoder_2b8ad8e6179a651157955c789ce612a1.o)
      ...
ld: symbol(s) not found for architecture x86_64
clang : error : linker command failed with exit code 1 (use -v to see invocation)

Done building target "_CompileToNative" in project "Diksha.iOS.csproj" -- FAILED.

Done building project "Diksha.iOS.csproj" -- FAILED.


Project "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.Android/Diksha.Android.csproj" (Build target(s)):

Target _CreateStampDirectory:
Creating directory "obj/Debug/stamp/".
Target _ResolveAndroidTooling:
Found Java SDK version 1.8.0.
Found Java SDK version 1.8.0.
Target _ResolveXamarinAndroidTools:
Found Xamarin.Android 11.1.0.26
Target _ValidateAndroidPackageProperties:
PackageName: org.satsang.diksha
Target _CheckInstantRunCondition:
Dex Fast Deployment Enabled: False
Target _ResolveMonoAndroidSdks:
MonoAndroid Tools: /Library/Frameworks/Xamarin.Android.framework/Libraries/xbuild/Xamarin/Android/
Android Platform API level: 30
TargetFrameworkVersion: v11.0
Android NDK:
Android SDK: /Users/hiteshmalhotra/Library/Android/sdk/
Android SDK Build Tools: /Users/hiteshmalhotra/Library/Android/sdk/build-tools/29.0.2/
Java SDK: /Users/hiteshmalhotra/Library/Developer/Xamarin/jdk/microsoft_dist_openjdk_1.8.0.25/
Application Java class: android.app.Application
Target _CleanIntermediateIfNeeded:
Creating "obj/Debug/stamp/_CleanIntermediateIfNeeded.stamp" because "AlwaysCreate" was specified.
Target _GetProjectReferenceTargetFrameworkProperties:
__________________________________________________
Project "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.Android/Diksha.Android.csproj" is building "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha/Diksha.csproj" (GetTargetFrameworks target(s)):

Target ResolveProjectReferences:
__________________________________________________
Project "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.Android/Diksha.Android.csproj" is building "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha/Diksha.csproj" (GetTargetPath target(s)):

__________________________________________________
Project "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.Android/Diksha.Android.csproj" is building "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha/Diksha.csproj" (GetNativeManifest target(s)):

Target _ComputeAndroidResourcePaths:
Creating directory "obj/Debug/res/".
Target _ResolveLibraryProjectImports:
Creating "obj/Debug/stamp/_ResolveLibraryProjectImports.stamp" because "AlwaysCreate" was specified.
Target _BuildLibraryImportsCache:
Creating "obj/Debug/stamp/_BuildLibraryImportsCache.stamp" because "AlwaysCreate" was specified.
Target _GenerateAndroidResourceDir:
Creating "obj/Debug/res.flag" because "AlwaysCreate" was specified.
Target _GenerateLayoutBindings:
Skipping target "_GenerateLayoutBindings" because it has no outputs.
Target _ConvertResourcesCases:
Creating directory "obj/Debug/flata/".
Creating directory "obj/Debug/flat/".
Creating "obj/Debug/stamp/_ConvertResourcesCases.stamp" because "AlwaysCreate" was specified.
Target _UpdateAndroidResgen:
Creating "obj/Debug/R.cs.flag" because "AlwaysCreate" was specified.
Target XamlG:
Skipping target "XamlG" because it has no outputs.
Target CssG:
Skipping target "CssG" because it has no outputs.
Target CssG:
Skipping target "CssG" because it has no outputs.
Target XamlG:
Skipping target "XamlG" because it has no outputs.
Target CoreCompile:
/Applications/Visual Studio.app/Contents/Resources/lib/monodevelop/bin/MSBuild/Current/bin/Roslyn/csc.exe /noconfig /nowarn:1701,1702,2008 /fullpaths /nostdlib+ /errorreport:prompt /warn:4 /define:DEBUG;XAMARIN_ANDROID_v1_0;MOBILE;ANDROID;ANDROID_1;ANDROID_2;ANDROID_3;ANDROID_4;ANDROID_5;ANDROID_6;ANDROID_7;ANDROID_8;ANDROID_9;ANDROID_10;ANDROID_11;ANDROID_12;ANDROID_13;ANDROID_14;ANDROID_15;ANDROID_16;ANDROID_17;ANDROID_18;ANDROID_19;ANDROID_20;ANDROID_21;ANDROID_22;ANDROID_23;ANDROID_24;ANDROID_25;ANDROID_26;ANDROID_27;ANDROID_28;ANDROID_29;ANDROID_30 /errorendlocation /preferreduilang:en-US /reference:/Users/hiteshmalhotra/.nuget/packages/bolts/1.4.0.1/lib/MonoAndroid403/Bolts.AppLinks.dll /reference:/Users/hiteshmalhotra/.nuget/packages/bolts/1.4.0.1/lib/MonoAndroid403/Bolts.Tasks.dll /reference:"/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha/bin/Debug/netstandard2.0/ref/Diksha.dll" /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.forms/5.0.0.1874/lib/MonoAndroid10.0/FormsViewGroup.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.google.zxing.core/3.3.3/lib/monoandroid90/Google.ZXing.Core.dll /reference:/Users/hiteshmalhotra/.nuget/packages/googlegson/2.8.5/lib/monoandroid44/GoogleGson.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Java.Interop.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Microsoft.CSharp.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v11.0/Mono.Android.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/mscorlib.dll /reference:/Users/hiteshmalhotra/.nuget/packages/newtonsoft.json/12.0.3/lib/netstandard2.0/Newtonsoft.Json.dll /reference:/Users/hiteshmalhotra/.nuget/packages/plugin.currentactivity/2.1.0.4/lib/monoandroid44/Plugin.CurrentActivity.dll /reference:/Users/hiteshmalhotra/.nuget/packages/plugin.firebase/1.0.1/lib/monoandroid90/Plugin.Firebase.dll /reference:/Users/hiteshmalhotra/.nuget/packages/square.okhttp/2.7.5.1/lib/monoandroid44/Square.OkHttp.dll /reference:/Users/hiteshmalhotra/.nuget/packages/square.okhttp3/3.12.3/lib/monoandroid44/Square.OkHttp3.dll /reference:/Users/hiteshmalhotra/.nuget/packages/square.okio/1.15.0/lib/monoandroid44/Square.OkIO.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/System.Core.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/System.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/System.Json.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/System.Numerics.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/System.Numerics.Vectors.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/System.Xml.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/System.Xml.Linq.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.androidx.activity/1.1.0.5/lib/monoandroid90/Xamarin.AndroidX.Activity.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.androidx.annotation/1.1.0.8/lib/monoandroid90/Xamarin.AndroidX.Annotation.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.androidx.appcompat.appcompatresources/1.2.0.5/lib/monoandroid90/Xamarin.AndroidX.AppCompat.AppCompatResources.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.androidx.appcompat/1.2.0.5/lib/monoandroid90/Xamarin.AndroidX.AppCompat.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.androidx.arch.core.common/2.1.0.7/lib/monoandroid90/Xamarin.AndroidX.Arch.Core.Common.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.androidx.arch.core.runtime/2.1.0.7/lib/monoandroid90/Xamarin.AndroidX.Arch.Core.Runtime.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.androidx.asynclayoutinflater/1.0.0.6/lib/monoandroid90/Xamarin.AndroidX.AsyncLayoutInflater.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.androidx.browser/1.3.0/lib/monoandroid90/Xamarin.AndroidX.Browser.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.androidx.cardview/1.0.0.5/lib/monoandroid90/Xamarin.AndroidX.CardView.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.androidx.collection/1.1.0.6/lib/monoandroid90/Xamarin.AndroidX.Collection.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.androidx.coordinatorlayout/1.1.0.6/lib/monoandroid90/Xamarin.AndroidX.CoordinatorLayout.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.androidx.core/1.3.2.1/lib/monoandroid90/Xamarin.AndroidX.Core.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.androidx.cursoradapter/1.0.0.6/lib/monoandroid90/Xamarin.AndroidX.CursorAdapter.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.androidx.customview/1.1.0.4/lib/monoandroid90/Xamarin.AndroidX.CustomView.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.androidx.documentfile/1.0.1.6/lib/monoandroid90/Xamarin.AndroidX.DocumentFile.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.androidx.drawerlayout/1.1.1.1/lib/monoandroid90/Xamarin.AndroidX.DrawerLayout.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.androidx.fragment/1.2.5.4/lib/monoandroid90/Xamarin.AndroidX.Fragment.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.androidx.interpolator/1.0.0.6/lib/monoandroid90/Xamarin.AndroidX.Interpolator.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.androidx.legacy.support.core.ui/1.0.0.7/lib/monoandroid90/Xamarin.AndroidX.Legacy.Support.Core.UI.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.androidx.legacy.support.core.utils/1.0.0.6/lib/monoandroid90/Xamarin.AndroidX.Legacy.Support.Core.Utils.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.androidx.legacy.support.v4/1.0.0.6/lib/monoandroid90/Xamarin.AndroidX.Legacy.Support.V4.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.androidx.lifecycle.common/2.2.0.4/lib/monoandroid90/Xamarin.AndroidX.Lifecycle.Common.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.androidx.lifecycle.livedata.core/2.2.0.4/lib/monoandroid90/Xamarin.AndroidX.Lifecycle.LiveData.Core.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.androidx.lifecycle.livedata/2.2.0.4/lib/monoandroid90/Xamarin.AndroidX.Lifecycle.LiveData.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.androidx.lifecycle.runtime/2.2.0.4/lib/monoandroid90/Xamarin.AndroidX.Lifecycle.Runtime.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.androidx.lifecycle.viewmodel/2.2.0.4/lib/monoandroid90/Xamarin.AndroidX.Lifecycle.ViewModel.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.androidx.lifecycle.viewmodelsavedstate/2.2.0.4/lib/monoandroid90/Xamarin.AndroidX.Lifecycle.ViewModelSavedState.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.androidx.loader/1.1.0.6/lib/monoandroid90/Xamarin.AndroidX.Loader.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.androidx.localbroadcastmanager/1.0.0.6/lib/monoandroid90/Xamarin.AndroidX.LocalBroadcastManager.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.androidx.media/1.2.1.1/lib/monoandroid90/Xamarin.AndroidX.Media.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.androidx.multidex/2.0.1.5/lib/monoandroid90/Xamarin.AndroidX.MultiDex.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.androidx.print/1.0.0.6/lib/monoandroid90/Xamarin.AndroidX.Print.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.androidx.recyclerview/1.1.0.5/lib/monoandroid90/Xamarin.AndroidX.RecyclerView.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.androidx.savedstate/1.1.0.4-alpha01/lib/monoandroid90/Xamarin.AndroidX.SavedState.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.androidx.slidingpanelayout/1.1.0.1/lib/monoandroid90/Xamarin.AndroidX.SlidingPaneLayout.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.androidx.swiperefreshlayout/1.1.0.1/lib/monoandroid90/Xamarin.AndroidX.SwipeRefreshLayout.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.androidx.transition/1.3.1.5/lib/monoandroid90/Xamarin.AndroidX.Transition.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.androidx.vectordrawable.animated/1.1.0.5/lib/monoandroid90/Xamarin.AndroidX.VectorDrawable.Animated.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.androidx.vectordrawable/1.1.0.5/lib/monoandroid90/Xamarin.AndroidX.VectorDrawable.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.androidx.versionedparcelable/1.1.1.6/lib/monoandroid90/Xamarin.AndroidX.VersionedParcelable.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.androidx.viewpager/1.0.0.6/lib/monoandroid90/Xamarin.AndroidX.ViewPager.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.androidx.viewpager2/1.0.0.7/lib/monoandroid90/Xamarin.AndroidX.ViewPager2.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.essentials/1.6.0/lib/monoandroid10.0/Xamarin.Essentials.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.facebook.android/7.1.0/lib/monoandroid90/Xamarin.Facebook.Android.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.facebook.applinks.android/7.1.0/lib/monoandroid90/Xamarin.Facebook.AppLinks.Android.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.facebook.common.android/7.1.0/lib/monoandroid90/Xamarin.Facebook.Common.Android.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.facebook.core.android/7.1.0/lib/monoandroid90/Xamarin.Facebook.Core.Android.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.facebook.login.android/7.1.0/lib/monoandroid90/Xamarin.Facebook.Login.Android.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.facebook.messenger.android/7.1.0/lib/monoandroid90/Xamarin.Facebook.Messenger.Android.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.facebook.places.android/7.1.0/lib/monoandroid90/Xamarin.Facebook.Places.Android.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.facebook.share.android/7.1.0/lib/monoandroid90/Xamarin.Facebook.Share.Android.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.firebase.abt/120.0.0/lib/monoandroid90/Xamarin.Firebase.Abt.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.firebase.analytics/118.0.0/lib/monoandroid90/Xamarin.Firebase.Analytics.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.firebase.annotations/116.0.0/lib/monoandroid90/Xamarin.Firebase.Annotations.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.firebase.auth/120.0.1/lib/monoandroid90/Xamarin.Firebase.Auth.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.firebase.auth.interop/119.0.1/lib/monoandroid90/Xamarin.Firebase.Auth.Interop.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.firebase.common/119.5.0/lib/monoandroid90/Xamarin.Firebase.Common.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.firebase.components/116.1.0/lib/monoandroid90/Xamarin.Firebase.Components.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.firebase.config/120.0.2/lib/monoandroid90/Xamarin.Firebase.Config.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.firebase.database.collection/117.0.1/lib/monoandroid90/Xamarin.Firebase.Database.Collection.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.firebase.datatransport/117.0.10/lib/monoandroid90/Xamarin.Firebase.Datatransport.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.firebase.dynamic.links/119.1.1/lib/monoandroid90/Xamarin.Firebase.Dynamic.Links.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.firebase.encoders/116.1.0/lib/monoandroid90/Xamarin.Firebase.Encoders.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.firebase.encoders.json/117.1.0/lib/monoandroid90/Xamarin.Firebase.Encoders.JSON.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.firebase.firestore/122.0.1/lib/monoandroid90/Xamarin.Firebase.Firestore.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.firebase.functions/119.2.0/lib/monoandroid90/Xamarin.Firebase.Functions.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.firebase.iid/121.0.1/lib/monoandroid90/Xamarin.Firebase.Iid.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.firebase.iid.interop/117.0.0/lib/monoandroid90/Xamarin.Firebase.Iid.Interop.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.firebase.installations/116.3.5/lib/monoandroid90/Xamarin.Firebase.Installations.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.firebase.installations.interop/116.0.1/lib/monoandroid90/Xamarin.Firebase.Installations.InterOp.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.firebase.measurement.connector/118.0.1/lib/monoandroid90/Xamarin.Firebase.Measurement.Connector.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.firebase.messaging/121.0.1/lib/monoandroid90/Xamarin.Firebase.Messaging.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.firebase.protolitewellknowntypes/117.1.1/lib/monoandroid90/Xamarin.Firebase.ProtoliteWellKnownTypes.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.firebase.storage.common/117.0.0/lib/monoandroid90/Xamarin.Firebase.Storage.Common.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.firebase.storage/119.2.1/lib/monoandroid90/Xamarin.Firebase.Storage.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.forms/5.0.0.1874/lib/MonoAndroid10.0/Xamarin.Forms.Core.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.forms/5.0.0.1874/lib/MonoAndroid10.0/Xamarin.Forms.Platform.Android.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.forms/5.0.0.1874/lib/MonoAndroid10.0/Xamarin.Forms.Platform.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.forms/5.0.0.1874/lib/MonoAndroid10.0/Xamarin.Forms.Xaml.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.google.android.datatransport.transportapi/2.2.1/lib/monoandroid90/Xamarin.Google.Android.DataTransport.TransportApi.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.google.android.datatransport.transportbackendcct/2.3.3/lib/monoandroid90/Xamarin.Google.Android.DataTransport.TransportBackendCct.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.google.android.datatransport.transportruntime/2.2.5/lib/monoandroid90/Xamarin.Google.Android.DataTransport.TransportRuntime.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.google.android.material/1.1.0.5/lib/monoandroid90/Xamarin.Google.Android.Material.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.google.dagger/2.27.0/lib/monoandroid90/Xamarin.Google.Dagger.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.google.guava/27.1.0/lib/monoandroid50/Xamarin.Google.Guava.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.google.guava.failureaccess/1.0.1/lib/monoandroid50/Xamarin.Google.Guava.FailureAccess.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.google.guava.listenablefuture/1.0.0.2/lib/monoandroid50/Xamarin.Google.Guava.ListenableFuture.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.googleplayservices.ads.identifier/117.0.0/lib/monoandroid90/Xamarin.GooglePlayServices.Ads.Identifier.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.googleplayservices.auth.api.phone/117.5.0/lib/monoandroid90/Xamarin.GooglePlayServices.Auth.Api.Phone.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.googleplayservices.auth.base/117.1.2/lib/monoandroid90/Xamarin.GooglePlayServices.Auth.Base.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.googleplayservices.auth/119.0.0/lib/monoandroid90/Xamarin.GooglePlayServices.Auth.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.googleplayservices.base/117.5.0/lib/monoandroid90/Xamarin.GooglePlayServices.Base.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.googleplayservices.basement/117.5.0/lib/monoandroid90/Xamarin.GooglePlayServices.Basement.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.googleplayservices.cloudmessaging/116.0.0/lib/monoandroid90/Xamarin.GooglePlayServices.CloudMessaging.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.googleplayservices.measurement.api/118.0.0/lib/monoandroid90/Xamarin.GooglePlayServices.Measurement.Api.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.googleplayservices.measurement.base/118.0.0/lib/monoandroid90/Xamarin.GooglePlayServices.Measurement.Base.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.googleplayservices.measurement/118.0.0/lib/monoandroid90/Xamarin.GooglePlayServices.Measurement.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.googleplayservices.measurement.impl/118.0.0/lib/monoandroid90/Xamarin.GooglePlayServices.Measurement.Impl.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.googleplayservices.measurement.sdk.api/118.0.0/lib/monoandroid90/Xamarin.GooglePlayServices.Measurement.Sdk.Api.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.googleplayservices.measurement.sdk/118.0.0/lib/monoandroid90/Xamarin.GooglePlayServices.Measurement.Sdk.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.googleplayservices.safetynet/117.0.0/lib/monoandroid90/Xamarin.GooglePlayServices.SafetyNet.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.googleplayservices.stats/117.0.0/lib/monoandroid90/Xamarin.GooglePlayServices.Stats.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.googleplayservices.tasks/117.2.0/lib/monoandroid90/Xamarin.GooglePlayServices.Tasks.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.grpc.android/1.28.0/lib/monoandroid81/Xamarin.Grpc.Android.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.grpc.api/1.28.0/lib/monoandroid81/Xamarin.Grpc.Api.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.grpc.context/1.28.0/lib/monoandroid81/Xamarin.Grpc.Context.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.grpc.core/1.28.0/lib/monoandroid81/Xamarin.Grpc.Core.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.grpc.okhttp/1.28.0/lib/monoandroid81/Xamarin.Grpc.OkHttp.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.grpc.protobuf.lite/1.28.0/lib/monoandroid81/Xamarin.Grpc.Protobuf.Lite.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.grpc.stub/1.28.0/lib/monoandroid81/Xamarin.Grpc.Stub.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.io.opencensus.opencensusapi/0.21.0/lib/monoandroid81/Xamarin.Io.OpenCensus.OpenCensusApi.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.io.opencensus.opencensuscontribgrpcmetrics/0.21.0/lib/monoandroid81/Xamarin.Io.OpenCensus.OpenCensusContribGrpcMetrics.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.io.perfmark.perfmarkapi/0.19.0/lib/monoandroid81/Xamarin.Io.PerfMark.PerfMarkApi.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.javax.inject/1.0.0/lib/monoandroid90/Xamarin.JavaX.Inject.dll /reference:/Users/hiteshmalhotra/.nuget/packages/xamarin.protobuf.javalite/3.14.0/lib/monoandroid90/Xamarin.Protobuf.JavaLite.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/Microsoft.Win32.Primitives.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/Microsoft.Win32.Registry.AccessControl.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/Microsoft.Win32.Registry.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/netstandard.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.AppContext.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Buffers.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Collections.Concurrent.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Collections.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Collections.NonGeneric.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Collections.Specialized.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.ComponentModel.Annotations.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.ComponentModel.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.ComponentModel.EventBasedAsync.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.ComponentModel.Primitives.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.ComponentModel.TypeConverter.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Console.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Data.Common.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Data.SqlClient.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Diagnostics.Contracts.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Diagnostics.Debug.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Diagnostics.FileVersionInfo.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Diagnostics.Process.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Diagnostics.StackTrace.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Diagnostics.TextWriterTraceListener.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Diagnostics.Tools.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Diagnostics.TraceEvent.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Diagnostics.TraceSource.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Diagnostics.Tracing.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Drawing.Common.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Drawing.Primitives.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Dynamic.Runtime.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Globalization.Calendars.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Globalization.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Globalization.Extensions.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.IO.Compression.ZipFile.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.IO.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.IO.FileSystem.AccessControl.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.IO.FileSystem.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.IO.FileSystem.DriveInfo.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.IO.FileSystem.Primitives.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.IO.FileSystem.Watcher.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.IO.IsolatedStorage.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.IO.MemoryMappedFiles.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.IO.Pipes.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.IO.UnmanagedMemoryStream.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Linq.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Linq.Expressions.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Linq.Parallel.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Linq.Queryable.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Memory.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Net.AuthenticationManager.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Net.Cache.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Net.HttpListener.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Net.Mail.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Net.NameResolution.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Net.NetworkInformation.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Net.Ping.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Net.Primitives.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Net.Requests.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Net.Security.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Net.ServicePoint.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Net.Sockets.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Net.Utilities.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Net.WebHeaderCollection.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Net.WebSockets.Client.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Net.WebSockets.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.ObjectModel.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Reflection.DispatchProxy.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Reflection.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Reflection.Emit.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Reflection.Emit.ILGeneration.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Reflection.Emit.Lightweight.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Reflection.Extensions.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Reflection.Primitives.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Reflection.TypeExtensions.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Resources.Reader.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Resources.ReaderWriter.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Resources.ResourceManager.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Resources.Writer.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Runtime.CompilerServices.VisualC.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Runtime.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Runtime.Extensions.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Runtime.Handles.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Runtime.InteropServices.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Runtime.InteropServices.RuntimeInformation.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Runtime.InteropServices.WindowsRuntime.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Runtime.Loader.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Runtime.Numerics.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Runtime.Serialization.Formatters.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Runtime.Serialization.Json.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Runtime.Serialization.Primitives.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Runtime.Serialization.Xml.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Security.AccessControl.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Security.Claims.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Security.Cryptography.Algorithms.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Security.Cryptography.Cng.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Security.Cryptography.Csp.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Security.Cryptography.DeriveBytes.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Security.Cryptography.Encoding.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Security.Cryptography.Encryption.Aes.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Security.Cryptography.Encryption.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Security.Cryptography.Encryption.ECDiffieHellman.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Security.Cryptography.Encryption.ECDsa.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Security.Cryptography.Hashing.Algorithms.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Security.Cryptography.Hashing.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Security.Cryptography.OpenSsl.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Security.Cryptography.Pkcs.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Security.Cryptography.Primitives.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Security.Cryptography.ProtectedData.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Security.Cryptography.RandomNumberGenerator.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Security.Cryptography.RSA.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Security.Cryptography.X509Certificates.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Security.Principal.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Security.Principal.Windows.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Security.SecureString.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.ServiceModel.Duplex.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.ServiceModel.Http.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.ServiceModel.NetTcp.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.ServiceModel.Primitives.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.ServiceModel.Security.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.ServiceProcess.ServiceController.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Text.Encoding.CodePages.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Text.Encoding.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Text.Encoding.Extensions.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Text.RegularExpressions.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Threading.AccessControl.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Threading.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Threading.Overlapped.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Threading.Tasks.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Threading.Tasks.Extensions.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Threading.Tasks.Parallel.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Threading.Thread.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Threading.ThreadPool.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Threading.Timer.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.ValueTuple.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Xml.ReaderWriter.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Xml.XDocument.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Xml.XmlDocument.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Xml.XmlSerializer.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Xml.XPath.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Xml.XPath.XDocument.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Xml.XPath.XmlDocument.dll /reference:/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v1.0/Facades/System.Xml.Xsl.Primitives.dll /debug+ /debug:portable /optimize- /out:obj/Debug/Diksha.Android.dll /target:library /utf8output /deterministic+ /langversion:8.0 MainActivity.cs Resources/Resource.designer.cs Properties/AssemblyInfo.cs "obj/Debug/MonoAndroid,Version=v11.0.AssemblyAttributes.cs"
Using shared compilation with compiler from directory: /Applications/Visual Studio.app/Contents/Resources/lib/monodevelop/bin/MSBuild/Current/bin/Roslyn
Target _CopyFilesMarkedCopyLocal:
Copying file from "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha/bin/Debug/netstandard2.0/Diksha.pdb" to "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.Android/bin/Debug/Diksha.pdb".
Copying file from "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha/bin/Debug/netstandard2.0/Diksha.dll" to "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.Android/bin/Debug/Diksha.dll".
Creating "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.Android/obj/Debug/Diksha.Android.csproj.CopyComplete" because "AlwaysCreate" was specified.
Target GetCopyToOutputDirectoryItems:
Target _GetCopyToOutputDirectoryItemsFromTransitiveProjectReferences:
__________________________________________________
Project "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.Android/Diksha.Android.csproj" is building "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha/Diksha.csproj" (GetCopyToOutputDirectoryItems target(s)):

Target CopyFilesToOutputDirectory:
Copying file from "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.Android/obj/Debug/Diksha.Android.dll" to "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.Android/bin/Debug/Diksha.Android.dll".
Diksha.Android -> /Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.Android/bin/Debug/Diksha.Android.dll
Copying file from "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.Android/obj/Debug/Diksha.Android.pdb" to "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.Android/bin/Debug/Diksha.Android.pdb".
Target _ResolveAssemblies:
Adding assembly reference for Diksha.Android, recursively...
Adding assembly reference for System.Net.Http, recursively...
Adding assembly reference for System.Runtime.Serialization, recursively...
Adding assembly reference for System.ServiceModel.Internals, recursively...
Adding assembly reference for Bolts.AppLinks, recursively...
Adding assembly reference for Bolts.Tasks, recursively...
Adding assembly reference for Diksha, recursively...
Adding assembly reference for netstandard, recursively...
Adding assembly reference for System.Data, recursively...
Adding assembly reference for System.Transactions, recursively...
Adding assembly reference for System.Data.DataSetExtensions, recursively...
Adding assembly reference for System.Drawing.Common, recursively...
Adding assembly reference for System.IO.Compression, recursively...
Adding assembly reference for System.IO.Compression.FileSystem, recursively...
Adding assembly reference for System.ComponentModel.Composition, recursively...
Adding assembly reference for System.Web.Services, recursively...
Adding assembly reference for FormsViewGroup, recursively...
Adding assembly reference for Google.ZXing.Core, recursively...
Adding assembly reference for GoogleGson, recursively...
Adding assembly reference for Java.Interop, recursively...
Adding assembly reference for Microsoft.CSharp, recursively...
Adding assembly reference for Mono.Android, recursively...
Adding assembly reference for mscorlib, recursively...
Adding assembly reference for Newtonsoft.Json, recursively...
Adding assembly reference for Plugin.CurrentActivity, recursively...
Adding assembly reference for Plugin.Firebase, recursively...
Adding assembly reference for Square.OkHttp, recursively...
Adding assembly reference for Square.OkHttp3, recursively...
Adding assembly reference for Square.OkIO, recursively...
Adding assembly reference for System.Core, recursively...
Adding assembly reference for System, recursively...
Adding assembly reference for Mono.Security, recursively...
Adding assembly reference for System.Json, recursively...
Adding assembly reference for System.Numerics, recursively...
Adding assembly reference for System.Numerics.Vectors, recursively...
Adding assembly reference for System.Runtime, recursively...
Adding assembly reference for System.Xml, recursively...
Adding assembly reference for System.Xml.Linq, recursively...
Adding assembly reference for Xamarin.AndroidX.Activity, recursively...
Adding assembly reference for Xamarin.AndroidX.Annotation, recursively...
Adding assembly reference for Xamarin.AndroidX.AppCompat.AppCompatResources, recursively...
Adding assembly reference for Xamarin.AndroidX.AppCompat, recursively...
Adding assembly reference for Xamarin.AndroidX.Arch.Core.Common, recursively...
Adding assembly reference for Xamarin.AndroidX.Arch.Core.Runtime, recursively...
Adding assembly reference for Xamarin.AndroidX.AsyncLayoutInflater, recursively...
Adding assembly reference for Xamarin.AndroidX.Browser, recursively...
Adding assembly reference for Xamarin.AndroidX.CardView, recursively...
Adding assembly reference for Xamarin.AndroidX.Collection, recursively...
Adding assembly reference for Xamarin.AndroidX.CoordinatorLayout, recursively...
Adding assembly reference for Xamarin.AndroidX.Core, recursively...
Adding assembly reference for Xamarin.AndroidX.CursorAdapter, recursively...
Adding assembly reference for Xamarin.AndroidX.CustomView, recursively...
Adding assembly reference for Xamarin.AndroidX.DocumentFile, recursively...
Adding assembly reference for Xamarin.AndroidX.DrawerLayout, recursively...
Adding assembly reference for Xamarin.AndroidX.Fragment, recursively...
Adding assembly reference for Xamarin.AndroidX.Interpolator, recursively...
Adding assembly reference for Xamarin.AndroidX.Legacy.Support.Core.UI, recursively...
Adding assembly reference for Xamarin.AndroidX.Legacy.Support.Core.Utils, recursively...
Adding assembly reference for Xamarin.AndroidX.Legacy.Support.V4, recursively...
Adding assembly reference for Xamarin.AndroidX.Lifecycle.Common, recursively...
Adding assembly reference for Xamarin.AndroidX.Lifecycle.LiveData.Core, recursively...
Adding assembly reference for Xamarin.AndroidX.Lifecycle.LiveData, recursively...
Adding assembly reference for Xamarin.AndroidX.Lifecycle.Runtime, recursively...
Adding assembly reference for Xamarin.AndroidX.Lifecycle.ViewModel, recursively...
Adding assembly reference for Xamarin.AndroidX.Lifecycle.ViewModelSavedState, recursively...
Adding assembly reference for Xamarin.AndroidX.Loader, recursively...
Adding assembly reference for Xamarin.AndroidX.LocalBroadcastManager, recursively...
Adding assembly reference for Xamarin.AndroidX.Media, recursively...
Adding assembly reference for Xamarin.AndroidX.MultiDex, recursively...
Adding assembly reference for Xamarin.AndroidX.Print, recursively...
Adding assembly reference for Xamarin.AndroidX.RecyclerView, recursively...
Adding assembly reference for Xamarin.AndroidX.SavedState, recursively...
Adding assembly reference for Xamarin.AndroidX.SlidingPaneLayout, recursively...
Adding assembly reference for Xamarin.AndroidX.SwipeRefreshLayout, recursively...
Adding assembly reference for Xamarin.AndroidX.Transition, recursively...
Adding assembly reference for Xamarin.AndroidX.VectorDrawable.Animated, recursively...
Adding assembly reference for Xamarin.AndroidX.VectorDrawable, recursively...
Adding assembly reference for Xamarin.AndroidX.VersionedParcelable, recursively...
Adding assembly reference for Xamarin.AndroidX.ViewPager, recursively...
Adding assembly reference for Xamarin.AndroidX.ViewPager2, recursively...
Adding assembly reference for Xamarin.Essentials, recursively...
Adding assembly reference for Xamarin.Facebook.Android, recursively...
Adding assembly reference for Xamarin.Facebook.AppLinks.Android, recursively...
Adding assembly reference for Xamarin.Facebook.Common.Android, recursively...
Adding assembly reference for Xamarin.Facebook.Core.Android, recursively...
Adding assembly reference for Xamarin.Facebook.Login.Android, recursively...
Adding assembly reference for Xamarin.Facebook.Messenger.Android, recursively...
Adding assembly reference for Xamarin.Facebook.Places.Android, recursively...
Adding assembly reference for Xamarin.Facebook.Share.Android, recursively...
Adding assembly reference for Xamarin.Firebase.Abt, recursively...
Adding assembly reference for Xamarin.Firebase.Analytics, recursively...
Adding assembly reference for Xamarin.Firebase.Annotations, recursively...
Adding assembly reference for Xamarin.Firebase.Auth, recursively...
Adding assembly reference for Xamarin.Firebase.Auth.Interop, recursively...
Adding assembly reference for Xamarin.Firebase.Common, recursively...
Adding assembly reference for Xamarin.Firebase.Components, recursively...
Adding assembly reference for Xamarin.Firebase.Config, recursively...
Adding assembly reference for Xamarin.Firebase.Database.Collection, recursively...
Adding assembly reference for Xamarin.Firebase.Datatransport, recursively...
Adding assembly reference for Xamarin.Firebase.Dynamic.Links, recursively...
Adding assembly reference for Xamarin.Firebase.Encoders, recursively...
Adding assembly reference for Xamarin.Firebase.Encoders.JSON, recursively...
Adding assembly reference for Xamarin.Firebase.Firestore, recursively...
Adding assembly reference for Xamarin.Firebase.Functions, recursively...
Adding assembly reference for Xamarin.Firebase.Iid, recursively...
Adding assembly reference for Xamarin.Firebase.Iid.Interop, recursively...
Adding assembly reference for Xamarin.Firebase.Installations, recursively...
Adding assembly reference for Xamarin.Firebase.Installations.InterOp, recursively...
Adding assembly reference for Xamarin.Firebase.Measurement.Connector, recursively...
Adding assembly reference for Xamarin.Firebase.Messaging, recursively...
Adding assembly reference for Xamarin.Firebase.ProtoliteWellKnownTypes, recursively...
Adding assembly reference for Xamarin.Firebase.Storage.Common, recursively...
Adding assembly reference for Xamarin.Firebase.Storage, recursively...
Adding assembly reference for Xamarin.Forms.Core, recursively...
Adding assembly reference for Xamarin.Forms.Platform.Android, recursively...
Adding assembly reference for Xamarin.Forms.Platform, recursively...
Adding assembly reference for Xamarin.Forms.Xaml, recursively...
Adding assembly reference for Xamarin.Google.Android.DataTransport.TransportApi, recursively...
Adding assembly reference for Xamarin.Google.Android.DataTransport.TransportBackendCct, recursively...
Adding assembly reference for Xamarin.Google.Android.DataTransport.TransportRuntime, recursively...
Adding assembly reference for Xamarin.Google.Android.Material, recursively...
Adding assembly reference for Xamarin.Google.Dagger, recursively...
Adding assembly reference for Xamarin.Google.Guava, recursively...
Adding assembly reference for Xamarin.Google.Guava.FailureAccess, recursively...
Adding assembly reference for Xamarin.Google.Guava.ListenableFuture, recursively...
Adding assembly reference for Xamarin.GooglePlayServices.Ads.Identifier, recursively...
Adding assembly reference for Xamarin.GooglePlayServices.Auth.Api.Phone, recursively...
Adding assembly reference for Xamarin.GooglePlayServices.Auth.Base, recursively...
Adding assembly reference for Xamarin.GooglePlayServices.Auth, recursively...
Adding assembly reference for Xamarin.GooglePlayServices.Base, recursively...
Adding assembly reference for Xamarin.GooglePlayServices.Basement, recursively...
Adding assembly reference for Xamarin.GooglePlayServices.CloudMessaging, recursively...
Adding assembly reference for Xamarin.GooglePlayServices.Measurement.Api, recursively...
Adding assembly reference for Xamarin.GooglePlayServices.Measurement.Base, recursively...
Adding assembly reference for Xamarin.GooglePlayServices.Measurement, recursively...
Adding assembly reference for Xamarin.GooglePlayServices.Measurement.Impl, recursively...
Adding assembly reference for Xamarin.GooglePlayServices.Measurement.Sdk.Api, recursively...
Adding assembly reference for Xamarin.GooglePlayServices.Measurement.Sdk, recursively...
Adding assembly reference for Xamarin.GooglePlayServices.SafetyNet, recursively...
Adding assembly reference for Xamarin.GooglePlayServices.Stats, recursively...
Adding assembly reference for Xamarin.GooglePlayServices.Tasks, recursively...
Adding assembly reference for Xamarin.Grpc.Android, recursively...
Adding assembly reference for Xamarin.Grpc.Api, recursively...
Adding assembly reference for Xamarin.Grpc.Context, recursively...
Adding assembly reference for Xamarin.Grpc.Core, recursively...
Adding assembly reference for Xamarin.Grpc.OkHttp, recursively...
Adding assembly reference for Xamarin.Grpc.Protobuf.Lite, recursively...
Adding assembly reference for Xamarin.Grpc.Stub, recursively...
Adding assembly reference for Xamarin.Io.OpenCensus.OpenCensusApi, recursively...
Adding assembly reference for Xamarin.Io.OpenCensus.OpenCensusContribGrpcMetrics, recursively...
Adding assembly reference for Xamarin.Io.PerfMark.PerfMarkApi, recursively...
Adding assembly reference for Xamarin.JavaX.Inject, recursively...
Adding assembly reference for Xamarin.Protobuf.JavaLite, recursively...
Target _CreatePackageWorkspace:
Creating directory "obj/Debug/android/assets/".
Target _CopyConfigFiles:
Skipping target "_CopyConfigFiles" because it has no inputs.
Target _ConvertPdbFiles:
Skipping target "_ConvertPdbFiles" because it has no outputs.
Target _GenerateJavaStubs:
Creating "obj/Debug/stamp/_GenerateJavaStubs.stamp" because "AlwaysCreate" was specified.
Target _ManifestMerger:
/Users/hiteshmalhotra/Library/Developer/Xamarin/jdk/microsoft_dist_openjdk_1.8.0.25/bin/java -cp /Library/Frameworks/Xamarin.Android.framework/Libraries/xbuild/Xamarin/Android/manifestmerger.jar com.xamarin.manifestmerger.Main obj/Debug/android/manifestmerger.rsp
Target _ConvertCustomView:
Creating "obj/Debug/stamp/_ConvertCustomView.stamp" because "AlwaysCreate" was specified.
Target _AddStaticResources:
Creating directory "obj/Debug/android/bin".
Copying file from "/Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v11.0/mono.android.jar" to "/Users/hiteshmalhotra/Documents/Visual Studio/Diksha/Diksha.Android/obj/Debug/android/bin/mono.android.jar".
Touching "obj/Debug/android/bin/mono.android.jar".
Creating "obj/Debug/static.flag" because "AlwaysCreate" was specified.
Target _GeneratePackageManagerJava:
Creating "obj/Debug/stamp/_GeneratePackageManagerJava.stamp" because "AlwaysCreate" was specified.
Target _FixupCustomViewsForAapt2:
Touching "obj/Debug/R.cs.flag".
Target _GenerateAndroidAssetsDir:
Skipping target "_GenerateAndroidAssetsDir" because it has no outputs.
Target _CreateBaseApk:
Touching "obj/Debug/android/bin/packaged_resources".
Target _CompileJava:
/Users/hiteshmalhotra/Library/Developer/Xamarin/jdk/microsoft_dist_openjdk_1.8.0.25/bin/javac -J-Dfile.encoding=UTF8 "@/var/folders/wr/6wc59d8900l4cgq4tb300hpc0000gq/T/tmp284de73c.tmp" -target 1.8 -source 1.8
Note: Some input files use or override a deprecated API.
Note: Recompile with -Xlint:deprecation for details.
Note: Some input files use unchecked or unsafe operations.
Note: Recompile with -Xlint:unchecked for details.
Creating "obj/Debug/_javac.stamp" because "AlwaysCreate" was specified.
Target _CompileToDalvik:
/Users/hiteshmalhotra/Library/Developer/Xamarin/jdk/microsoft_dist_openjdk_1.8.0.25/bin/java -Xmx1G -classpath /Library/Frameworks/Xamarin.Android.framework/Libraries/xbuild/Xamarin/Android/r8.jar com.android.tools.r8.D8 --debug --min-api 23 --output obj/Debug/android/bin/ --lib /Users/hiteshmalhotra/Library/Android/sdk/platforms/android-30/android.jar --lib /Users/hiteshmalhotra/Library/Android/sdk/platforms/android-30/optional/org.apache.http.legacy.jar obj/Debug/android/bin/classes.zip /Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v11.0/mono.android.jar /Library/Frameworks/Mono.framework/External/xbuild/Xamarin/Android/java_runtime.jar /Users/hiteshmalhotra/.nuget/packages/xamarin.androidx.annotation/1.1.0.8/buildTransitive/monoandroid90/../../jar/androidx.annotation.annotation.jar /Users/hiteshmalhotra/.nuget/packages/xamarin.androidx.collection/1.1.0.6/buildTransitive/monoandroid90/../../jar/androidx.collection.collection.jar /Users/hiteshmalhotra/.nuget/packages/xamarin.androidx.lifecycle.common/2.2.0.4/buildTransitive/monoandroid90/../../jar/androidx.lifecycle.lifecycle-common.jar /Users/hiteshmalhotra/.nuget/packages/xamarin.androidx.arch.core.common/2.1.0.7/buildTransitive/monoandroid90/../../jar/androidx.arch.core.core-common.jar /Users/hiteshmalhotra/.nuget/packages/xamarin.google.guava.listenablefuture/1.0.0.2/buildTransitive/monoandroid50/guava-listenablefuture.jar obj/Debug/lp/135/jl/classes.jar obj/Debug/lp/132/jl/classes.jar obj/Debug/lp/92/jl/__reference__guava.jar obj/Debug/lp/157/jl/classes.jar obj/Debug/lp/150/jl/classes.jar obj/Debug/lp/133/jl/classes.jar obj/Debug/lp/93/jl/guava-failureaccess.jar obj/Debug/lp/134/jl/classes.jar obj/Debug/lp/160/jl/classes.jar obj/Debug/lp/158/jl/classes.jar obj/Debug/lp/151/jl/classes.jar obj/Debug/lp/156/jl/classes.jar obj/Debug/lp/9/jl/okio.jar obj/Debug/lp/145/jl/classes.jar obj/Debug/lp/142/jl/classes.jar obj/Debug/lp/7/jl/okhttp.jar obj/Debug/lp/129/jl/classes.jar obj/Debug/lp/116/jl/grpc-protobuf-lite-1.28.0.jar obj/Debug/lp/118/jl/opencensus-api-0.21.0.jar obj/Debug/lp/127/jl/classes.jar obj/Debug/lp/120/jl/opencensus-api-0.19.0.jar obj/Debug/lp/143/jl/classes.jar obj/Debug/lp/144/jl/classes.jar obj/Debug/lp/1/jl/bolts-tasks.jar obj/Debug/lp/8/jl/okhttp3.jar obj/Debug/lp/121/jl/javax-inject.jar obj/Debug/lp/119/jl/opencensus-contrib-grpc-metrics-0.21.0.jar obj/Debug/lp/72/jl/firebase-encoders.jar obj/Debug/lp/126/jl/classes.jar obj/Debug/lp/128/jl/classes.jar obj/Debug/lp/117/jl/grpc-stub-1.28.0.jar obj/Debug/lp/153/jl/classes.jar obj/Debug/lp/154/jl/classes.jar obj/Debug/lp/131/jl/classes.jar obj/Debug/lp/91/jl/dagger.jar obj/Debug/lp/136/jl/classes.jar obj/Debug/lp/138/jl/classes.jar obj/Debug/lp/155/jl/classes.jar obj/Debug/lp/152/jl/classes.jar obj/Debug/lp/139/jl/classes.jar obj/Debug/lp/137/jl/classes.jar obj/Debug/lp/63/jl/firebase-annotations.jar obj/Debug/lp/130/jl/classes.jar obj/Debug/lp/112/jl/grpc-api-1.28.0.jar obj/Debug/lp/115/jl/grpc-okhttp-1.28.0.jar obj/Debug/lp/123/jl/classes.jar obj/Debug/lp/124/jl/classes.jar obj/Debug/lp/148/jl/classes.jar obj/Debug/lp/141/jl/classes.jar obj/Debug/lp/4/jl/gson.jar obj/Debug/lp/3/jl/zxing.core.jar obj/Debug/lp/146/jl/classes.jar obj/Debug/lp/125/jl/classes.jar obj/Debug/lp/122/jl/protobuf-javalite.jar obj/Debug/lp/114/jl/grpc-core-1.28.0.jar obj/Debug/lp/113/jl/grpc-context-1.28.0.jar obj/Debug/lp/147/jl/classes.jar obj/Debug/lp/2/jl/formsviewgroup.jar obj/Debug/lp/140/jl/classes.jar obj/Debug/lp/149/jl/classes.jar obj/Debug/lp/61/jl/bin/classes.jar obj/Debug/lp/95/jl/bin/classes.jar obj/Debug/lp/59/jl/bin/classes.jar obj/Debug/lp/66/jl/bin/classes.jar obj/Debug/lp/104/jl/bin/classes.jar obj/Debug/lp/68/jl/bin/classes.jar obj/Debug/lp/103/jl/bin/classes.jar obj/Debug/lp/57/jl/bin/classes.jar obj/Debug/lp/102/jl/bin/classes.jar obj/Debug/lp/69/jl/bin/classes.jar obj/Debug/lp/56/jl/bin/classes.jar obj/Debug/lp/105/jl/bin/classes.jar obj/Debug/lp/58/jl/bin/classes.jar obj/Debug/lp/67/jl/bin/classes.jar obj/Debug/lp/60/jl/bin/classes.jar obj/Debug/lp/0/jl/bin/classes.jar obj/Debug/lp/89/jl/bin/classes.jar obj/Debug/lp/111/jl/bin/classes.jar obj/Debug/lp/73/jl/bin/classes.jar obj/Debug/lp/87/jl/bin/classes.jar obj/Debug/lp/80/jl/bin/classes.jar obj/Debug/lp/74/jl/bin/classes.jar obj/Debug/lp/75/jl/bin/classes.jar obj/Debug/lp/81/jl/bin/classes.jar obj/Debug/lp/110/jl/bin/classes.jar obj/Debug/lp/88/jl/bin/classes.jar obj/Debug/lp/65/jl/bin/classes.jar obj/Debug/lp/96/jl/bin/classes.jar obj/Debug/lp/109/jl/bin/classes.jar obj/Debug/lp/100/jl/bin/classes.jar obj/Debug/lp/54/jl/bin/classes.jar obj/Debug/lp/107/jl/bin/classes.jar obj/Debug/lp/98/jl/bin/classes.jar obj/Debug/lp/53/jl/bin/classes.jar obj/Debug/lp/106/jl/bin/classes.jar obj/Debug/lp/99/jl/bin/classes.jar obj/Debug/lp/101/jl/bin/classes.jar obj/Debug/lp/55/jl/bin/classes.jar obj/Debug/lp/97/jl/bin/classes.jar obj/Debug/lp/108/jl/bin/classes.jar obj/Debug/lp/64/jl/bin/classes.jar obj/Debug/lp/79/jl/bin/classes.jar obj/Debug/lp/83/jl/bin/classes.jar obj/Debug/lp/77/jl/bin/classes.jar obj/Debug/lp/70/jl/bin/classes.jar obj/Debug/lp/84/jl/bin/classes.jar obj/Debug/lp/71/jl/bin/classes.jar obj/Debug/lp/76/jl/bin/classes.jar obj/Debug/lp/82/jl/bin/classes.jar obj/Debug/lp/78/jl/bin/classes.jar
Error in /Users/hiteshmalhotra/.nuget/packages/xamarin.google.guava.listenablefuture/1.0.0.2/buildTransitive/monoandroid50/guava-listenablefuture.jar:com/google/common/util/concurrent/ListenableFuture.class:
Type com.google.common.util.concurrent.ListenableFuture is defined multiple times: /Users/hiteshmalhotra/.nuget/packages/xamarin.google.guava.listenablefuture/1.0.0.2/buildTransitive/monoandroid50/guava-listenablefuture.jar:com/google/common/util/concurrent/ListenableFuture.class, obj/Debug/lp/92/jl/__reference__guava.jar:com/google/common/util/concurrent/ListenableFuture.class
Compilation failed
/Library/Frameworks/Mono.framework/External/xbuild/Xamarin/Android/Xamarin.Android.D8.targets(78,5): error MSB6006: "java" exited with code 1.
Done building target "_CompileToDalvik" in project "Diksha.Android.csproj" -- FAILED.

Done building project "Diksha.Android.csproj" -- FAILED.

Build FAILED.

MTOUCH : warning MT5215: References to 'System' might require additional -framework=XXX or -lXXX instructions to the native linker
MTOUCH : warning MT5215: References to 'System' might require additional -framework=XXX or -lXXX instructions to the native linker
MTOUCH : warning MT5215: References to 'System.Net.Security' might require additional -framework=XXX or -lXXX instructions to the native linker
MTOUCH : warning MT5215: References to 'System' might require additional -framework=XXX or -lXXX instructions to the native linker
MTOUCH : warning MT5215: References to 'System' might require additional -framework=XXX or -lXXX instructions to the native linker
MTOUCH : error MT5210: Native linking failed, undefined symbol: _FIRInstallationIDDidChangeNotification. Please verify that all the necessary frameworks have been referenced and native libraries are properly linked in.
MTOUCH : error MT5210: Native linking failed, undefined symbol: _GULIsLoggableLevel. Please verify that all the necessary frameworks have been referenced and native libraries are properly linked in.
MTOUCH : error MT5210: Native linking failed, undefined symbol: _GULLogBasic. Please verify that all the necessary frameworks have been referenced and native libraries are properly linked in.
MTOUCH : error MT5210: Native linking failed, undefined symbol: _GULLogError. Please verify that all the necessary frameworks have been referenced and native libraries are properly linked in.
MTOUCH : error MT5210: Native linking failed, undefined symbol: _GULLogInfo. Please verify that all the necessary frameworks have been referenced and native libraries are properly linked in.
MTOUCH : error MT5210: Native linking failed, undefined symbol: _GULLogWarning. Please verify that all the necessary frameworks have been referenced and native libraries are properly linked in.
MTOUCH : error MT5210: Native linking failed, undefined symbol: _GULSetLoggerLevel. Please verify that all the necessary frameworks have been referenced and native libraries are properly linked in.
MTOUCH : error MT5211: Native linking failed, undefined Objective-C class: FIRApp. The symbol 'OBJC_CLASS$_FIRApp' could not be found in any of the libraries or frameworks linked with your application.
MTOUCH : error MT5211: Native linking failed, undefined Objective-C class: FIRComponent. The symbol 'OBJC_CLASS$_FIRComponent' could not be found in any of the libraries or frameworks linked with your application.
MTOUCH : error MT5211: Native linking failed, undefined Objective-C class: FIRInstallations. The symbol 'OBJC_CLASS$_FIRInstallations' could not be found in any of the libraries or frameworks linked with your application.
MTOUCH : error MT5211: Native linking failed, undefined Objective-C class: FIROptions. The symbol 'OBJC_CLASS$_FIROptions' could not be found in any of the libraries or frameworks linked with your application.
MTOUCH : error MT5211: Native linking failed, undefined Objective-C class: GTMAppAuthFetcherAuthorization. The symbol 'OBJC_CLASS$_GTMAppAuthFetcherAuthorization' could not be found in any of the libraries or frameworks linked with your application.
MTOUCH : error MT5211: Native linking failed, undefined Objective-C class: GTMKeychain. The symbol 'OBJC_CLASS$_GTMKeychain' could not be found in any of the libraries or frameworks linked with your application.
MTOUCH : error MT5211: Native linking failed, undefined Objective-C class: GTMOAuth2KeychainCompatibility. The symbol 'OBJC_CLASS$_GTMOAuth2KeychainCompatibility' could not be found in any of the libraries or frameworks linked with your application.
MTOUCH : error MT5211: Native linking failed, undefined Objective-C class: GTMSessionFetcher. The symbol 'OBJC_CLASS$_GTMSessionFetcher' could not be found in any of the libraries or frameworks linked with your application.
MTOUCH : error MT5211: Native linking failed, undefined Objective-C class: GULAppDelegateSwizzler. The symbol 'OBJC_CLASS$_GULAppDelegateSwizzler' could not be found in any of the libraries or frameworks linked with your application.
MTOUCH : error MT5211: Native linking failed, undefined Objective-C class: GULAppEnvironmentUtil. The symbol 'OBJC_CLASS$_GULAppEnvironmentUtil' could not be found in any of the libraries or frameworks linked with your application.
MTOUCH : error MT5211: Native linking failed, undefined Objective-C class: GULMutableDictionary. The symbol 'OBJC_CLASS$_GULMutableDictionary' could not be found in any of the libraries or frameworks linked with your application.
MTOUCH : error MT5211: Native linking failed, undefined Objective-C class: GULNetwork. The symbol 'OBJC_CLASS$_GULNetwork' could not be found in any of the libraries or frameworks linked with your application.
MTOUCH : error MT5211: Native linking failed, undefined Objective-C class: GULSwizzler. The symbol 'OBJC_CLASS$_GULSwizzler' could not be found in any of the libraries or frameworks linked with your application.
MTOUCH : error MT5211: Native linking failed, undefined Objective-C class: OIDAuthState. The symbol 'OBJC_CLASS$_OIDAuthState' could not be found in any of the libraries or frameworks linked with your application.
MTOUCH : error MT5211: Native linking failed, undefined Objective-C class: OIDAuthorizationRequest. The symbol 'OBJC_CLASS$_OIDAuthorizationRequest' could not be found in any of the libraries or frameworks linked with your application.
MTOUCH : error MT5211: Native linking failed, undefined Objective-C class: OIDAuthorizationService. The symbol 'OBJC_CLASS$_OIDAuthorizationService' could not be found in any of the libraries or frameworks linked with your application.
MTOUCH : error MT5211: Native linking failed, undefined Objective-C class: OIDIDToken. The symbol 'OBJC_CLASS$_OIDIDToken' could not be found in any of the libraries or frameworks linked with your application.
MTOUCH : error MT5211: Native linking failed, undefined Objective-C class: OIDServiceConfiguration. The symbol 'OBJC_CLASS$_OIDServiceConfiguration' could not be found in any of the libraries or frameworks linked with your application.
MTOUCH : error MT5211: Native linking failed, undefined Objective-C class: OIDURLQueryComponent. The symbol 'OBJC_CLASS$_OIDURLQueryComponent' could not be found in any of the libraries or frameworks linked with your application.
MTOUCH : error MT5210: Native linking failed, undefined symbol: OBJC_METACLASS$_GTMAppAuthFetcherAuthorization. Please verify that all the necessary frameworks have been referenced and native libraries are properly linked in.
MTOUCH : error MT5210: Native linking failed, undefined symbol: _OIDOAuthErrorResponseErrorKey. Please verify that all the necessary frameworks have been referenced and native libraries are properly linked in.
MTOUCH : error MT5210: Native linking failed, undefined symbol: _OIDOAuthTokenErrorDomain. Please verify that all the necessary frameworks have been referenced and native libraries are properly linked in.
MTOUCH : error MT5210: Native linking failed, undefined symbol: _OIDResponseTypeCode. Please verify that all the necessary frameworks have been referenced and native libraries are properly linked in.
MTOUCH : error MT5210: Native linking failed, undefined symbol: _kFIRLoggerAnalytics. Please verify that all the necessary frameworks have been referenced and native libraries are properly linked in.
MTOUCH : error MT5210: Native linking failed, undefined symbol: _kGULNetworkHTTPStatusCodeCannotAcceptTraffic. Please verify that all the necessary frameworks have been referenced and native libraries are properly linked in.
MTOUCH : error MT5210: Native linking failed, undefined symbol: _kGULNetworkHTTPStatusCodeNotFound. Please verify that all the necessary frameworks have been referenced and native libraries are properly linked in.
MTOUCH : error MT5210: Native linking failed, undefined symbol: _kGULNetworkHTTPStatusCodeNotModified. Please verify that all the necessary frameworks have been referenced and native libraries are properly linked in.
MTOUCH : error MT5210: Native linking failed, undefined symbol: _kGULNetworkHTTPStatusCodeUnavailable. Please verify that all the necessary frameworks have been referenced and native libraries are properly linked in.
MTOUCH : error MT5210: Native linking failed, undefined symbol: _kGULNetworkHTTPStatusNoContent. Please verify that all the necessary frameworks have been referenced and native libraries are properly linked in.
MTOUCH : error MT5210: Native linking failed, undefined symbol: _kGULNetworkHTTPStatusOK. Please verify that all the necessary frameworks have been referenced and native libraries are properly linked in.
MTOUCH : error MT5210: Native linking failed, undefined symbol: _pb_decode. Please verify that all the necessary frameworks have been referenced and native libraries are properly linked in.
MTOUCH : error MT5210: Native linking failed, undefined symbol: _pb_decode_varint. Please verify that all the necessary frameworks have been referenced and native libraries are properly linked in.
MTOUCH : error MT5210: Native linking failed, undefined symbol: _pb_encode. Please verify that all the necessary frameworks have been referenced and native libraries are properly linked in.
MTOUCH : error MT5210: Native linking failed, undefined symbol: _pb_encode_string. Please verify that all the necessary frameworks have been referenced and native libraries are properly linked in.
MTOUCH : error MT5210: Native linking failed, undefined symbol: _pb_encode_submessage. Please verify that all the necessary frameworks have been referenced and native libraries are properly linked in.
MTOUCH : error MT5210: Native linking failed, undefined symbol: _pb_encode_tag_for_field. Please verify that all the necessary frameworks have been referenced and native libraries are properly linked in.
MTOUCH : error MT5210: Native linking failed, undefined symbol: _pb_encode_varint. Please verify that all the necessary frameworks have been referenced and native libraries are properly linked in.
MTOUCH : error MT5210: Native linking failed, undefined symbol: _pb_istream_from_buffer. Please verify that all the necessary frameworks have been referenced and native libraries are properly linked in.
MTOUCH : error MT5210: Native linking failed, undefined symbol: _pb_ostream_from_buffer. Please verify that all the necessary frameworks have been referenced and native libraries are properly linked in.
MTOUCH : error MT5210: Native linking failed, undefined symbol: _pb_read. Please verify that all the necessary frameworks have been referenced and native libraries are properly linked in.
MTOUCH : error MT5201: Native linking failed. Please review the build log and the user flags provided to gcc: -ObjC -lsqlite3 -ObjC -lc++ -lsqlite3 -lz -ObjC -lc++ -lsqlite3 -lz
-[APMMeasurement networkUploadCompletionHandlerWithResponse : error : ] in GoogleAppMeasurement(APMMeasurement_7b399ffe8f030717675febfa49640b5b.o)
-[APMMeasurement networkUploadCompletionHandlerWithResponse : error : ] in GoogleAppMeasurement(APMMeasurement_7b399ffe8f030717675febfa49640b5b.o)
-[APMMeasurement networkUploadCompletionHandlerWithResponse : error : ] in GoogleAppMeasurement(APMMeasurement_7b399ffe8f030717675febfa49640b5b.o)
-[APMMeasurement networkUploadCompletionHandlerWithResponse : error : ] in GoogleAppMeasurement(APMMeasurement_7b399ffe8f030717675febfa49640b5b.o)
clang : error : linker command failed with exit code 1 (use -v to see invocation)
5 Warning(s)
53 Error(s)

Time Elapsed 00:00:20.83

Build FAILED.

/Library/Frameworks/Mono.framework/External/xbuild/Xamarin/Android/Xamarin.Android.D8.targets(78,5): error MSB6006: "java" exited with code 1.
0 Warning(s)
1 Error(s)

Time Elapsed 00:00:19.72

========== Build: 1 succeeded, 2 failed, 0 up-to-date, 0 skipped ==========

Build: 54 errors, 5 warnings
Screenshot 2021-01-19 at 1 59 44 PM

Firestore: auto upload of ServertimerTimestamp with an attribute

Hi

It would be very useful to have an attribute feature that uploads a FieldValue.ServerTimestamp() instead of the local property value to Firestore when performing a write function, and read the stored value when performing a read.

An example of this can be seen here on the .Net Firestore implementation.

An example implementation could be something like this

`public class HighScore : IFirestoreObject
{

  [FirestoreProperty("Score")]
  public int Score { get; set; }

  [FirestoreProperty("Name")]
  public string Name { get; set; }

  [FirestoreProperty("LastUpdated"), ServerTimestamp]
  public DateTimeOffset LastUpdated { get; set; }

}`

When performing a write, the LastUpdated property uploads a FieldValue.Servertimestamp() while the read is as normal.

Exception: iOS @NSError.userInfo

After enter the OTP and click on verify I am getting below error;

An error occurred when accessing the keychain. The @c NSLocalizedFailureReasonErrorKey field in the @c NSError.userInfo dictionary will contain more information about the error encountered

Platform: iOS
Device: iPhone SE simulator(14.4)
Simulator Screen Shot - iPhone SE (2nd generation) - 2021-02-17 at 12 55 31

  • Entitlement.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>keychain-access-groups</key>
	<array>
		<string>$(AppIdentifierPrefix)com.xamarin.auth</string>
	</array>
</dict>
</plist>
  • 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>UIDeviceFamily</key>
	<array>
		<integer>1</integer>
		<integer>2</integer>
	</array>
	<key>UISupportedInterfaceOrientations</key>
	<array>
		<string>UIInterfaceOrientationPortrait</string>
		<string>UIInterfaceOrientationLandscapeLeft</string>
		<string>UIInterfaceOrientationLandscapeRight</string>
	</array>
	<key>UISupportedInterfaceOrientations~ipad</key>
	<array>
		<string>UIInterfaceOrientationPortrait</string>
		<string>UIInterfaceOrientationPortraitUpsideDown</string>
		<string>UIInterfaceOrientationLandscapeLeft</string>
		<string>UIInterfaceOrientationLandscapeRight</string>
	</array>
	<key>MinimumOSVersion</key>
	<string>8.0</string>
	<key>CFBundleDisplayName</key>
	<string>XamDemo</string>
	<key>CFBundleIdentifier</key>
	<string>com.xamarin.auth</string>
	<key>CFBundleVersion</key>
	<string>1.0</string>
	<key>UILaunchStoryboardName</key>
	<string>LaunchScreen</string>
	<key>CFBundleName</key>
	<string>XamDemo</string>
	<key>XSAppIconAssets</key>
	<string>Assets.xcassets/AppIcon.appiconset</string>
	<key>CFBundleURLTypes</key>
	<array>
		<dict>
			<key>CFBundleURLSchemes</key>
			<array>
				<string>com.googleusercontent.apps.479574513872-58k1codlmhfl3j0v3m5tiembubiltb46</string>
			</array>
		</dict>
	</array>
</dict>
</plist>

NRE being thrown when iOS app is started

I am using the plugin for cloud messaging. Using the demo code, I have everything set correcty. The app builds without an issue but when I start the application running, I'm met with this

[0:] An error occurred: 'Object reference not set to an instance of an object.'. Callstack: ' at Plugin.Firebase.Auth.FirebaseAuthImplementation.Initialize(UIApplication application, NSDictionary launchOptions, String facebookAppId, String facebookDisplayName)
at Plugin.Firebase.iOS.CrossFirebase.Initialize(UIApplication app, NSDictionary options, CrossFirebaseSettings settings, Options firebaseOptions, String name)
at PickleApp.AppDelegate.FinishedLaunching(UIApplication application, NSDictionary launchOptions) in C:\Users\Paul\source\repos\PickleApp\PickleApp\Platforms\iOS\AppDelegate.cs:line 36
at UIKit.UIApplication.Main(String[] args, Type principalClass, Type delegateClass)
at PickleApp.Program.Main(String[] args) in C:\Users\Paul\source\repos\PickleApp\PickleApp\Platforms\iOS\Program.cs:line 13
at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)'
The app has been terminated.

I have tried having the init in both the iOS and MAUI projects and get the same results.

Current Activity is null

When I run the app on Android the exception "Current Activity is null, ensure that the MainApplication.cs file is setting the CurrentActivity in your source code so Firebase Analytics can use it." is raised, and I can't figure out am I doing something wrong.

I have initialized the plugin as stated in documentation.
image

"java" exited with code 1. (MSB6006)

Have latest Xamarin.Forms 5

After installing package successfully, I tried to build solution but I am getting this error.

"java" exited with code 1. (MSB6006)

**Build Output

Target _CreateBaseApk:
Touching "obj/Release/android/bin/packaged_resources".
Target _CompileJava:
/Users/hiteshmalhotra/Library/Developer/Xamarin/jdk/microsoft_dist_openjdk_1.8.0.25/bin/javac -J-Dfile.encoding=UTF8 "@/var/folders/wr/6wc59d8900l4cgq4tb300hpc0000gq/T/tmp243da4f6.tmp" -target 1.8 -source 1.8
Note: Some input files use or override a deprecated API.
Note: Recompile with -Xlint:deprecation for details.
Note: Some input files use unchecked or unsafe operations.
Note: Recompile with -Xlint:unchecked for details.
Creating "obj/Release/_javac.stamp" because "AlwaysCreate" was specified.
Target _CompileToDalvik:
/Users/hiteshmalhotra/Library/Developer/Xamarin/jdk/microsoft_dist_openjdk_1.8.0.25/bin/java -Xmx1G -classpath /Library/Frameworks/Xamarin.Android.framework/Libraries/xbuild/Xamarin/Android/r8.jar com.android.tools.r8.R8 --release --min-api 23 --output obj/Release/android/bin/ --lib /Users/hiteshmalhotra/Library/Android/sdk/platforms/android-30/android.jar --lib /Users/hiteshmalhotra/Library/Android/sdk/platforms/android-30/optional/org.apache.http.legacy.jar obj/Release/android/bin/classes.zip /Library/Frameworks/Mono.framework/External/xbuild-frameworks/MonoAndroid/v11.0/mono.android.jar /Library/Frameworks/Mono.framework/External/xbuild/Xamarin/Android/java_runtime.jar /Users/hiteshmalhotra/.nuget/packages/xamarin.androidx.annotation/1.1.0.8/buildTransitive/monoandroid90/../../jar/androidx.annotation.annotation.jar /Users/hiteshmalhotra/.nuget/packages/xamarin.androidx.collection/1.1.0.6/buildTransitive/monoandroid90/../../jar/androidx.collection.collection.jar /Users/hiteshmalhotra/.nuget/packages/xamarin.androidx.lifecycle.common/2.2.0.4/buildTransitive/monoandroid90/../../jar/androidx.lifecycle.lifecycle-common.jar /Users/hiteshmalhotra/.nuget/packages/xamarin.androidx.arch.core.common/2.1.0.7/buildTransitive/monoandroid90/../../jar/androidx.arch.core.core-common.jar /Users/hiteshmalhotra/.nuget/packages/xamarin.google.guava.listenablefuture/1.0.0.2/buildTransitive/monoandroid50/guava-listenablefuture.jar obj/Release/lp/135/jl/classes.jar obj/Release/lp/132/jl/classes.jar obj/Release/lp/92/jl/__reference__guava.jar obj/Release/lp/157/jl/classes.jar obj/Release/lp/150/jl/classes.jar obj/Release/lp/159/jl/classes.jar obj/Release/lp/161/jl/classes.jar obj/Release/lp/133/jl/classes.jar obj/Release/lp/93/jl/guava-failureaccess.jar obj/Release/lp/134/jl/classes.jar obj/Release/lp/158/jl/classes.jar obj/Release/lp/151/jl/classes.jar obj/Release/lp/156/jl/classes.jar obj/Release/lp/9/jl/okio.jar obj/Release/lp/145/jl/classes.jar obj/Release/lp/142/jl/classes.jar obj/Release/lp/7/jl/okhttp.jar obj/Release/lp/129/jl/classes.jar obj/Release/lp/116/jl/grpc-protobuf-lite-1.28.0.jar obj/Release/lp/118/jl/opencensus-api-0.21.0.jar obj/Release/lp/127/jl/classes.jar obj/Release/lp/120/jl/opencensus-api-0.19.0.jar obj/Release/lp/143/jl/classes.jar obj/Release/lp/144/jl/classes.jar obj/Release/lp/1/jl/bolts-tasks.jar obj/Release/lp/8/jl/okhttp3.jar obj/Release/lp/121/jl/javax-inject.jar obj/Release/lp/119/jl/opencensus-contrib-grpc-metrics-0.21.0.jar obj/Release/lp/72/jl/firebase-encoders.jar obj/Release/lp/126/jl/classes.jar obj/Release/lp/128/jl/classes.jar obj/Release/lp/117/jl/grpc-stub-1.28.0.jar obj/Release/lp/153/jl/classes.jar obj/Release/lp/154/jl/classes.jar obj/Release/lp/131/jl/classes.jar obj/Release/lp/91/jl/dagger.jar obj/Release/lp/136/jl/classes.jar obj/Release/lp/138/jl/classes.jar obj/Release/lp/155/jl/classes.jar obj/Release/lp/152/jl/classes.jar obj/Release/lp/139/jl/classes.jar obj/Release/lp/137/jl/classes.jar obj/Release/lp/63/jl/firebase-annotations.jar obj/Release/lp/130/jl/classes.jar obj/Release/lp/112/jl/grpc-api-1.28.0.jar obj/Release/lp/115/jl/grpc-okhttp-1.28.0.jar obj/Release/lp/123/jl/classes.jar obj/Release/lp/124/jl/classes.jar obj/Release/lp/148/jl/classes.jar obj/Release/lp/141/jl/classes.jar obj/Release/lp/4/jl/gson.jar obj/Release/lp/3/jl/zxing.core.jar obj/Release/lp/146/jl/classes.jar obj/Release/lp/125/jl/classes.jar obj/Release/lp/122/jl/protobuf-javalite.jar obj/Release/lp/114/jl/grpc-core-1.28.0.jar obj/Release/lp/113/jl/grpc-context-1.28.0.jar obj/Release/lp/147/jl/classes.jar obj/Release/lp/2/jl/formsviewgroup.jar obj/Release/lp/140/jl/classes.jar obj/Release/lp/149/jl/classes.jar obj/Release/lp/61/jl/bin/classes.jar obj/Release/lp/95/jl/bin/classes.jar obj/Release/lp/59/jl/bin/classes.jar obj/Release/lp/66/jl/bin/classes.jar obj/Release/lp/104/jl/bin/classes.jar obj/Release/lp/68/jl/bin/classes.jar obj/Release/lp/103/jl/bin/classes.jar obj/Release/lp/57/jl/bin/classes.jar obj/Release/lp/102/jl/bin/classes.jar obj/Release/lp/69/jl/bin/classes.jar obj/Release/lp/56/jl/bin/classes.jar obj/Release/lp/105/jl/bin/classes.jar obj/Release/lp/58/jl/bin/classes.jar obj/Release/lp/67/jl/bin/classes.jar obj/Release/lp/60/jl/bin/classes.jar obj/Release/lp/0/jl/bin/classes.jar obj/Release/lp/89/jl/bin/classes.jar obj/Release/lp/111/jl/bin/classes.jar obj/Release/lp/73/jl/bin/classes.jar obj/Release/lp/87/jl/bin/classes.jar obj/Release/lp/80/jl/bin/classes.jar obj/Release/lp/74/jl/bin/classes.jar obj/Release/lp/75/jl/bin/classes.jar obj/Release/lp/81/jl/bin/classes.jar obj/Release/lp/110/jl/bin/classes.jar obj/Release/lp/88/jl/bin/classes.jar obj/Release/lp/65/jl/bin/classes.jar obj/Release/lp/96/jl/bin/classes.jar obj/Release/lp/109/jl/bin/classes.jar obj/Release/lp/100/jl/bin/classes.jar obj/Release/lp/54/jl/bin/classes.jar obj/Release/lp/107/jl/bin/classes.jar obj/Release/lp/98/jl/bin/classes.jar obj/Release/lp/53/jl/bin/classes.jar obj/Release/lp/106/jl/bin/classes.jar obj/Release/lp/99/jl/bin/classes.jar obj/Release/lp/101/jl/bin/classes.jar obj/Release/lp/55/jl/bin/classes.jar obj/Release/lp/97/jl/bin/classes.jar obj/Release/lp/108/jl/bin/classes.jar obj/Release/lp/64/jl/bin/classes.jar obj/Release/lp/79/jl/bin/classes.jar obj/Release/lp/83/jl/bin/classes.jar obj/Release/lp/77/jl/bin/classes.jar obj/Release/lp/70/jl/bin/classes.jar obj/Release/lp/84/jl/bin/classes.jar obj/Release/lp/71/jl/bin/classes.jar obj/Release/lp/76/jl/bin/classes.jar obj/Release/lp/82/jl/bin/classes.jar obj/Release/lp/78/jl/bin/classes.jar --no-tree-shaking --no-minification --pg-conf /var/folders/wr/6wc59d8900l4cgq4tb300hpc0000gq/T/tmp4dfeda8c.tmp --pg-conf /Users/hiteshmalhotra/Library/Android/sdk/tools/proguard/proguard-android.txt --pg-conf /Users/hiteshmalhotra/.nuget/packages/xamarin.androidx.versionedparcelable/1.1.1.6/buildTransitive/monoandroid90/../../proguard/proguard.txt --pg-conf /Users/hiteshmalhotra/.nuget/packages/xamarin.androidx.lifecycle.runtime/2.2.0.4/buildTransitive/monoandroid90/../../proguard/proguard.txt --pg-conf /Users/hiteshmalhotra/.nuget/packages/xamarin.androidx.core/1.3.2.1/buildTransitive/monoandroid90/../../proguard/proguard.txt --pg-conf /Users/hiteshmalhotra/.nuget/packages/xamarin.androidx.savedstate/1.1.0.4-alpha01/buildTransitive/monoandroid90/../../proguard/proguard.txt --pg-conf /Users/hiteshmalhotra/.nuget/packages/xamarin.androidx.lifecycle.viewmodel/2.2.0.4/buildTransitive/monoandroid90/../../proguard/proguard.txt --pg-conf /Users/hiteshmalhotra/.nuget/packages/xamarin.androidx.lifecycle.viewmodelsavedstate/2.2.0.4/buildTransitive/monoandroid90/../../proguard/proguard.txt --pg-conf /Users/hiteshmalhotra/.nuget/packages/xamarin.androidx.fragment/1.2.5.4/buildTransitive/monoandroid90/../../proguard/proguard.txt --pg-conf /Users/hiteshmalhotra/.nuget/packages/xamarin.androidx.recyclerview/1.1.0.5/buildTransitive/monoandroid90/../../proguard/proguard.txt --pg-conf /Users/hiteshmalhotra/.nuget/packages/xamarin.androidx.vectordrawable.animated/1.1.0.5/buildTransitive/monoandroid90/../../proguard/proguard.txt --pg-conf /Users/hiteshmalhotra/.nuget/packages/xamarin.androidx.transition/1.3.1.5/buildTransitive/monoandroid90/../../proguard/proguard.txt --pg-conf /Users/hiteshmalhotra/.nuget/packages/xamarin.androidx.coordinatorlayout/1.1.0.6/buildTransitive/monoandroid90/../../proguard/proguard.txt --pg-conf /Users/hiteshmalhotra/.nuget/packages/xamarin.androidx.appcompat/1.2.0.5/buildTransitive/monoandroid90/../../proguard/proguard.txt --pg-conf /Users/hiteshmalhotra/.nuget/packages/xamarin.google.android.material/1.1.0.5/buildTransitive/monoandroid90/../../proguard/proguard.txt --pg-conf /Users/hiteshmalhotra/.nuget/packages/xamarin.androidx.media/1.2.1.1/buildTransitive/monoandroid90/../../proguard/proguard.txt --pg-conf /Users/hiteshmalhotra/.nuget/packages/xamarin.forms/5.0.0.1874/buildTransitive/MonoAndroid10/proguard.cfg
Error in /Users/hiteshmalhotra/.nuget/packages/xamarin.google.guava.listenablefuture/1.0.0.2/buildTransitive/monoandroid50/guava-listenablefuture.jar:com/google/common/util/concurrent/ListenableFuture.class:
Type com.google.common.util.concurrent.ListenableFuture is defined multiple times: /Users/hiteshmalhotra/.nuget/packages/xamarin.google.guava.listenablefuture/1.0.0.2/buildTransitive/monoandroid50/guava-listenablefuture.jar:com/google/common/util/concurrent/ListenableFuture.class, obj/Release/lp/92/jl/__reference__guava.jar:com/google/common/util/concurrent/ListenableFuture.class
Compilation failed
/Library/Frameworks/Mono.framework/External/xbuild/Xamarin/Android/Xamarin.Android.D8.targets(51,5): error MSB6006: "java" exited with code 1.
Done building target "_CompileToDalvik" in project "XamDemo.Android.csproj" -- FAILED.

Done building project "XamDemo.Android.csproj" -- FAILED.

Build succeeded.
0 Warning(s)
0 Error(s)

Time Elapsed 00:00:43.10

Build FAILED.

/Library/Frameworks/Mono.framework/External/xbuild/Xamarin/Android/Xamarin.Android.D8.targets(51,5): error MSB6006: "java" exited with code 1.
0 Warning(s)
1 Error(s)

Time Elapsed 00:00:39.68

========== Build: 2 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========

Build: 1 error, 0 warnings

Plugin.CurrentActivity dependency

This plugin depends both on Plugin.CurrentActivity and Xamarin.Essentials.
The 'CurrentActivity' functionality is available is Xamarin.Essentials.
So I think you could easily get rid of the Plugin.CurrentActivity dependency.
Or is there a reason to keep it? What do you think?

Custom Notification Sounds Don't Play on Android

Notifications always play the default sound, rather than the specified on embedded as a resource in the Android Xamarin app

Steps to reproduce:
1 - In Visual Studio: copy .wav file to ProjectName.Android/Resources/raw

2 - Confirm Build Action = AndroidResource

3 - Send notification using FirebaseAdmin with code similar to following:

Works fine in IOS, always plays default sound on Android.

Dim aps = New Aps With {.Sound = "personalnotification.wav"}
Dim android_options = New AndroidNotification With {.Sound = "personalnotification.wav"}
Dim message = New Message() With {
.Apns = New ApnsConfig With {.Aps = aps},
.Android = New AndroidConfig With {.Notification = android_options},
.Notification = New Notification With {
.Title = Title,
.Body = Body
},
.Token = Token
}
Dim Messaging = FirebaseMessaging.DefaultInstance
Call Messaging.SendAsync(message)

[Feature] Raise specific exceptions for common errors on all Firebase services

Hello @TobiasBuchholz ,

I wonder about how to catch specific auth exceptions, such as :

  • Wrong password,
  • Unverified email,
  • User not found,
  • Session expired...

Actually, I would like being able to display the right message to the user according to the internal encountered error, whether it's related to Authentication or Firestore, Storage...
Is it possible with the current implementation ?

If no, could we plan about grouping common errors related to all Firebase services please ?

[Android] Firestore: System.ArgumentException: Object of type 'System.Double' cannot be converted to type 'System.Single'

Hi @TobiasBuchholz, I am currently testing your library on my Android app, and there's actually an error when reading an existing document from the DataBase using : documentSnapshot.Data

IDocumentSnapshot<T> documentSnapshot = await documentReference.GetDocumentSnapshotAsync<T>();
if (documentSnapshot?.Data != null) // <---- System.ArgumentException occuring here
{
    return documentSnapshot.Data;
}
else
{
    throw new Exception("DOCUMENT NOT FOUND");
}

StackTrace

System.ArgumentException: Object of type 'System.Double' cannot be converted to type 'System.Single'.
  at System.RuntimeType.CheckValue (System.Object value, System.Reflection.Binder binder, System.Globalization.CultureInfo culture, System.Reflection.BindingFlags invokeAttr) [0x00056] in /Users/builder/jenkins/workspace/archive-mono/2020-02/android/release/mcs/class/corlib/ReferenceSources/RuntimeType.cs:201 
  at System.Reflection.RuntimeMethodInfo.ConvertValues (System.Reflection.Binder binder, System.Object[] args, System.Reflection.ParameterInfo[] pinfo, System.Globalization.CultureInfo culture, System.Reflection.BindingFlags invokeAttr) [0x00069] in /Users/builder/jenkins/workspace/archive-mono/2020-02/android/release/mcs/class/corlib/System.Reflection/RuntimeMethodInfo.cs:454 
  at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00040] in /Users/builder/jenkins/workspace/archive-mono/2020-02/android/release/mcs/class/corlib/System.Reflection/RuntimeMethodInfo.cs:385 
  at System.Reflection.RuntimePropertyInfo.SetValue (System.Object obj, System.Object value, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] index, System.Globalization.CultureInfo culture) [0x0005d] in /Users/builder/jenkins/workspace/archive-mono/2020-02/android/release/mcs/class/corlib/System.Reflection/RuntimePropertyInfo.cs:469 
  at System.Reflection.PropertyInfo.SetValue (System.Object obj, System.Object value, System.Object[] index) [0x00000] in /Users/builder/jenkins/workspace/archive-mono/2020-02/android/release/external/corefx/src/Common/src/CoreLib/System/Reflection/PropertyInfo.cs:57 
  at System.Reflection.PropertyInfo.SetValue (System.Object obj, System.Object value) [0x00000] in /Users/builder/jenkins/workspace/archive-mono/2020-02/android/release/external/corefx/src/Common/src/CoreLib/System/Reflection/PropertyInfo.cs:54 
  at Plugin.Firebase.Android.Extensions.JavaObjectExtensions.Cast (System.Collections.IDictionary this, System.Type targetType, System.String documentId) [0x000b4] in <becdb5103fb14132a70e7e52fa7d7747>:0 
  at Plugin.Firebase.Android.Extensions.JavaObjectExtensions.Cast[T] (System.Collections.Generic.IDictionary`2[TKey,TValue] this, System.String documentId) [0x00000] in <becdb5103fb14132a70e7e52fa7d7747>:0 
  at Plugin.Firebase.Android.Firestore.DocumentSnapshotWrapper`1[T].get_Data () [0x00023] in <becdb5103fb14132a70e7e52fa7d7747>:0 

Setup

Visual Studio Community 2022 for Mac (17.0.7)
Xamarin.Android (12.3.3.3)
Xamarin.Forms (5.0.0.2012)
Plugin.Firebase V1.1.2

Context

I guess it's the IDocumentReference field that is causing the issue. Indeed, no issue is raised after removing the properties of type IDocumentReference from my document model.
Could you please have a look ? Thanks in advance for your help ๐Ÿ™

[Question] Firebase Auth - How to handle untrusted providers when signing in ?

Hi @TobiasBuchholz , I noticed a problem which can be annoying for my users :

Considering a user "[email protected]" who registered to my app using Google Sign In. If one day this same user decides to use Facebook Sign In with the same email address, he will get stuck on the Web flow for Facebook authentication with a meaningless message saying : "Inactive App : This app is not usable for the moment. You will be able to authenticate once the app is reactivated."

image

Indeed, in my Firebase project I have allowed multiple accounts with the same email address and this means a user will be always linked to one unique Firebase user account even if using different providers with the same email address.

However, Firebase separates trusted from untrusted providers. And there comes the actual problem : Facebook is not considered by Firebase as a trusted provider.

To summarize, user will not get any issue if using Facebook Sign In, until he authenticates with a truster provider like Google or Apple, and here I'm afraid I can lose some users.

Conclusion

When user goes for Facebook Sign In, I would like your library to be able to fetch the list of enabled providers associated to his email address so that it could raise a "WeakProvider" exception. Once handled in my application code, I could provide support and redirect him to another way of signing in.

Calling GetDownloadUrlAsync() when Offline causes an internal endless loop

Hi, thanks for the great plugin and your dedication.
I use the plugin and until now it works like a charm.

So I was trying (on Android only until now) to call the function IStorageReference.GetDownloadUrlAsync() on a valid storage reference. Problem is that when I am offline with my phone, the call gets stucked in the await and I see this log message.
E/StorageUtil: error getting token java.util.concurrent.ExecutionException: com.google.firebase.internal.api.FirebaseNoSignedInUserException: Please sign in before trying to get a token.
I think here you should retry maybe 2-3 time (configurable) and if it fails then just return a null url or throw an exception. I prefer null url. Then the app would know that something went wrong and do its thing.
Of course I could check before I do the call if I have internet, but what if after 1ms I don't, it still fails.
Also.. at the moment if you stay to much offline it retries endless and fails with this exception after about 1-2 minutes

Firebase.Storage.StorageException: The operation retry limit has been exceeded. ---> Java.Net.SocketException: Network subsystem is unavailable
   --- End of inner exception stack trace ---
  at Plugin.Firebase.Android.Storage.StorageReferenceWrapper.GetDownloadUrlAsync () [0x00067] in <f4f01eae19504ae384c3bd038d85e937>:0 
...

Let me know if I can help. Thanks.

Firestore: Unable to retrieve documents from a subcollection

I use the code below to try retrieve documents from a subcollection, but it always returns an empty list

        var con = CrossFirebaseFirestore.Current;
        var path = $"{MainCollection}/{DocumentId}/{SubCollection}";
        var subcoll = con.GetCollection(path);
        var docs = await subcoll.GetDocumentsAsync<T>(Source.Server);
        return docs.Documents.Select(data => data.Data).ToList();

I have also noted that the IDocument wrapper does not have a getCollection method which the native document has.

[Android] NullPointerException when updating user profile

Hi, nothing big but on Android, there's an exception when updating the user profile with a null photo url using :
await CrossFirebaseAuth.Current.CurrentUser.UpdateProfileAsync(username, null);

But apparently, this is an allowed value :
image

StackTrace

Java.Lang.NullPointerException: uriString
  at Java.Interop.JniEnvironment+StaticMethods.CallStaticObjectMethod (Java.Interop.JniObjectReference type, Java.Interop.JniMethodInfo method, Java.Interop.JniArgumentValue* args) [0x00068] in /Users/runner/work/1/s/xamarin-android/external/Java.Interop/src/Java.Interop/Java.Interop/JniEnvironment.g.cs:12890 
  at Java.Interop.JniPeerMembers+JniStaticMethods.InvokeObjectMethod (System.String encodedMember, Java.Interop.JniArgumentValue* parameters) [0x00008] in /Users/runner/work/1/s/xamarin-android/external/Java.Interop/src/Java.Interop/Java.Interop/JniPeerMembers.JniStaticMethods.cs:95 
  at Android.Net.Uri.Parse (System.String uriString) [0x0001f] in /Users/runner/work/1/s/xamarin-android/src/Mono.Android/obj/Release/monoandroid10/android-31/mcw/Android.Net.Uri.cs:1164 
  at Plugin.Firebase.Android.Auth.FirebaseUserWrapper.UpdateProfileAsync (System.String displayName, System.String photoUrl) [0x00011] in <becdb5103fb14132a70e7e52fa7d7747>:0 

Setup

Visual Studio Community 2022 for Mac (17.0.7)
Xamarin.Android (12.3.3.3)
Xamarin.Forms (5.0.0.2012)
Plugin.Firebase V1.1.2

Workaround

This could be easily resolved by replacing null value with an empty string, like :
await CrossFirebaseAuth.Current.CurrentUser.UpdateProfileAsync(username, photoUrl ?? "");

Any way to build my Windows and Mac catalyst app with Plugin.Firebase

I am totally fine with Plugin.Firebase does not support Windows and Mac catalyst but after installation Plugin.Firebase I am not able to run my windows app.

Is there any way I can use Plugin.Firebase for android and iOS and still able to run my windows and Mac

I had to do net6.0-android;net6.0-ios
In order to able to build my project which means now windows and Mac anymore :(

Package does not install on iOS project

Using Visual Studio 2022 (repos both on Windows and Mac).

File->New Project. Choose Tabbed template. Compiles and builds.
Add Plug.Firebase to Shared Project, Android and iOS. Package fails to install on iOS with this error Install-Package : Could not find a part of the path 'C:\Users\timbe.nuget\packages\xamarin.facebook.sharekit.ios\12.2.0\lib\xamarinios10\Facebook.ShareKit.resources\FBSDKShareKit.xcframework\ios-arm64_i386_x86_64
-simulator\FBSDKShareKit.framework\Modules\FBSDKShareKit.swiftmodule\arm64-apple-ios-simulator.swiftdoc'.

Only other libraries already install are Xamarin.Forms and Xamarin.Essentials.

I tried clearing the nuget cache - same results.
I tried adding Xamarin.Facebook.ios and got same results.

Exception:Default FirebaseApp is not initialized in this process

Thanks Budyy that build error is resolved.

Now I got a Challenge;

**MainActivity

public class MainActivity : global::Xamarin.Forms.Platform.Android.FormsAppCompatActivity
{
    protected override void OnCreate(Bundle savedInstanceState)
    {
        TabLayoutResource = Resource.Layout.Tabbar;
        ToolbarResource = Resource.Layout.Toolbar;

        base.OnCreate(savedInstanceState);

        Xamarin.Essentials.Platform.Init(this, savedInstanceState);
        global::Xamarin.Forms.Forms.Init(this, savedInstanceState);
        FirebaseApp.InitializeApp(this);
        CrossFirebase.Initialize(this, savedInstanceState, CreateCrossFirebaseSettings());
        HandleIntent(Intent);
        LoadApplication(new App());
    }

    private static CrossFirebaseSettings CreateCrossFirebaseSettings()
    {
        return new CrossFirebaseSettings(
            isAnalyticsEnabled:true,
            isAuthEnabled:true,
            isCloudMessagingEnabled:true,
            isDynamicLinksEnabled: true,
            isFirestoreEnabled: true,
            isFunctionsEnabled: true,
            isRemoteConfigEnabled: true,
            isStorageEnabled: true
            //facebookId: "", //Facebook client id
            //facebookAppName: "", // App Name over facebook
            //googleRequestIdToken: ""
            );
    }

    private static void HandleIntent(Intent intent)
    {
        FirebaseCloudMessagingImplementation.OnNewIntent(intent);
        FirebaseDynamicLinksImplementation.HandleDynamicLinkAsync(intent);
    }

    public override void OnRequestPermissionsResult(int requestCode, string[] permissions, [GeneratedEnum] Android.Content.PM.Permission[] grantResults)
    {
        Xamarin.Essentials.Platform.OnRequestPermissionsResult(requestCode, permissions, grantResults);

        base.OnRequestPermissionsResult(requestCode, permissions, grantResults);
    }

    protected override void OnActivityResult(int requestCode, Result resultCode, Intent data)
    {
        base.OnActivityResult(requestCode, resultCode, data);
        FirebaseAuthImplementation.HandleActivityResultAsync(requestCode, resultCode, data);
    }
    
    protected override void OnNewIntent(Intent intent)
    {
        base.OnNewIntent(intent);
        HandleIntent(intent);
    }
}

**MainPage.xaml.cs
---------------------
public partial class MainPage : ContentPage
{
private readonly Lazy _firebaseAuth;
private IFirebaseAuth _fireAuth;
public MainPage()
{
InitializeComponent();
_firebaseAuth = new Lazy(CreateFirebaseAuth);
}
private static IFirebaseAuth CreateFirebaseAuth() =>
CrossFirebaseAuth.Current;
async void ClickMe(System.Object sender, System.EventArgs e)
{
try
{
_fireAuth = _firebaseAuth.Value;
await _fireAuth.VerifyPhoneNumberAsync(phoneEntry.Text);
}
catch(Exception ex)
{
await DisplayAlert("Error", ex.Message, "Okay");
}
}
}

Is anything I am missing? Because I getting the exception alert which is in screenshot;

Screenshot 2021-01-19 at 5 48 53 PM

Analytics doesn't work on an Android device

I was trying to use FireBase Analytics. I wasn't able to make it work.
Firebase console doesn't recognize the running app.
I initialize the package by calling CrossFirebase.Initialize(this, savedInstanceState, CreateCrossFirebaseSettings()); and also I set the googleRequestIdToken
Calling the CrossFirebaseAnalytics.Current.LogEvent("MyEvent", parameters); doesn't do anything

[Emulators] System.MissingMethodException: Method not found: void Firebase.CloudFirestore.Firestore.UseEmulatorWithHost(string,uint)

Hello @TobiasBuchholz , I tried to configure the emulator mode for Firestore & Authentication, but I have a MissingMethodException saying that UseEmulator is not found :

image

I guess it possibly requires following a preserve attribute above the classes:

I will test if adding this attribute does help or not :
[Xamarin.Forms.Internals.Preserve (AllMembers = true)]

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.