Skip to content

v0.1.0-canary.2

Pre-release
Pre-release

Choose a tag to compare

@mayansharma mayansharma released this 29 Jan 05:57
· 19 commits to main since this release
54f625c

Summary

Adding monorepo support and fixing notification sounds in background/closed app states.

Problem:

  1. 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

  1. 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)