Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions content/docs/android/changelog.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,21 @@ title: "Changelog"
description: "Release notes for the Superwall Android SDK"
---

## 2.7.23

## Fixes
- Fix paywall inputs silently dropping all non-Latin keyboard text (Cyrillic, Korean, Thai, emoji, etc.). The webview no longer replaces Chromium's `InputConnection` with a dummy one unless `isGameControllerEnabled` is set, restoring the full IME pipeline (composition, autocorrect, swipe typing, autofill) for everyone else.
- Ensure that errors thrown when user lacks billing do not propagate to the app

## 2.7.22

## Enhancements
- Always notify backend of purchased entitlements
- Adds a 5 second timeout to resolving latest purchases, allowing non-play store purchases to resolve

## Fixes
- Fix a dead buy button when re-presenting a cached paywall in the same session after a purchase, for both `register()` and embedded paywalls (`getPaywall`/`getPaywallView`). Per-presentation transient state (loading spinner and presentation-prepared flag) is now reset on each new presentation, so it no longer leaks from a previous presentation that was stopped without a finishing teardown.

## 2.7.21

## Enhancements
Expand Down
2 changes: 1 addition & 1 deletion content/docs/android/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,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).

<SdkLatestVersion version="2.7.21" repoUrl="https://github.com/superwall/Superwall-Android" />
<SdkLatestVersion version="2.7.23" repoUrl="https://github.com/superwall/Superwall-Android" />
6 changes: 3 additions & 3 deletions content/docs/android/quickstart/install.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,16 @@ can find the [latest release here](https://github.com/superwall/Superwall-Androi
<CodeGroup>

```gradle build.gradle
implementation "com.superwall.sdk:superwall-android:2.7.21"
implementation "com.superwall.sdk:superwall-android:2.7.23"
```

```kotlin build.gradle.kts
implementation("com.superwall.sdk:superwall-android:2.7.21")
implementation("com.superwall.sdk:superwall-android:2.7.23")
```

```toml libs.version.toml
[libraries]
superwall-android = { group = "com.superwall.sdk", name = "superwall-android", version = "2.7.21" }
superwall-android = { group = "com.superwall.sdk", name = "superwall-android", version = "2.7.23" }

// And in your build.gradle.kts
dependencies {
Expand Down
2 changes: 1 addition & 1 deletion content/docs/android/sdk-reference/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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).

<SdkLatestVersion version="2.7.21" repoUrl="https://github.com/superwall/Superwall-Android" />
<SdkLatestVersion version="2.7.23" repoUrl="https://github.com/superwall/Superwall-Android" />
Loading