vD() (in out/main.js), the ipc message serializer, throws an uncaught exception when passed a BigInt value (this happens when the google account that is trying to be logged in requires additional verification).
the function handles undefined, string, Buffer, VSBuffer, Array, and integer number, but has no BigInt branch and values fall through to the JSON.stringify catch-all, which throws an error on bigints.
[main 2026-03-12T00:03:15.163Z] [uncaught exception in main]: TypeError: Do not know how to serialize a BigInt
[main 2026-03-12T00:03:15.166Z] TypeError: Do not know how to serialize a BigInt
at JSON.stringify ()
at vD (file:///C:/Users/Mira%C3%A7/AppData/Local/Programs/Antigravity/resources/app/out/main.js:31:11765)
at nve.o (file:///C:/Users/Mira%C3%A7/AppData/Local/Programs/Antigravity/resources/app/out/main.js:31:14636)
at nve.m (file:///C:/Users/Mira%C3%A7/AppData/Local/Programs/Antigravity/resources/app/out/main.js:31:14511)
at wW.value (file:///C:/Users/Mira%C3%A7/AppData/Local/Programs/Antigravity/resources/app/out/main.js:32:265)
at jt.C (file:///C:/Users/Mira%C3%A7/AppData/Local/Programs/Antigravity/resources/app/out/main.js:30:2348)
repro: any ipc call passing a BigInt value triggers this.
expected: bigint serialized gracefully Actual: uncaught exception crashes main process
suggested fix: add a bigint branch, or patch the json fallback.
