FirebaseOptions.getProjectId() cannot be null Xamarin AndroidIs there a way to run Python on Android?How do save an Android Activity state using save instance state?Close/hide the Android Soft KeyboardWhy is the Android emulator so slow? How can we speed up the Android emulator?Is there a unique Android device ID?Proper use cases for Android UserManager.isUserAGoat()?java.lang.IllegalArgumentException: Must specify an idToken or an accessTokenI have issue with permission check in higher versions of androidUpload Image after Capture - AndroidXamarin: How to get AdvertisingId on Android?

Why is the blank symbol not considered part of the input alphabet of a Turing machine?

If quadruped mammals evolve to become bipedal will their breast or nipple change position?

What is more safe for browsing the web: PC or smartphone?

Concatenate all values of the same XML element using XPath/XQuery

If studying in groups is more effective, why don't academics also research in groups?

In the figure, a quarter circle, a semicircle and a circle are mutually tangent inside a square of side length 2. Find the radius of the circle.

In a series of books, what happens after the coming of age?

My C Drive is full without reason

What calendar would the Saturn nation use?

Is it safe to keep the GPU on 100% utilization for a very long time?

Bash prompt takes only the first word of a hostname before the dot

How to increase speed on my hybrid bike with flat handlebars and 700X35C tyres?

Is there any optimization for thread safety in for loop of Java?

Would a legitimized Baratheon have the best claim for the Iron Throne?

If an attacker targets a creature with the Sanctuary spell cast on them, but fails the Wisdom save, can they choose not to attack anyone else?

Where do 5 or more U.S. counties meet in a single point?

Why did Dr. Strange keep looking into the future after the snap?

Was there a dinosaur-counter in the original Jurassic Park movie?

The unknown and unexplained in science fiction

A♭ major 9th chord in Bach is unexpectedly dissonant/jazzy

why it is 2>&1 and not 2>>&1 to append to a log file

And now you see it

Can a player choose to add detail and flavor to their character's spells and abilities?

Why doesn't increasing the temperature of something like wood or paper set them on fire?



FirebaseOptions.getProjectId() cannot be null Xamarin Android


Is there a way to run Python on Android?How do save an Android Activity state using save instance state?Close/hide the Android Soft KeyboardWhy is the Android emulator so slow? How can we speed up the Android emulator?Is there a unique Android device ID?Proper use cases for Android UserManager.isUserAGoat()?java.lang.IllegalArgumentException: Must specify an idToken or an accessTokenI have issue with permission check in higher versions of androidUpload Image after Capture - AndroidXamarin: How to get AdvertisingId on Android?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








0















I have implemented the below code in two projects, one works and the other does not work ,below is the code. i have checked other posts which says to use com.google.gms:google-services i have added Xamarin.GooglePlayServices.basement still it gives error, which GooglePlayServices plugin should i use for Xamarin ?



protected override void OnCreate(Bundle savedInstanceState)

base.OnCreate(savedInstanceState);

SetContentView(Resource.Layout.activity_main);

Firebase.FirebaseApp.InitializeApp(this);


Plugin.CurrentActivity.CrossCurrentActivity.Current.Activity = this;

buttonView = FindViewById<Button>(Resource.Id.button1);
error = FindViewById<TextView>(Resource.Id.error);

buttonView.Click += StartQueryDetailsAsync;






public async void StartQueryDetailsAsync(object sender, EventArgs e)

Dictionary<string, Java.Lang.Object> user = new Dictionary<string, Java.Lang.Object>

"PurchaseToken", purchase.PurchaseToken ,
"QueryNumber", 1
;

firestore = FirebaseFirestore.Instance;
firestore.Collection("DineUser").Document(purchase.Id).Set(user).AddOnSuccessListener(this);



Error:



