diff --git a/CHANGELOG.md b/CHANGELOG.md index 2cace496..0ad49421 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Next Version +# Version 4.9.2 +- Fix proguard issue with `RemoteConfigResponse` +- Add null checks in `TopActivityFinder` + # Version 4.9.1 - Add support of Android 13 (API level 33) diff --git a/buildSrc/src/main/java/SdkVersion.kt b/buildSrc/src/main/java/SdkVersion.kt index 0b321037..0ec643f0 100644 --- a/buildSrc/src/main/java/SdkVersion.kt +++ b/buildSrc/src/main/java/SdkVersion.kt @@ -18,7 +18,7 @@ import org.gradle.api.Project import java.time.LocalDateTime import java.time.format.DateTimeFormatter -private const val sdkBaseVersion = "4.9.1" +private const val sdkBaseVersion = "4.9.2" private val timestamp = LocalDateTime.now().format(DateTimeFormatter.ofPattern("yyyyMMdd.HHmm"))