com.amanotes.gdk 0.2.16 → 0.2.17

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 CHANGED
@@ -1,5 +1,8 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.2.17 - 2023-08-29]
4
+ ### Support Unity 2019.4
5
+
3
6
  ## [0.2.14 - 2023-08-08]
4
7
  ### Support multiple embed remote config and load config by id
5
8
  ### Clear cached remote config on new app update
@@ -12,9 +12,6 @@ namespace Amanotes.Core
12
12
  {
13
13
  internal class MatchSDKVersion
14
14
  {
15
- private static string defineVer = "#define VER_";
16
- private static string comment = "//";
17
-
18
15
  private static Dictionary<string, string> sdkToClassMap = new Dictionary<string, string>
19
16
  {
20
17
  { "FirebaseAnalytics", "FirebaseAnalyticsAdapter" },
@@ -114,7 +111,7 @@ namespace Amanotes.Core
114
111
  string dataPath = Path.Combine(Application.dataPath, "AmaGDK/Adapters");
115
112
  if (!Directory.Exists(dataPath))
116
113
  {
117
- Logging.Log($"{dataPath} is not found");
114
+ Debug.Log($"{dataPath} is not found");
118
115
  return;
119
116
  }
120
117
  DirectoryInfo directory = new DirectoryInfo(dataPath);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "com.amanotes.gdk",
3
- "version": "0.2.16",
3
+ "version": "0.2.17",
4
4
  "displayName": "AmaGDK",
5
5
  "description": "Amanotes Game Development Kit",
6
6
  "unity": "2019.4",