Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
17 changes: 17 additions & 0 deletions content/docs/android/changelog.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,23 @@ title: "Changelog"
description: "Release notes for the Superwall Android SDK"
---

## 2.7.20

## Enhancements

- Adds `storeFrontCountryCode` property
- Adds `PaywallOptions.loadingColor` to options enabling you to theme the circular progress bar
Comment thread
dcrawbuck marked this conversation as resolved.

## Fixes
- Fix a bug causing web redemption entitlements to be ignored in restoration tracking logic for users of purchase controller

## 2.7.19

## Enhancements

- Added `EventTrackingBehavior` enum and `SuperwallOptions.eventTrackingBehavior` property for GDPR-compliant event collection control. Use `ALL` (default) to track everything, `SUPERWALL_ONLY` to suppress user-initiated tracking, trigger fires, and user-attribute updates while keeping internal SDK events, or `NONE` to stop all event collection entirely. The behavior can also be changed at runtime via `Superwall.instance.eventTrackingBehavior`.
Comment thread
dcrawbuck marked this conversation as resolved.
- Deprecated `SuperwallOptions.isExternalDataCollectionEnabled`. Setting it to `false` now maps to `SUPERWALL_ONLY`; setting it back to `true` maps to `ALL`.

## 2.7.18

## 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 @@ -127,4 +127,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.18" repoUrl="https://github.com/superwall/Superwall-Android" />
<SdkLatestVersion version="2.7.20" 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 @@ -105,16 +105,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.18"
implementation "com.superwall.sdk:superwall-android:2.7.20"
Comment thread
dcrawbuck marked this conversation as resolved.
```

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

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

// 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 @@ -100,4 +100,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.18" repoUrl="https://github.com/superwall/Superwall-Android" />
<SdkLatestVersion version="2.7.20" repoUrl="https://github.com/superwall/Superwall-Android" />
Loading