Skip to content
This repository was archived by the owner on Nov 28, 2023. It is now read-only.

Commit ea5cb64

Browse files
author
Adikteev
committed
4.3.1
1 parent 513392a commit ea5cb64

File tree

9 files changed

+43
-5
lines changed

9 files changed

+43
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Adikteev Unity CrossDK - CHANGELOG
22

3+
## [v4.3.1]
4+
5+
- Fix unity 2022 compatibility issue
6+
37
## [v4.3.0]
48

59
- Integrate show event for preload

Editor/CrossDKPreprocess.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
using UnityEditor;
33
using UnityEditor.Build;
44
using UnityEditor.Build.Reporting;
5-
using UnityEngine.Networking.Types;
65

76
public class CrossDKPreprocess : IPreprocessBuildWithReport
87
{

Plugins/Android/launcherTemplate.gradle

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,15 @@ buildscript {
1313
}
1414
}
1515

16+
configurations.all {
17+
resolutionStrategy.eachDependency { DependencyResolveDetails details ->
18+
if (details.requested.group == 'org.jetbrains.kotlin') {
19+
details.useVersion kotlin_version
20+
details.because 'stable version for android cross sdk'
21+
}
22+
}
23+
}
24+
1625
allprojects {
1726
repositories {
1827
google()

Plugins/Android/launcherTemplate2019.gradle

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,15 @@ buildscript {
1313
}
1414
}
1515

16+
configurations.all {
17+
resolutionStrategy.eachDependency { DependencyResolveDetails details ->
18+
if (details.requested.group == 'org.jetbrains.kotlin') {
19+
details.useVersion kotlin_version
20+
details.because 'stable version for android cross sdk'
21+
}
22+
}
23+
}
24+
1625
allprojects {
1726
repositories {
1827
google()

Plugins/Android/mainTemplate.gradle

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,15 @@ buildscript {
1414
}
1515
}
1616

17+
configurations.all {
18+
resolutionStrategy.eachDependency { DependencyResolveDetails details ->
19+
if (details.requested.group == 'org.jetbrains.kotlin') {
20+
details.useVersion kotlin_version
21+
details.because 'stable version for android sdk'
22+
}
23+
}
24+
}
25+
1726
allprojects {
1827
repositories {
1928
google()

Plugins/Android/mainTemplate2019.gradle

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,15 @@ buildscript {
1414
}
1515
}
1616

17+
configurations.all {
18+
resolutionStrategy.eachDependency { DependencyResolveDetails details ->
19+
if (details.requested.group == 'org.jetbrains.kotlin') {
20+
details.useVersion kotlin_version
21+
details.because 'stable version for android cross sdk'
22+
}
23+
}
24+
}
25+
1726
allprojects {
1827
repositories {
1928
google()

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ The Android version is using **Kotlin 1.8.0**, **Gradle 6.8.3** and **Gradle plu
2020

2121
## Installation
2222

23-
For installing the CrossDK follow the steps below:
24-
> Please note that because of the change in files structure in this version, if you have an older implementation of the CrossDK in your project you should delete the old CrossDK files and reimport the new version (see steps below). Make sure also to delete generated launcher and main Templates files inside Assets/plugins/Android of your project.
23+
For installing the CrossDK follow the steps bellow:
24+
> Please note that because of the change in files structure in this version, if you have an older implementation of the CrossDK in your project you should delete the old CrossDK files and reimport the new version (see steps bellow). make sure also to delete generated launcher and main Templates files inside Assets/plugins/Android of your project
2525
2626
### Using Unity package manager
2727

Runtime/Scripts/CrossDKSingleton.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
using System;
22
using UnityEngine;
3-
using UnityEngine.Networking.Types;
43

54
namespace CrossDK
65
{

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "com.adikteev.crossdk",
3-
"version": "4.3.0",
3+
"version": "4.3.1",
44
"displayName": "CrossDK Unity",
55
"description": "This is an implementation of CrossDK for Unity applications.",
66
"unity": "2019.4",

0 commit comments

Comments
 (0)