diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md index 9c298874..61ddced2 100644 --- a/RELEASE-NOTES.md +++ b/RELEASE-NOTES.md @@ -1,3 +1,11 @@ +## 8.8 + +### New Features ++ MS-5349 Enabled lazy loading for banner native rendering + +### Improvement/Bug Fixes ++ MS-5371 Added additional information for INVALID_REQUEST code error messages + ## 8.7 ### New Features diff --git a/instreamvideo/build.gradle b/instreamvideo/build.gradle index 722bdc13..4e0e0159 100644 --- a/instreamvideo/build.gradle +++ b/instreamvideo/build.gradle @@ -1,5 +1,5 @@ // Project Properties -version = "1.46" // Instream SDK version +version = "1.47" // Instream SDK version apply plugin: 'com.android.library' @@ -10,7 +10,7 @@ android { defaultConfig { minSdkVersion 14 targetSdkVersion 32 - versionCode 45 // An integer value that represents the version of the code, relative to other versions. Increase for each release. + versionCode 46 // An integer value that represents the version of the code, relative to other versions. Increase for each release. versionName version consumerProguardFiles 'proguard-project.txt' } diff --git a/sdk/build.gradle b/sdk/build.gradle index ffd176ff..c156b84e 100644 --- a/sdk/build.gradle +++ b/sdk/build.gradle @@ -1,5 +1,5 @@ // Project properties -version = "8.7" +version = "8.8" group='com.appnexus.opensdk' // Android build @@ -10,7 +10,7 @@ android { buildToolsVersion '32.0.0' defaultConfig { - versionCode 104 // An integer value that represents the version of the code, relative to other versions. Increase for each release. + versionCode 105 // An integer value that represents the version of the code, relative to other versions. Increase for each release. versionName version consumerProguardFiles 'proguard-project.txt' minSdkVersion 14 diff --git a/sdk/src/com/appnexus/opensdk/utils/Settings.java b/sdk/src/com/appnexus/opensdk/utils/Settings.java index 34de7087..e3528309 100644 --- a/sdk/src/com/appnexus/opensdk/utils/Settings.java +++ b/sdk/src/com/appnexus/opensdk/utils/Settings.java @@ -68,7 +68,7 @@ public enum ImpressionType { public boolean debug_mode = false; // This should always be false here. public String ua = null; - public final String sdkVersion = "8.7"; + public final String sdkVersion = "8.8"; // BuildConfig.VERSION_NAME;