com.azerion.bluestack 3.1.8 → 3.1.9
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 +7 -1
- package/Editor/Android/Gradle/GradleConfigUtils.cs +0 -3
- package/Editor/Android/ManifestProcessor.cs +0 -3
- package/Editor/BlueStackAssetPostProcessor.cs +0 -1
- package/Editor/BlueStackSettings.cs +0 -3
- package/Editor/BlueStackSettingsEditor.cs +0 -2
- package/Editor/Constants.cs +0 -3
- package/Editor/iOS/BlueStackBuildPostProcess.cs +0 -1
- package/Editor/iOS/IOSDependencyModifier.cs +0 -2
- package/Editor/iOS/IOSDependencyParser.cs +0 -1
- package/Example/Scripts/NativeAdManager.cs +0 -4
- package/Example/Scripts/SmallNativeAdManager.cs +0 -4
- package/Runtime/API/Banner/BannerAd.cs +0 -2
- package/Runtime/API/NativeAd/NativeAd.cs +0 -1
- package/Runtime/API/NativeAd/NativeAdLoader.cs +0 -2
- package/Runtime/API/NativeAd/NativeAdObject.cs +0 -3
- package/Runtime/Internal/IBannerAdClient.cs +0 -1
- package/Runtime/Internal/NativeAd/INativeAdClient.cs +0 -1
- package/Runtime/Platforms/Unity/BaseAdClient.cs +0 -1
- package/Runtime/Platforms/Unity/BlueStackClient.cs +0 -1
- package/Runtime/Platforms/Unity/NativeAdClient.cs +0 -2
- package/Runtime/Platforms/Unity/Utils.cs +0 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,16 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [3.1.9] - 2024-11-07
|
|
4
|
+
|
|
5
|
+
### fixed
|
|
6
|
+
|
|
7
|
+
- Removed unused namespaces and fixed assembly reference missing issue.
|
|
8
|
+
|
|
3
9
|
## [3.1.8] - 2024-11-07
|
|
4
10
|
|
|
5
11
|
### Changed
|
|
6
12
|
|
|
7
|
-
- BlueStackSettings Initialization on AssetPostProcess
|
|
13
|
+
- BlueStackSettings Initialization on AssetPostProcess.
|
|
8
14
|
|
|
9
15
|
## [3.1.7] - 2024-10-23
|
|
10
16
|
|
package/Editor/Constants.cs
CHANGED
|
@@ -1,11 +1,8 @@
|
|
|
1
1
|
using Azerion.BlueStack.Common;
|
|
2
2
|
using System;
|
|
3
3
|
using System.Collections.Generic;
|
|
4
|
-
using System.Threading;
|
|
5
|
-
using Codice.Client.BaseCommands.Merge.Xml;
|
|
6
4
|
using UnityEngine;
|
|
7
5
|
using UnityEngine.EventSystems;
|
|
8
|
-
using UnityEngine.Serialization;
|
|
9
6
|
using UnityEngine.UI;
|
|
10
7
|
|
|
11
8
|
namespace Azerion.BlueStack.API
|
package/package.json
CHANGED