Java.Lang.IllegalArgumentException: FirebaseOptions.getProjectId() cannot be null at Java.Interop.JniEnvironment+StaticMethods.CallStaticObjectMethod (Java.Interop.JniObjectReference type, Java.Interop.JniMethodInfo method) [0x00068] in <8acc8089c2ed40d08469fbaa6710a44c>:0 at Android.Runtime.JNIEnv.CallStaticObjectMethod (System.IntPtr jclass, System.IntPtr jmethod) [0x0000e] in <957bbfdfda4341e2939c881206c1140a>:0 at Firebase.Firestore.FirebaseFirestore.get_Instance () [0x0002f] in <97744bd4f3f740c1884b76e44794b938>:0 at DineCam.Main.DrawRect+<Purchase>d__56.MoveNext () [0x00417] in D:DineCamDineCamMainDrawRect.cs:427 --- End of managed Java.Lang.IllegalArgumentException stack trace --- java.lang.IllegalArgumentException: FirebaseOptions.getProjectId() cannot be null at com.google.firebase.firestore.FirebaseFirestore.zze(Unknown Source) at com.google.firebase.firestore.FirebaseFirestore.getInstance(Unknown Source) at md580a1eddd40074c89f21a5ec99d8b044c.DrawRect.n_onActivityResult(Native Method) at md580a1eddd40074c89f21a5ec99d8b044c.DrawRect.onActivityResult(DrawRect.java:86) at android.app.Activity.dispatchActivityResult(Activity.java:6508) at android.app.ActivityThread.deliverResults(ActivityThread.java:3925) at android.app.ActivityThread.handleSendResult(ActivityThread.java:3972) at android.app.ActivityThread.-wrap16(ActivityThread.java) at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1537) at android.os.Handler.dispatchMessage(Handler.java:111) at android.os.Looper.loop(Looper.java:207) at android.app.ActivityThread.main(ActivityThread.java:5728) at java.lang.reflect.Method.invoke(Native Method) at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:789) at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:679) 









share|improve this question






















  • Which nuget version of the Play Services are you installing? If it is an older one due to some other dependency in your app, then review this issue as there are several workarounds available: github.com/xamarin/GooglePlayServicesComponents/issues/…

    – SushiHangover
    Mar 23 at 5:40












  • Tried this ,it reads everything from google-services.json file except the ProjectId . it gives the error Internal error in Firestore (0.6.6-dev). and i am using v60.1142.1 of Xamarin.GooglePlayServices.Basement

    – VINNUSAURUS
    Mar 23 at 6:45












  • Have you try manually assigning everything? : github.com/xamarin/GooglePlayServicesComponents/issues/…

    – SushiHangover
    Mar 23 at 6:58











  • tried same error Internal error in Firestore (0.6.6-dev).

    – VINNUSAURUS
    Mar 23 at 7:33











  • don't know why it works in one project and not in another ....

    – VINNUSAURUS
    Mar 23 at 7:46

















0















I have implemented the below code in two projects, one works and the other does not work ,below is the code. i have checked other posts which says to use com.google.gms:google-services i have added Xamarin.GooglePlayServices.basement still it gives error, which GooglePlayServices plugin should i use for Xamarin ?



protected override void OnCreate(Bundle savedInstanceState)

base.OnCreate(savedInstanceState);

SetContentView(Resource.Layout.activity_main);

Firebase.FirebaseApp.InitializeApp(this);


Plugin.CurrentActivity.CrossCurrentActivity.Current.Activity = this;

buttonView = FindViewById<Button>(Resource.Id.button1);
error = FindViewById<TextView>(Resource.Id.error);

buttonView.Click += StartQueryDetailsAsync;






public async void StartQueryDetailsAsync(object sender, EventArgs e)

Dictionary<string, Java.Lang.Object> user = new Dictionary<string, Java.Lang.Object>

"PurchaseToken", purchase.PurchaseToken ,
"QueryNumber", 1
;

firestore = FirebaseFirestore.Instance;
firestore.Collection("DineUser").Document(purchase.Id).Set(user).AddOnSuccessListener(this);



Error:



