Skip to content

Commit 9540cd9

Browse files
committed
Release 3.7.1
1 parent 2606de4 commit 9540cd9

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ android {
88
applicationId "com.unity3d.ads.example"
99
minSdkVersion 19
1010
targetSdkVersion 30
11-
versionCode = 3700
12-
versionName = "3.7.0"
11+
versionCode = 3710
12+
versionName = "3.7.1"
1313
}
1414

1515
flavorDimensions "arEnabled"

unity-ads/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ ext {
1717
siteUrl = 'https://github.com/Unity-Technologies/unity-ads-android'
1818
gitUrl = 'https://github.com/Unity-Technologies/unity-ads-android.git'
1919

20-
libraryVersion = '3.7.0'
20+
libraryVersion = '3.7.1'
2121

2222
developerId = 'sbankhead'
2323
developerName = 'Steven Bankhead'
@@ -51,8 +51,8 @@ android {
5151
All SDK with version numbers with last two digits >= 50 will be treated
5252
as China SDK for filtering in the backend.
5353
*/
54-
versionCode = 3700
55-
versionName = "3.7.0"
54+
versionCode = 3710
55+
versionName = "3.7.1"
5656

5757
setProperty("archivesBaseName", "unity-ads")
5858

unity-ads/src/main/java/com/unity3d/ads/UnityAds.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -458,7 +458,9 @@ public static String getVersion() {
458458
* Check if default placement is ready to show ads
459459
*
460460
* @return If true, default placement is ready to show ads
461+
* @deprecated Please migrate to using load call with {@link IUnityAdsLoadListener}.
461462
*/
463+
@Deprecated
462464
public static boolean isReady() {
463465
return UnityAdsImplementation.isReady();
464466
}
@@ -468,7 +470,9 @@ public static boolean isReady() {
468470
*
469471
* @param placementId Placement, as defined in Unity Ads admin tools
470472
* @return If true, placement is ready to show ads
473+
* @deprecated Please migrate to using load call with {@link IUnityAdsLoadListener}.
471474
*/
475+
@Deprecated
472476
public static boolean isReady(String placementId) {
473477
return UnityAdsImplementation.isReady(placementId);
474478
}

0 commit comments

Comments
 (0)