Native code should always return a numeric timestamp, which it does for iOS (Swift code) but not for Android (Kotlin code), leading to the TS code returning a new Date("1761215679680") i.e. Invalid Date instead of new Date(1761215679680).
Kotlin code should be updated to return an integer instead.