com_tapp_so_adjust 1.1.0
com_tapp_so_adjust: ^1.1.0 copied to clipboard
A Flutter plugin providing unified access to the Tapp SDK on Android and iOS, featuring deferred deep-link handling, affiliate URL generation, event tracking, and full Adjust analytics integration.
1.1.0 – 2026-03-26 #
Changed #
simulateTestEvent()is no longer part of the active public Dart API surface.- README reworked into an integration-first guide with a clear onboarding flow: prerequisites, installation, deep-link setup, checklist, minimal integration, verification, bootstrap pattern, common flows, platform notes, troubleshooting.
- Deep-link documentation now explicitly separates:
- what clients configure (Tapp dashboard + native iOS/Android link handling)
- what Tapp manages (
apple-app-site-associationandassetlinks.jsonafter dashboard setup)
- Added dashboard deep-link field alignment guidance, including:
SHA-256 Certificate FingerprintAndroid App SchemeApp ID PrefixiOS App Scheme
- Example app updated to remove test-event simulation UI/listener tied to the removed test-only API.
Metadata #
- Added publish metadata links in
pubspec.yaml:issue_trackerdocumentation
1.0.2 – 2025-10-08 #
Changed #
- Affiliate is now hardcoded to Adjust on both platforms.
- iOS:
initializenow buildsTappConfigurationwithaffiliate: .adjust(enum-based initializer), ignoring anyaffiliatestring passed from Dart. - Android:
initializenow starts Tapp withAffiliate.ADJUST, ignoring anyaffiliateargument from Dart.
- iOS:
- The
environmenthandling on iOS now uses the enum-based initializer (.production/.sandbox) for stricter typing.
Notes / Migration #
- The Dart API still accepts an
affiliateparameter for compatibility, but it is ignored on both iOS and Android and will always use Adjust. - If your app relied on switching affiliates at runtime, please plan accordingly. The
affiliateparameter is considered deprecated and may be removed in a future major release.
Documentation #
- README updated to clarify that Adjust is the enforced affiliate on both platforms.