RaphaelNSG

Results 9 comments of RaphaelNSG

Hey @adamschlesinger sorry for the delay. Actually this error is happening on Android and IOS in many devices. For exemple: - Iphone XR = 15.4.1 - Iphone 6 = 12.5.5-...

IOS error: ``` Non-fatal Exception: NullReferenceException 0 ??? 0x0 MoveNext (OneSignalService+d__0) 1 ??? 0x0 Invoke (System.Threading.ContextCallback) 2 ??? 0x0 RunInternal (System.Threading.ExecutionContext) 3 ??? 0x0 Run (System.Runtime.CompilerServices.AsyncMethodBuilderCore+MoveNextRunner) 4 ??? 0x0 Invoke...

@jkasten2 I figure out that the `GetTags()` function is returning 'null' and that is what is causing the `NullReferenceException`. This is my function: ```csharp public static async void SendIncrementalData(string key)...

@adamschlesinger thanks for the answer, but this is new because in the older version this never happened, so it might be a good idea to update the documentation with this...

I got a way to fix token expiration by just calling refresh token after successful login. This is my login flow: - Log in to Facebook (the expiration date is...

Hello @Thaina , With new version of Unity the GPGSUtil.cs it's not finding the the plugin folder when using UPM. Can you already fix this on this Pull Request? Issue:...

@Thaina With me and with the people on this (https://github.com/playgameservices/play-games-plugin-for-unity/issues/3163) issue is happening. Did you tried with Unity 2022? My Unity is 2022.3.58f1 and my OS is MacOS 14

Actually o notice that in you branch the GPGSUilt.cs its already updated to search in the cache package: ```csharp #if UNITY_2018_4_OR_NEWER // search for remote UPM installation Path.Join("Library","PackageCache"), "Packages", #endif...