From d479d930d86ba096bcfc5144c38416097d474626 Mon Sep 17 00:00:00 2001 From: Suriya K <58582081+SuriyaKannimuthu@users.noreply.github.com> Date: Fri, 21 Nov 2025 17:25:53 +0530 Subject: [PATCH] Update UnityNativeRequest.cs * Unity 2021 - using System.Text; - added --- .../Native/UnityNativeWrapper/Models/UnityNativeRequest.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CleverTap/Runtime/Native/UnityNativeWrapper/Models/UnityNativeRequest.cs b/CleverTap/Runtime/Native/UnityNativeWrapper/Models/UnityNativeRequest.cs index ea37cbb1..0c7d9389 100644 --- a/CleverTap/Runtime/Native/UnityNativeWrapper/Models/UnityNativeRequest.cs +++ b/CleverTap/Runtime/Native/UnityNativeWrapper/Models/UnityNativeRequest.cs @@ -1,6 +1,9 @@ #if (!UNITY_IOS && !UNITY_ANDROID) || UNITY_EDITOR using System; using System.Collections.Generic; +#if !UNITY_2022_1_OR_NEWER +using System.Text; +#endif using CleverTapSDK.Utilities; using UnityEngine.Networking;