com.xd.sdk.tap 4.8.1-xd.2 → 4.8.1-xd.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Editor/Android/TapWrapperAndroidGradleProcessor.cs +1 -3
- package/Editor/XD.SDK.Tap.Editor.asmdef +18 -0
- package/Editor/XD.SDK.Tap.Editor.asmdef.meta +7 -0
- package/Runtime/Internal/TapComplianceHelper.cs +8 -0
- package/Runtime/Public/TapSDKEventHandler.cs +1 -0
- package/package.json +1 -1
- /package/Plugins/Android/{XDGBridgeTapTapWrapper_v7_7.0.1.aar → XDGBridgeTapTapWrapper_v7_7.1.0.aar} +0 -0
- /package/Plugins/Android/{XDGBridgeTapTapWrapper_v7_7.0.1.aar.meta → XDGBridgeTapTapWrapper_v7_7.1.0.aar.meta} +0 -0
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
#if UNITY_EDITOR && UNITY_ANDROID
|
|
2
1
|
using System.Collections.Generic;
|
|
3
2
|
using XD.SDK.Foundation.Mobile.Editor;
|
|
4
3
|
using XD.SDK.Foundation.Mobile.Editor.Android;
|
|
@@ -44,5 +43,4 @@ namespace XD.SDK.Tap.Editor
|
|
|
44
43
|
return dependencies;
|
|
45
44
|
}
|
|
46
45
|
}
|
|
47
|
-
}
|
|
48
|
-
#endif
|
|
46
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "XD.SDK.Tap.Editor",
|
|
3
|
+
"rootNamespace": "",
|
|
4
|
+
"references": [
|
|
5
|
+
"GUID:11227cad437d44898c9c5389c8672caa"
|
|
6
|
+
],
|
|
7
|
+
"includePlatforms": [
|
|
8
|
+
"Editor"
|
|
9
|
+
],
|
|
10
|
+
"excludePlatforms": [],
|
|
11
|
+
"allowUnsafeCode": false,
|
|
12
|
+
"overrideReferences": false,
|
|
13
|
+
"precompiledReferences": [],
|
|
14
|
+
"autoReferenced": true,
|
|
15
|
+
"defineConstraints": [],
|
|
16
|
+
"versionDefines": [],
|
|
17
|
+
"noEngineReferences": false
|
|
18
|
+
}
|
|
@@ -118,6 +118,10 @@ namespace XD.SDK.Tap.Internal
|
|
|
118
118
|
case StartUpResult.EXITED:
|
|
119
119
|
if (loginProcessComplianceResult == null)
|
|
120
120
|
{
|
|
121
|
+
if (AccountFeaturesImpl.Instance.GetCurrentUser() == null)
|
|
122
|
+
{
|
|
123
|
+
return;
|
|
124
|
+
}
|
|
121
125
|
AccountFeaturesImpl.Instance.InternalLogout("COMPLIANCE_EXIT");
|
|
122
126
|
}
|
|
123
127
|
else
|
|
@@ -129,6 +133,10 @@ namespace XD.SDK.Tap.Internal
|
|
|
129
133
|
case StartUpResult.SWITCH_ACCOUNT:
|
|
130
134
|
if (loginProcessComplianceResult == null)
|
|
131
135
|
{
|
|
136
|
+
if (AccountFeaturesImpl.Instance.GetCurrentUser() == null)
|
|
137
|
+
{
|
|
138
|
+
return;
|
|
139
|
+
}
|
|
132
140
|
AccountFeaturesImpl.Instance.InternalLogout("SWITCH_ACCOUNT");
|
|
133
141
|
}
|
|
134
142
|
else
|
package/package.json
CHANGED
/package/Plugins/Android/{XDGBridgeTapTapWrapper_v7_7.0.1.aar → XDGBridgeTapTapWrapper_v7_7.1.0.aar}
RENAMED
|
File without changes
|
|
File without changes
|