doom-goober

Results 11 comments of doom-goober

> What I'm considering right now it's not only Facebook and Firebase issue, but also it can belong to Unity itself. Because enableJetifier and useAndroidX were enabled in Unity mainTemplate.gradle...

@LunarInteractiveArts I tried 7.19.2 but it didn't work, sadly. However, there's a solution posted on this bug: https://github.com/googlesamples/unity-jar-resolver/issues/360 that does work!

@jackatfp Did you try @gromilQaaaa 's solution? Here's a direct link to the section of the document that got my build working from Unity again: https://documentation.onesignal.com/docs/troubleshooting-unity#unity-20193-or-newer It's the section where...

To be extra clear, here's the analytics call in JavaScript: ``` firebase.analytics().logEvent("view_item", { currency: "someCurrencyName", value: 12, items: [{item_id: "someID"}] } ); ``` Notice in Javascript that the "items" event...

@nthykier Sorry for leaving this pull request open for so long. Real life threw some turbulence at me, but I have finally incorporated your suggestions. Sorry again.

To expand on @nwmqpa 's problem. If you follow the instructions on https://firebase.google.com/docs/unity/setup it tells you to first install EDM then uninstall your old Firebase packages, do somethings with EDM,...

> Still an issue in March 2020 > > * Unity 2019.3.4f1 > * Facebook SDK 7.18.1 > * IronSource SDK 6.15.0.1 > > Can't build with i think any...

For anyone still stuck on this: 1) You can fix it using Android Studio (as I mentioned above.) 2) There is also a solution from onesignal : https://documentation.onesignal.com/docs/troubleshooting-unity#section-android-x-compatibility that lets...

The cause of the no blinking cursor/caret is this in setEventCallbacks(): ``` editor.onFocus = () => { setCommandEnabled(editor, "indent", true); setCommandEnabled(editor, "outdent", true); dispatch("focus"); } ``` Replace it with this...

For anyone desperately looking for a solution, protobufjs (https://www.npmjs.com/package/protobufjs) "supports" Protobuf from Javascript and can generate proto3 JSON. However, be warned that protobufjs takes pretty much the opposite design philosophy...