[WIP] firebase init Error
This commit is contained in:
18
sdk-intergration/Packages/tysdk/Runtime/AppRequestReview.cs
Normal file
18
sdk-intergration/Packages/tysdk/Runtime/AppRequestReview.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using UnityEngine;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
namespace tysdk
|
||||
{
|
||||
public static class AppRequestReview
|
||||
{
|
||||
#if UNITY_EDITOR || UNITY_ANDROID
|
||||
public static void RequestReview(string customReviewURL)
|
||||
{
|
||||
Debug.Log("RequestReview is not supported on this platform");
|
||||
}
|
||||
#elif UNITY_IOS
|
||||
[DllImport("__Internal")]
|
||||
public static extern void RequestReview(string customReviewURL);
|
||||
#endif
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user