Java.Lang.IllegalArgumentException: FirebaseOptions.getProjectId() cannot be null at Java.Interop.JniEnvironment+StaticMethods.CallStaticObjectMethod (Java.Interop.JniObjectReference type, Java.Interop.JniMethodInfo method) [0x00068] in <8acc8089c2ed40d08469fbaa6710a44c>:0 at Android.Runtime.JNIEnv.CallStaticObjectMethod (System.IntPtr jclass, System.IntPtr jmethod) [0x0000e] in <957bbfdfda4341e2939c881206c1140a>:0 at Firebase.Firestore.FirebaseFirestore.get_Instance () [0x0002f] in <97744bd4f3f740c1884b76e44794b938>:0 at DineCam.Main.DrawRect+<Purchase>d__56.MoveNext () [0x00417] in D:DineCamDineCamMainDrawRect.cs:427 --- End of managed Java.Lang.IllegalArgumentException stack trace --- java.lang.IllegalArgumentException: FirebaseOptions.getProjectId() cannot be null at com.google.firebase.firestore.FirebaseFirestore.zze(Unknown Source) at com.google.firebase.firestore.FirebaseFirestore.getInstance(Unknown Source) at md580a1eddd40074c89f21a5ec99d8b044c.DrawRect.n_onActivityResult(Native Method) at md580a1eddd40074c89f21a5ec99d8b044c.DrawRect.onActivityResult(DrawRect.java:86) at android.app.Activity.dispatchActivityResult(Activity.java:6508) at android.app.ActivityThread.deliverResults(ActivityThread.java:3925) at android.app.ActivityThread.handleSendResult(ActivityThread.java:3972) at android.app.ActivityThread.-wrap16(ActivityThread.java) at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1537) at android.os.Handler.dispatchMessage(Handler.java:111) at android.os.Looper.loop(Looper.java:207) at android.app.ActivityThread.main(ActivityThread.java:5728) at java.lang.reflect.Method.invoke(Native Method) at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:789) at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:679) 









share|improve this question






















  • Which nuget version of the Play Services are you installing? If it is an older one due to some other dependency in your app, then review this issue as there are several workarounds available: github.com/xamarin/GooglePlayServicesComponents/issues/…

    – SushiHangover
    Mar 23 at 5:40












  • Tried this ,it reads everything from google-services.json file except the ProjectId . it gives the error Internal error in Firestore (0.6.6-dev). and i am using v60.1142.1 of Xamarin.GooglePlayServices.Basement

    – VINNUSAURUS
    Mar 23 at 6:45












  • Have you try manually assigning everything? : github.com/xamarin/GooglePlayServicesComponents/issues/…

    – SushiHangover
    Mar 23 at 6:58











  • tried same error Internal error in Firestore (0.6.6-dev).

    – VINNUSAURUS
    Mar 23 at 7:33











  • don't know why it works in one project and not in another ....

    – VINNUSAURUS
    Mar 23 at 7:46













0












0








0








I have implemented the below code in two projects, one works and the other does not work ,below is the code. i have checked other posts which says to use com.google.gms:google-services i have added Xamarin.GooglePlayServices.basement still it gives error, which GooglePlayServices plugin should i use for Xamarin ?



protected override void OnCreate(Bundle savedInstanceState)

base.OnCreate(savedInstanceState);

SetContentView(Resource.Layout.activity_main);

Firebase.FirebaseApp.InitializeApp(this);


Plugin.CurrentActivity.CrossCurrentActivity.Current.Activity = this;

buttonView = FindViewById<Button>(Resource.Id.button1);
error = FindViewById<TextView>(Resource.Id.error);

buttonView.Click += StartQueryDetailsAsync;






public async void StartQueryDetailsAsync(object sender, EventArgs e)

Dictionary<string, Java.Lang.Object> user = new Dictionary<string, Java.Lang.Object>

"PurchaseToken", purchase.PurchaseToken ,
"QueryNumber", 1
;

firestore = FirebaseFirestore.Instance;
firestore.Collection("DineUser").Document(purchase.Id).Set(user).AddOnSuccessListener(this);



Error:



