feat: remove send tab, default tips on, drop tipping beta flag - #1182
Merged
Conversation
Remove the Send *tab* (nav button), launch tipping as an always-on feature (dropping the Tipping beta flag), and stop handling chat deeplinks. Send tab - Delete NavBarButton.Send, the NavigationBar button + preview, ScannerDecorItem.Send + the scanner mapping. - Disconnect the direct-send flow from the build: remove AppRoute.Sheets.Send, the nav-graph entry, the settings.gradle.kts include, and the app module dep. The direct-send feature module (and core/send/SendStep.kt) are kept on disk but no longer built, so the flow can be re-enabled later by re-wiring it. - Rework NavBarConfigTest for the new default order [Discover, Give, Tips, Wallet] and add a regression test that a persisted order containing the removed "Send" token deserializes cleanly (dropped + back-filled), not crash. Tipping (launched) - Delete FeatureFlag.Tipping (definition + title/message); tips are on for all users. Remove the session observer and isTippingEnabled state, and strip the now-orphaned FeatureFlagController dependency from TippingCoordinator. The Tips tab is always shown. Chat deeplinks - Remove DeeplinkType.Chat and isChat/handleChat from AppRouter. /chat/ links now fall through unhandled and land on the camera (documented so the routing isn't re-added by accident). Tip DMs still route via /tip/chat/. - Fold non-tip and contact-addressed chat push notifications into a plain launch intent; delete the now-dead Linkify.chatById/chatByPhone. Maestro - Delete direct_send.yaml and send_to_contact.yaml (tapped the removed tab), drop the dead tipping_enabled beta-flag args (tipping is default-on), and update the README.
bmc08gt
force-pushed
the
feat/remove-send-tab-tips-default
branch
from
August 5, 2026 16:10
1cc6c54 to
440e73d
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Removes the Send tab (nav button), launches tipping as an always-on feature (dropping the Tipping beta flag), and stops handling chat deeplinks.
Send tab
NavBarButton.Send, theNavigationBarbutton + preview,ScannerDecorItem.Send+ the scanner mapping.AppRoute.Sheets.Send, the nav-graph entry, thesettings.gradle.ktsinclude, and the app module dep.direct-sendfeature module (andcore/send/SendStep.kt) are kept on disk but no longer built — parked so the flow can be re-enabled later by re-wiring it (re-add tosettings.gradle.kts+ app dep, restoreAppRoute.Sheets.Send+ the nav entry + the nav-bar button).NavBarConfigTestfor the new default order[Discover, Give, Tips, Wallet]and add a regression test that a persisted order containing the removed"Send"token deserializes cleanly (dropped + back-filled) rather than crashing on upgrade.Tipping (launched)
FeatureFlag.Tipping(definition + title/message) — tips are on for all users. Remove the session observer +isTippingEnabledstate, and strip the now-orphanedFeatureFlagControllerdependency fromTippingCoordinator. The Tips tab is always shown.Chat deeplinks
DeeplinkType.ChatandisChat/handleChatfromAppRouter./chat/{id}links now fall through unhandled and land on the camera (documented inclassify()so the routing isn't re-added by accident). Tip DMs still route via/tip/chat/.Linkify.chatById/chatByPhone.app.flipcash.com/chat/.*manifest intent filter is intentionally kept so links still open the app (→ camera);send.flipcash.comcash links are untouched.Maestro
direct_send.yamlandsend_to_contact.yaml(they tapped the removed tab), drop the deadtipping_enabledbeta-flag args (tipping is default-on), and update the README.Testing
./gradlew :apps:flipcash:app:assembleDebug→ BUILD SUCCESSFUL (parkeddirect-sendmodule is not in the build and is ignored).core,shared:session,shared:tipping,shared:router,shared:featureflags,shared:notifications,features:scanner,app.29 files changed, +57 / −245.