com.azerion.bluestack 3.1.0 → 3.1.1

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.
@@ -1,6 +1,6 @@
1
1
  <dependencies>
2
2
  <androidPackages>
3
- <androidPackage spec="com.azerion:bluestack-sdk-core:4.3.1"/>
3
+ <androidPackage spec="com.azerion:bluestack-sdk-core:4.3.2"/>
4
4
  </androidPackages>
5
5
  <iosPods>
6
6
  <iosPod name="BlueStack-SDK" version="4.4.4" bitcodeEnabled="false" addToAllTargets="false" subspecs="[]"/>
@@ -4,6 +4,5 @@
4
4
  <iosNetworks>
5
5
  <network name="AdMob" package="Google-Mobile-Ads-SDK" active="true"/>
6
6
  <network name="Smart Display" package="Smart-Display-SDK" active="true"/>
7
- <network name="In-App Bidding" package="In-App-Bidding" active="true"/>
8
7
  </iosNetworks>
9
8
  </networkList>
@@ -72,7 +72,7 @@ namespace Azerion.BlueStack.Editor
72
72
 
73
73
  public static void SyncMediationDependencies()
74
74
  {
75
- // if file doesn't exists, just copy from the source
75
+ // Copy from the source
76
76
  CopyDependenciesXMLFileToAssets();
77
77
  if (CopyMediationDependenciesXMLFileToAssets())
78
78
  {
@@ -188,20 +188,14 @@ namespace Azerion.BlueStack.Editor
188
188
  AssetDatabase.Refresh();
189
189
  }
190
190
 
191
- public static bool CopyDependenciesXMLFileToAssets()
191
+ private static void CopyDependenciesXMLFileToAssets()
192
192
  {
193
- if (!File.Exists(_dependencyPathInAssets))
194
- {
195
- Directory.CreateDirectory(_editorPathInAssets);
196
- FileUtil.CopyFileOrDirectory(_dependencyPathInPackage, _dependencyPathInAssets);
197
- AssetDatabase.Refresh();
198
- return true;
199
- }
200
-
201
- return false;
193
+ Directory.CreateDirectory(_editorPathInAssets);
194
+ FileUtil.ReplaceFile(_dependencyPathInPackage, _dependencyPathInAssets);
195
+ AssetDatabase.Refresh();
202
196
  }
203
-
204
- public static bool CopyMediationDependenciesXMLFileToAssets()
197
+
198
+ private static bool CopyMediationDependenciesXMLFileToAssets()
205
199
  {
206
200
  if (!File.Exists(_mediationDependencyPathInAssets))
207
201
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "com.azerion.bluestack",
3
- "version": "3.1.0",
3
+ "version": "3.1.1",
4
4
  "displayName": "BlueStack",
5
5
  "description": "BlueStack SDK has been designed to give developers options for showing Ads from different ad networks.",
6
6
  "unity": "2020.3",