com.amanotes.gdk 0.2.32 → 0.2.34
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/CHANGELOG.md +8 -0
- package/Editor/AmaGDKEditor.cs +5 -1
- package/Editor/Utils/AmaGDKEditor.ExtractVersion.cs +0 -1
- package/Extra/AmaGDKInstaller.unitypackage +0 -0
- package/Extra/AmaGDKProject.unitypackage +0 -0
- package/Packages/AmaGDKConfig.unitypackage +0 -0
- package/Packages/AmaGDKExample.unitypackage +0 -0
- package/Packages/AmaGDKTest.unitypackage +0 -0
- package/Packages/AppsFlyerAdRevenuePlugin.unitypackage +0 -0
- package/Packages/AppsFlyerAdapter_v6.5.4.unitypackage +0 -0
- package/Packages/FirebaseAnalyticsAdapter_v9.1.0.unitypackage +0 -0
- package/Packages/FirebaseRemoteConfigAdapter_v9.1.0.unitypackage +0 -0
- package/Packages/IronSourceAdapter_v7.2.6.unitypackage +0 -0
- package/Packages/RevenueCatAdapter_v6.0.0.unitypackage +0 -0
- package/Runtime/AmaGDK.Utils.cs +3 -3
- package/Runtime/AmaGDK.cs +1 -2
- package/package.json +1 -1
- package/Packages/AdjustAdapter_v4.33.0.unitypackage +0 -0
- package/Packages/AdjustAdapter_v4.33.0.unitypackage.meta +0 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.2.34 - 2023-11-10]
|
|
4
|
+
- [Fix] ShowSuccessed event not call in editor
|
|
5
|
+
- Add clear all data button on AmaGDK prefab
|
|
6
|
+
|
|
7
|
+
## [0.2.33 - 2023-11-09]
|
|
8
|
+
- Remove Adjust
|
|
9
|
+
- Update RevenueCat attributes
|
|
10
|
+
|
|
3
11
|
## [0.2.32 - 2023-11-08]
|
|
4
12
|
- User mapping
|
|
5
13
|
- Auto log Ad events
|
package/Editor/AmaGDKEditor.cs
CHANGED
|
@@ -35,7 +35,6 @@ namespace Amanotes.Editor
|
|
|
35
35
|
FIREBASE_ANALYTICS,
|
|
36
36
|
FIREBASE_REMOTE_CONFIG,
|
|
37
37
|
APPSFLYER,
|
|
38
|
-
ADJUST,
|
|
39
38
|
IRONSOURCE,
|
|
40
39
|
REVENUECAT
|
|
41
40
|
};
|
|
@@ -230,6 +229,11 @@ namespace Amanotes.Editor
|
|
|
230
229
|
ToggleGroup("Adapters", ref showAdapterInstaller, DrawGUI_AdapterList);
|
|
231
230
|
|
|
232
231
|
//("Example", ref showExampleDetail, DrawGUI_ExampleScene);
|
|
232
|
+
|
|
233
|
+
if (GUILayout.Button("Clear All Data"))
|
|
234
|
+
{
|
|
235
|
+
GDKFileUtils.ClearCacheData();
|
|
236
|
+
}
|
|
233
237
|
}
|
|
234
238
|
|
|
235
239
|
private static void DrawVersion(string label, string version)
|
|
@@ -101,7 +101,6 @@ namespace Amanotes.Editor
|
|
|
101
101
|
case FIREBASE_ANALYTICS: return FirebaseAnalytics();
|
|
102
102
|
case FIREBASE_REMOTE_CONFIG: return FirebaseRemoteConfig();
|
|
103
103
|
case APPSFLYER: return AppsFlyer();
|
|
104
|
-
case ADJUST: return Adjust();
|
|
105
104
|
case IRONSOURCE: return Ironsource();
|
|
106
105
|
case REVENUECAT: return RevenueCat();
|
|
107
106
|
default:
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/Runtime/AmaGDK.Utils.cs
CHANGED
|
@@ -168,13 +168,13 @@ namespace Amanotes.Core.Internal
|
|
|
168
168
|
StringBuilder logBuilder = new StringBuilder();
|
|
169
169
|
logBuilder.AppendLine("[AmaGDK] All cached data & stats cleared");
|
|
170
170
|
|
|
171
|
-
if (!Directory.Exists(
|
|
171
|
+
if (!Directory.Exists(basePath))
|
|
172
172
|
{
|
|
173
|
-
logBuilder.AppendLine("Cache path not exists: " +
|
|
173
|
+
logBuilder.AppendLine("Cache path not exists: " + basePath);
|
|
174
174
|
return;
|
|
175
175
|
}
|
|
176
176
|
|
|
177
|
-
string[] filePaths = Directory.GetFiles(
|
|
177
|
+
string[] filePaths = Directory.GetFiles(basePath);
|
|
178
178
|
foreach (string path in filePaths)
|
|
179
179
|
{
|
|
180
180
|
Delete(path);
|
package/Runtime/AmaGDK.cs
CHANGED
|
@@ -14,7 +14,7 @@ namespace Amanotes.Core
|
|
|
14
14
|
{
|
|
15
15
|
public partial class AmaGDK : MonoBehaviour
|
|
16
16
|
{
|
|
17
|
-
public const string VERSION = "0.2.
|
|
17
|
+
public const string VERSION = "0.2.34";
|
|
18
18
|
|
|
19
19
|
internal static AmaGDK _instance;
|
|
20
20
|
internal static Status _status = Status.None;
|
|
@@ -251,7 +251,6 @@ namespace Amanotes.Core
|
|
|
251
251
|
public const string FIREBASE_ANALYTICS = "FirebaseAnalytics";
|
|
252
252
|
public const string FIREBASE_REMOTE_CONFIG = "FirebaseRemoteConfig";
|
|
253
253
|
public const string APPSFLYER = "AppsFlyer";
|
|
254
|
-
public const string ADJUST = "Adjust";
|
|
255
254
|
public const string IRONSOURCE = "IronSource";
|
|
256
255
|
public const string REVENUECAT = "RevenueCat";
|
|
257
256
|
}
|
package/package.json
CHANGED
|
Binary file
|