Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 6bdba8b

Browse files
runnerrunner
authored andcommittedOct 13, 2023
Release 4.9.1
1 parent 9030d0c commit 6bdba8b

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed
 

‎app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ android {
77
applicationId "com.unity3d.ads.example"
88
minSdkVersion 19
99
targetSdkVersion 33
10-
versionCode = 4900
11-
versionName = "4.9.0"
10+
versionCode = 4910
11+
versionName = "4.9.1"
1212
}
1313

1414
buildTypes {

‎unity-ads/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ if (project.rootProject.file('local.properties').exists()) {
1313
ext {
1414
GROUP_ID = "com.unity3d.ads"
1515
ARTIFACT_ID = "unity-ads"
16-
VERSION_ID = "4.9.0"
17-
VERSION_CODE = 4900
16+
VERSION_ID = "4.9.1"
17+
VERSION_CODE = 4910
1818
SIGN_AAR = properties.getProperty("SIGN_AAR") ?: false
1919
}
2020

‎unity-ads/src/main/java/com/unity3d/services/ads/UnityAdsImplementation.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ public void getToken(final IUnityAdsTokenListener listener) {
202202
}
203203

204204
Configuration config = configuration == null ? new ConfigurationReader().getCurrentConfiguration() : configuration;
205-
BiddingBaseManager manager = BiddingManagerFactory.getInstance().createManager(null, config.getExperiments());
205+
BiddingBaseManager manager = BiddingManagerFactory.getInstance().createManager(listener, config.getExperiments());
206206
manager.start();
207207

208208
asyncTokenStorage.getToken(manager);

0 commit comments

Comments
 (0)
Please sign in to comment.