Java.Lang.IllegalArgumentException: FirebaseOptions.getProjectId() cannot be null at Java.Interop.JniEnvironment+StaticMethods.CallStaticObjectMethod (Java.Interop.JniObjectReference type, Java.Interop.JniMethodInfo method) [0x00068] in <8acc8089c2ed40d08469fbaa6710a44c>:0 at Android.Runtime.JNIEnv.CallStaticObjectMethod (System.IntPtr jclass, System.IntPtr jmethod) [0x0000e] in <957bbfdfda4341e2939c881206c1140a>:0 at Firebase.Firestore.FirebaseFirestore.get_Instance () [0x0002f] in <97744bd4f3f740c1884b76e44794b938>:0 at DineCam.Main.DrawRect+<Purchase>d__56.MoveNext () [0x00417] in D:DineCamDineCamMainDrawRect.cs:427 --- End of managed Java.Lang.IllegalArgumentException stack trace --- java.lang.IllegalArgumentException: FirebaseOptions.getProjectId() cannot be null at com.google.firebase.firestore.FirebaseFirestore.zze(Unknown Source) at com.google.firebase.firestore.FirebaseFirestore.getInstance(Unknown Source) at md580a1eddd40074c89f21a5ec99d8b044c.DrawRect.n_onActivityResult(Native Method) at md580a1eddd40074c89f21a5ec99d8b044c.DrawRect.onActivityResult(DrawRect.java:86) at android.app.Activity.dispatchActivityResult(Activity.java:6508) at android.app.ActivityThread.deliverResults(ActivityThread.java:3925) at android.app.ActivityThread.handleSendResult(ActivityThread.java:3972) at android.app.ActivityThread.-wrap16(ActivityThread.java) at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1537) at android.os.Handler.dispatchMessage(Handler.java:111) at android.os.Looper.loop(Looper.java:207) at android.app.ActivityThread.main(ActivityThread.java:5728) at java.lang.reflect.Method.invoke(Native Method) at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:789) at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:679) 









share|improve this question














I have implemented the below code in two projects, one works and the other does not work ,below is the code. i have checked other posts which says to use com.google.gms:google-services i have added Xamarin.GooglePlayServices.basement still it gives error, which GooglePlayServices plugin should i use for Xamarin ?



protected override void OnCreate(Bundle savedInstanceState)

base.OnCreate(savedInstanceState);

SetContentView(Resource.Layout.activity_main);

Firebase.FirebaseApp.InitializeApp(this);


Plugin.CurrentActivity.CrossCurrentActivity.Current.Activity = this;

buttonView = FindViewById<Button>(Resource.Id.button1);
error = FindViewById<TextView>(Resource.Id.error);

buttonView.Click += StartQueryDetailsAsync;






public async void StartQueryDetailsAsync(object sender, EventArgs e)

Dictionary<string, Java.Lang.Object> user = new Dictionary<string, Java.Lang.Object>

"PurchaseToken", purchase.PurchaseToken ,
"QueryNumber", 1
;

firestore = FirebaseFirestore.Instance;
firestore.Collection("DineUser").Document(purchase.Id).Set(user).AddOnSuccessListener(this);



Error:



