Skip to content

Commit

Permalink
Release 4.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
runner authored and runner committed Oct 13, 2023
1 parent 9030d0c commit 6bdba8b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ android {
applicationId "com.unity3d.ads.example"
minSdkVersion 19
targetSdkVersion 33
versionCode = 4900
versionName = "4.9.0"
versionCode = 4910
versionName = "4.9.1"
}

buildTypes {
Expand Down
4 changes: 2 additions & 2 deletions unity-ads/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ if (project.rootProject.file('local.properties').exists()) {
ext {
GROUP_ID = "com.unity3d.ads"
ARTIFACT_ID = "unity-ads"
VERSION_ID = "4.9.0"
VERSION_CODE = 4900
VERSION_ID = "4.9.1"
VERSION_CODE = 4910
SIGN_AAR = properties.getProperty("SIGN_AAR") ?: false
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ public void getToken(final IUnityAdsTokenListener listener) {
}

Configuration config = configuration == null ? new ConfigurationReader().getCurrentConfiguration() : configuration;
BiddingBaseManager manager = BiddingManagerFactory.getInstance().createManager(null, config.getExperiments());
BiddingBaseManager manager = BiddingManagerFactory.getInstance().createManager(listener, config.getExperiments());
manager.start();

asyncTokenStorage.getToken(manager);
Expand Down

0 comments on commit 6bdba8b

Please sign in to comment.