v0.1.0-canary.2
Pre-release
Pre-release
·
19 commits
to main
since this release
Summary
Adding monorepo support and fixing notification sounds in background/closed app states.
Problem:
- Build scripts failed in monorepo setups because they hardcoded node_modules/catalyst-core paths. When dependencies are hoisted to parent directories, these paths don't exist.
Solution:
Use require.resolve("catalyst-core/package.json") to dynamically locate catalyst-core
- Notification Sound Channel Fix (#183)
Problem:
Custom notification sounds only played when app was open. When app was closed or in background, default Android system sound played instead.
Root Cause:
Firebase used fcm_default_channel which was never created by the app
Solution:
- Changed Firebase default channel from fcm_default_channel to default (app's configured channel)