Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion SingularSDK/Editor/SingularSDKDependencies.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<dependencies>
<androidPackages>
<androidPackage spec="com.singular.sdk:singular_kids_sdk:12.9.0">
<androidPackage spec="com.singular.sdk:singular_kids_sdk:12.9.1">
<repositories>
<repository>https://maven.singular.net</repository>
</repositories>
Expand Down
Binary file not shown.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 1 addition & 17 deletions SingularSDK/Runtime/SingularSDK.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public class SingularSDK : MonoBehaviour
public static bool Initialized { get; private set; } = false;

private const string UNITY_WRAPPER_NAME = "Unity";
private const string UNITY_VERSION = "5.4.0-KIDS";
private const string UNITY_VERSION = "5.4.1-KIDS";

// ios-only:
[Obsolete]
Expand All @@ -46,7 +46,6 @@ public class SingularSDK : MonoBehaviour
public string facebookAppId;
public bool collectOAID = false;

private static string imei;
#if UNITY_ANDROID
static AndroidJavaClass singular;
static AndroidJavaClass jclass;
Expand Down Expand Up @@ -199,7 +198,6 @@ private static SingularConfig BuildSingularConfig()
#if UNITY_ANDROID
config.SetValue("facebookAppId", instance.facebookAppId);
config.SetValue("customUserId", customUserId);
config.SetValue("imei", imei);
config.SetValue("openUri", openUri);
config.SetValue("ddlTimeoutSec", instance.ddlTimeoutSec);
config.SetValue("enableDeferredDeepLinks", enableDeferredDeepLinks);
Expand Down Expand Up @@ -1707,20 +1705,6 @@ public static void AdRevenue(SingularAdData adData)
}
}

#if UNITY_ANDROID
public static void SetIMEI(string imeiData) {
if (Application.isEditor) {
return;
}

if (singular != null) {
singular.CallStatic("setIMEI", imeiData);
} else {
imei = imeiData;
}
}
#endif

#region Global Properties

public static Dictionary<string, string> GetGlobalProperties()
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "singular-unity-kids-package",
"version": "5.4.0",
"version": "5.4.1",
"displayName": "Singular Kids",
"description": "Singular Unity Kids Package",
"type": "library",
Expand Down