Java.Lang.IllegalArgumentException: FirebaseOptions.getProjectId() cannot be null at Java.Interop.JniEnvironment+StaticMethods.CallStaticObjectMethod (Java.Interop.JniObjectReference type, Java.Interop.JniMethodInfo method) [0x00068] in <8acc8089c2ed40d08469fbaa6710a44c>:0 at Android.Runtime.JNIEnv.CallStaticObjectMethod (System.IntPtr jclass, System.IntPtr jmethod) [0x0000e] in <957bbfdfda4341e2939c881206c1140a>:0 at Firebase.Firestore.FirebaseFirestore.get_Instance () [0x0002f] in <97744bd4f3f740c1884b76e44794b938>:0 at DineCam.Main.DrawRect+<Purchase>d__56.MoveNext () [0x00417] in D:DineCamDineCamMainDrawRect.cs:427 --- End of managed Java.Lang.IllegalArgumentException stack trace --- java.lang.IllegalArgumentException: FirebaseOptions.getProjectId() cannot be null at com.google.firebase.firestore.FirebaseFirestore.zze(Unknown Source) at com.google.firebase.firestore.FirebaseFirestore.getInstance(Unknown Source) at md580a1eddd40074c89f21a5ec99d8b044c.DrawRect.n_onActivityResult(Native Method) at md580a1eddd40074c89f21a5ec99d8b044c.DrawRect.onActivityResult(DrawRect.java:86) at android.app.Activity.dispatchActivityResult(Activity.java:6508) at android.app.ActivityThread.deliverResults(ActivityThread.java:3925) at android.app.ActivityThread.handleSendResult(ActivityThread.java:3972) at android.app.ActivityThread.-wrap16(ActivityThread.java) at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1537) at android.os.Handler.dispatchMessage(Handler.java:111) at android.os.Looper.loop(Looper.java:207) at android.app.ActivityThread.main(ActivityThread.java:5728) at java.lang.reflect.Method.invoke(Native Method) at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:789) at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:679) 






android firebase xamarin xamarin.android google-cloud-firestore






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Mar 23 at 5:28









VINNUSAURUSVINNUSAURUS

3621516




3621516












  • Which nuget version of the Play Services are you installing? If it is an older one due to some other dependency in your app, then review this issue as there are several workarounds available: github.com/xamarin/GooglePlayServicesComponents/issues/…

    – SushiHangover
    Mar 23 at 5:40












  • Tried this ,it reads everything from google-services.json file except the ProjectId . it gives the error Internal error in Firestore (0.6.6-dev). and i am using v60.1142.1 of Xamarin.GooglePlayServices.Basement

    – VINNUSAURUS
    Mar 23 at 6:45












  • Have you try manually assigning everything? : github.com/xamarin/GooglePlayServicesComponents/issues/…

    – SushiHangover
    Mar 23 at 6:58











  • tried same error Internal error in Firestore (0.6.6-dev).

    – VINNUSAURUS
    Mar 23 at 7:33











  • don't know why it works in one project and not in another ....

    – VINNUSAURUS
    Mar 23 at 7:46

















  • Which nuget version of the Play Services are you installing? If it is an older one due to some other dependency in your app, then review this issue as there are several workarounds available: github.com/xamarin/GooglePlayServicesComponents/issues/…

    – SushiHangover
    Mar 23 at 5:40












  • Tried this ,it reads everything from google-services.json file except the ProjectId . it gives the error Internal error in Firestore (0.6.6-dev). and i am using v60.1142.1 of Xamarin.GooglePlayServices.Basement

    – VINNUSAURUS
    Mar 23 at 6:45












  • Have you try manually assigning everything? : github.com/xamarin/GooglePlayServicesComponents/issues/…

    – SushiHangover
    Mar 23 at 6:58











  • tried same error Internal error in Firestore (0.6.6-dev).

    – VINNUSAURUS
    Mar 23 at 7:33











  • don't know why it works in one project and not in another ....

    – VINNUSAURUS
    Mar 23 at 7:46
















Which nuget version of the Play Services are you installing? If it is an older one due to some other dependency in your app, then review this issue as there are several workarounds available: github.com/xamarin/GooglePlayServicesComponents/issues/…

– SushiHangover
Mar 23 at 5:40






Which nuget version of the Play Services are you installing? If it is an older one due to some other dependency in your app, then review this issue as there are several workarounds available: github.com/xamarin/GooglePlayServicesComponents/issues/…

– SushiHangover
Mar 23 at 5:40














Tried this ,it reads everything from google-services.json file except the ProjectId . it gives the error Internal error in Firestore (0.6.6-dev). and i am using v60.1142.1 of Xamarin.GooglePlayServices.Basement

– VINNUSAURUS
Mar 23 at 6:45






Tried this ,it reads everything from google-services.json file except the ProjectId . it gives the error Internal error in Firestore (0.6.6-dev). and i am using v60.1142.1 of Xamarin.GooglePlayServices.Basement

