com.amanotes.gdk 0.2.33 → 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 +4 -0
- package/Editor/AmaGDKEditor.cs +5 -0
- 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 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/Editor/AmaGDKEditor.cs
CHANGED
|
@@ -229,6 +229,11 @@ namespace Amanotes.Editor
|
|
|
229
229
|
ToggleGroup("Adapters", ref showAdapterInstaller, DrawGUI_AdapterList);
|
|
230
230
|
|
|
231
231
|
//("Example", ref showExampleDetail, DrawGUI_ExampleScene);
|
|
232
|
+
|
|
233
|
+
if (GUILayout.Button("Clear All Data"))
|
|
234
|
+
{
|
|
235
|
+
GDKFileUtils.ClearCacheData();
|
|
236
|
+
}
|
|
232
237
|
}
|
|
233
238
|
|
|
234
239
|
private static void DrawVersion(string label, string version)
|
|
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