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;
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)
add a comment |
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)
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
add a comment |
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)
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)
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
add a comment |
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
add a comment |
1 Answer
1
active
oldest
votes
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.
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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.
add a comment |
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.
add a comment |
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.
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.
answered Mar 23 at 17:14
VINNUSAURUSVINNUSAURUS
3621516
3621516
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
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