com.amanotes.gdk 0.2.91 → 0.2.92
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 +3 -0
- package/Editor/AmaGDKEditor.cs +1 -1
- package/Editor/AmaGDKExtra.cs +3 -3
- package/Editor/EmbedRemoteConfigAssetInspector.cs +1 -1
- package/Editor/Extra/GDKAutoUpdateAdapter.cs +1 -1
- package/Editor/Extra/GDKLocalBuild.cs +1 -1
- package/Editor/Extra/GDKPostBuildAsset.cs +1 -1
- package/Editor/Extra/SDKVersionTracking.cs +1 -1
- package/Editor/HideInNormalInspectorDrawer.cs +1 -1
- package/Editor/MatchSDKVersion.cs +0 -1
- package/Editor/Utils/AmaGDKEditor.ExtractVersion.Max.cs +1 -1
- package/Editor/Utils/AmaGDKEditor.ExtractVersion.cs +1 -1
- package/Editor/Utils/AmaGDKEditor.Utils.cs +1 -1
- package/Editor/Utils/GDKPackageInstaller.cs +1 -1
- package/Extra/AmaGDKInstaller.unitypackage +0 -0
- package/Extra/AutoEventQC.unitypackage +0 -0
- package/Extra/CheckDiskSpace.unitypackage +0 -0
- package/Extra/Consent.unitypackage +0 -0
- package/Extra/CrashlyticHook.unitypackage +0 -0
- package/Extra/ForceUpdate.unitypackage +0 -0
- package/Extra/LegacyGDKUpdateHelper.unitypackage +0 -0
- package/Extra/PostProcessor.unitypackage +0 -0
- package/Packages/AmaGDKConfig.unitypackage +0 -0
- package/Packages/AmaGDKExample.unitypackage +0 -0
- package/Packages/AmaGDKTest.unitypackage +0 -0
- package/Packages/AppsFlyerAdapter.PurchaseConnector.unitypackage +0 -0
- package/Packages/AppsFlyerAdapter.unitypackage +0 -0
- package/Packages/FirebaseAnalyticsAdapter.unitypackage +0 -0
- package/Packages/FirebaseRemoteConfigAdapter.unitypackage +0 -0
- package/Packages/IronSourceAdapter.unitypackage +0 -0
- package/Packages/MaxAdNetworkAdapter.unitypackage +0 -0
- package/Packages/RevenueCatAdapter.unitypackage +0 -0
- package/Packages/SqliteAnalyticsAdapter.unitypackage +0 -0
- package/Runtime/AmaGDK.cs +1 -1
- package/Runtime/UI/ScrollView/Editor/GDKScrollViewEditor.cs +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/Editor/AmaGDKEditor.cs
CHANGED
|
@@ -15,7 +15,7 @@ using Amanotes.Core.Internal;
|
|
|
15
15
|
using static Amanotes.Core.GDKDebug;
|
|
16
16
|
using static Amanotes.Core.AmaGDK.AdapterID;
|
|
17
17
|
|
|
18
|
-
namespace Amanotes.
|
|
18
|
+
namespace Amanotes.Core
|
|
19
19
|
{
|
|
20
20
|
[CustomEditor(typeof(AmaGDK))]
|
|
21
21
|
internal class AmaGDKEditor : UnityEditor.Editor
|
package/Editor/AmaGDKExtra.cs
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
using System.Collections.Generic;
|
|
2
|
-
using
|
|
2
|
+
using UnityEditor;
|
|
3
3
|
|
|
4
|
-
namespace Amanotes.
|
|
4
|
+
namespace Amanotes.Core
|
|
5
5
|
{
|
|
6
|
-
public class AmaGDKExtra :
|
|
6
|
+
public class AmaGDKExtra : Editor
|
|
7
7
|
{
|
|
8
8
|
public static Dictionary<string, object> GetThirdPartyVersions()
|
|
9
9
|
{
|
|
@@ -9,7 +9,7 @@ using UnityEngine.Events;
|
|
|
9
9
|
using Debug = UnityEngine.Debug;
|
|
10
10
|
using UnityObject = UnityEngine.Object;
|
|
11
11
|
|
|
12
|
-
namespace Amanotes.
|
|
12
|
+
namespace Amanotes.Core
|
|
13
13
|
{
|
|
14
14
|
[CreateAssetMenu(menuName = "Ama GDK/Local Build Config", fileName = "LocalBuild")]
|
|
15
15
|
public class GDKLocalBuild : ScriptableObject
|
|
@@ -12,7 +12,7 @@ using UnityEditor.iOS.Xcode;
|
|
|
12
12
|
using UnityEditor.iOS.Xcode.Extensions;
|
|
13
13
|
#endif
|
|
14
14
|
|
|
15
|
-
namespace Amanotes.
|
|
15
|
+
namespace Amanotes.Core
|
|
16
16
|
{
|
|
17
17
|
[CreateAssetMenu(fileName = "GDKPostBuildAsset", menuName = "Ama GDK/GDKPostBuildAsset", order = 1)]
|
|
18
18
|
public class GDKPostBuildAsset : ScriptableObject
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
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.cs
CHANGED
|
@@ -27,7 +27,7 @@ namespace Amanotes.Core
|
|
|
27
27
|
{
|
|
28
28
|
public partial class AmaGDK : MonoBehaviour
|
|
29
29
|
{
|
|
30
|
-
public const string VERSION = "0.2.
|
|
30
|
+
public const string VERSION = "0.2.92";
|
|
31
31
|
|
|
32
32
|
internal static Status _status = Status.None;
|
|
33
33
|
internal static ConfigAsset _config = null;
|