From 7b3736969f02c0cd2c53e82dbde3878dd64927ed Mon Sep 17 00:00:00 2001 From: Claude Date: Fri, 20 Feb 2026 17:17:03 +0000 Subject: [PATCH 1/2] docs(android): update for 2.7.1 Co-Authored-By: Claude Opus 4.5 --- content/docs/android/changelog.mdx | 12 ++++++++++++ content/docs/android/index.mdx | 2 +- content/docs/android/sdk-reference/index.mdx | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/content/docs/android/changelog.mdx b/content/docs/android/changelog.mdx index cb89e096..767235be 100644 --- a/content/docs/android/changelog.mdx +++ b/content/docs/android/changelog.mdx @@ -3,6 +3,18 @@ title: "Changelog" description: "Release notes for the Superwall Android SDK" --- +## 2.7.1 + +### Enhancements +- Adds improved constructors for `SuperwallOptions`,`PaywallOptions` and `PaywallPresentationHandler`, allowing a DSL like usage, i.e. `PaywallPresentationHandler { onPresent { ... } }` +- Adds haptic feedback action support + +### Fixes +- Ensures poster is always visible on video preview +- Fix bug with loading not dismissing post purchase if user remains in paywall +- Fix warning about old edge-to-edge API usages +- Fix shimmerview theme warnings and memory leak + ## 2.7.0 ### Enhancements diff --git a/content/docs/android/index.mdx b/content/docs/android/index.mdx index 39c8338b..ab1ab6ba 100644 --- a/content/docs/android/index.mdx +++ b/content/docs/android/index.mdx @@ -34,4 +34,4 @@ If you have feedback on any of our docs, please leave a rating and message at th If you have any issues with the SDK, please [open an issue on GitHub](https://github.com/superwall/superwall-android/issues). - \ No newline at end of file + \ No newline at end of file diff --git a/content/docs/android/sdk-reference/index.mdx b/content/docs/android/sdk-reference/index.mdx index d519108a..ad548bd7 100644 --- a/content/docs/android/sdk-reference/index.mdx +++ b/content/docs/android/sdk-reference/index.mdx @@ -15,4 +15,4 @@ If you have feedback on any of our docs, please leave a rating and message at th If you have any issues with the SDK, please [open an issue on GitHub](https://github.com/superwall/superwall-android/issues). - \ No newline at end of file + \ No newline at end of file From 1cc711257802b348f5df725b902bed8e38d6e129 Mon Sep 17 00:00:00 2001 From: Duncan Crawbuck Date: Fri, 20 Feb 2026 14:35:41 -0800 Subject: [PATCH 2/2] fix(android): align 2.7.1 install and changelog --- content/docs/android/changelog.mdx | 2 +- content/docs/android/quickstart/install.mdx | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/content/docs/android/changelog.mdx b/content/docs/android/changelog.mdx index 767235be..799a09d3 100644 --- a/content/docs/android/changelog.mdx +++ b/content/docs/android/changelog.mdx @@ -6,7 +6,7 @@ description: "Release notes for the Superwall Android SDK" ## 2.7.1 ### Enhancements -- Adds improved constructors for `SuperwallOptions`,`PaywallOptions` and `PaywallPresentationHandler`, allowing a DSL like usage, i.e. `PaywallPresentationHandler { onPresent { ... } }` +- Adds improved constructors for `SuperwallOptions`,`PaywallOptions` and `PaywallPresentationHandler`, allowing a DSL like usage,i.e. ` PaywallPresentationHandler { onPresent { ... } }` - Adds haptic feedback action support ### Fixes diff --git a/content/docs/android/quickstart/install.mdx b/content/docs/android/quickstart/install.mdx index a1d7ff23..bf018c99 100644 --- a/content/docs/android/quickstart/install.mdx +++ b/content/docs/android/quickstart/install.mdx @@ -20,16 +20,16 @@ can find the [latest release here](https://github.com/superwall/Superwall-Androi ```gradle build.gradle -implementation "com.superwall.sdk:superwall-android:2.7.0" +implementation "com.superwall.sdk:superwall-android:2.7.1" ``` ```kotlin build.gradle.kts -implementation("com.superwall.sdk:superwall-android:2.7.0") +implementation("com.superwall.sdk:superwall-android:2.7.1") ``` ```toml libs.version.toml [libraries] -superwall-android = { group = "com.superwall.sdk", name = "superwall-android", version = "2.7.0" } +superwall-android = { group = "com.superwall.sdk", name = "superwall-android", version = "2.7.1" } // And in your build.gradle.kts dependencies {