– VINNUSAURUS
Mar 23 at 6:45














Have you try manually assigning everything? : github.com/xamarin/GooglePlayServicesComponents/issues/…

– SushiHangover
Mar 23 at 6:58





Have you try manually assigning everything? : github.com/xamarin/GooglePlayServicesComponents/issues/…

– SushiHangover
Mar 23 at 6:58













tried same error Internal error in Firestore (0.6.6-dev).

– VINNUSAURUS
Mar 23 at 7:33





tried same error Internal error in Firestore (0.6.6-dev).

– VINNUSAURUS
Mar 23 at 7:33













don't know why it works in one project and not in another ....

– VINNUSAURUS
Mar 23 at 7:46





don't know why it works in one project and not in another ....

– VINNUSAURUS
Mar 23 at 7:46












1 Answer
1






active

oldest

votes


















0














I have changed the Xamarin.GooglePlayServices.basement and Xamarin.Firebase.Firestore versions from v60.1142.1 stable version to v71.1500.0-preview1 and all Xamarin.Android.Support libraries to v28.0.0.1 and it works now, previously my project was not allowing to install preview version, i created a new project and added the preview versions and it works now.






share|improve this answer























    Your Answer






    StackExchange.ifUsing("editor", function ()
    StackExchange.using("externalEditor", function ()
    StackExchange.using("snippets", function ()
    StackExchange.snippets.init();
    );
    );
    , "code-snippets");

    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "1"
    ;
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function()
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled)
    StackExchange.using("snippets", function()
    createEditor();
    );

    else
    createEditor();

    );

    function createEditor()
    StackExchange.prepareEditor(
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader:
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    ,
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );













    draft saved

    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55310906%2ffirebaseoptions-getprojectid-cannot-be-null-xamarin-android%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    0














    I have changed the Xamarin.GooglePlayServices.basement and Xamarin.Firebase.Firestore versions from v60.1142.1 stable version to v71.1500.0-preview1 and all Xamarin.Android.Support libraries to v28.0.0.1 and it works now, previously my project was not allowing to install preview version, i created a new project and added the preview versions and it works now.






    share|improve this answer



























      0














      I have changed the Xamarin.GooglePlayServices.basement and Xamarin.Firebase.Firestore versions from v60.1142.1 stable version to v71.1500.0-preview1 and all Xamarin.Android.Support libraries to v28.0.0.1 and it works now, previously my project was not allowing to install preview version, i created a new project and added the preview versions and it works now.






      share|improve this answer

























        0












        0








        0







        I have changed the Xamarin.GooglePlayServices.basement and Xamarin.Firebase.Firestore versions from v60.1142.1 stable version to v71.1500.0-preview1 and all Xamarin.Android.Support libraries to v28.0.0.1 and it works now, previously my project was not allowing to install preview version, i created a new project and added the preview versions and it works now.






        share|improve this answer













        I have changed the Xamarin.GooglePlayServices.basement and Xamarin.Firebase.Firestore versions from v60.1142.1 stable version to v71.1500.0-preview1 and all Xamarin.Android.Support libraries to v28.0.0.1 and it works now, previously my project was not allowing to install preview version, i created a new project and added the preview versions and it works now.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Mar 23 at 17:14









        VINNUSAURUSVINNUSAURUS

        3621516




        3621516





























            draft saved

            draft discarded
















































            Thanks for contributing an answer to Stack Overflow!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid


            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.

            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55310906%2ffirebaseoptions-getprojectid-cannot-be-null-xamarin-android%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

            용인 삼성생명 블루밍스 목차 통계 역대 감독 선수단 응원단 경기장 같이 보기 외부 링크 둘러보기 메뉴samsungblueminx.comeh선수 명단용인 삼성생명 블루밍스용인 삼성생명 블루밍스ehsamsungblueminx.comeheheheh

            155 수학 과학 기타 둘러보기 메뉴eh추가해eh문서를 완성해