Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add carplay and android auto support #255

Merged
merged 29 commits into from
Oct 15, 2024
Merged
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
900bdf7
feat: navigation support for auto
jokerttu Sep 3, 2024
f72c949
fix: fix ios build
illuminati1911 Sep 4, 2024
04e31ab
feat: change carplay map init setup to match android auto
illuminati1911 Sep 4, 2024
afce7d4
feat: added android auto base screen
illuminati1911 Sep 4, 2024
671cbd6
fix: revert keys.plist removal from the project
jokerttu Sep 4, 2024
2fcbf24
fix: fix missing windows ref in app delegate
illuminati1911 Sep 5, 2024
80f6785
feat: support for navigation auto custom events
jokerttu Sep 6, 2024
049e91e
feat: separate ios build targets
jokerttu Sep 6, 2024
b220b83
chore: add new carplay build target to podfile
illuminati1911 Sep 9, 2024
e1b3214
fix: event transformer callback response handling
jokerttu Sep 9, 2024
1a64117
feat: notify on auto screen availibility changes (#5)
jokerttu Sep 9, 2024
c2ecac7
fix: fix carplay session attach management
illuminati1911 Sep 10, 2024
4baf805
feat: add basecarscenedelegate and enable panning for carlay
illuminati1911 Sep 10, 2024
dda6163
refactor: cleanup unused code from podfile
illuminati1911 Sep 10, 2024
d061791
chore: format codebase
jokerttu Sep 12, 2024
db1e63b
Merge remote-tracking branch 'codemate/main' into feat/navigation-for…
jokerttu Sep 12, 2024
3d8f48e
fix: add missing import to NavViewFragment.java
jokerttu Sep 12, 2024
37dd316
fix: solve merge conflicts
illuminati1911 Sep 13, 2024
13c6daa
docs: initial carplay docs wip
illuminati1911 Sep 16, 2024
d9e9a8e
docs: initial android auto docs wip
illuminati1911 Sep 18, 2024
7270b10
docs: update readme for android auto and carplay doc links
illuminati1911 Sep 19, 2024
7702c2f
Merge branch 'main' into feat/navigation-for-auto
illuminati1911 Sep 19, 2024
d4ccf86
docs: android auto documentation improvements
illuminati1911 Sep 23, 2024
01776c3
fix: move android auto template invalidation to example app
illuminati1911 Sep 24, 2024
580ad6f
chore: minor improvements to documentation and code quality
jokerttu Sep 27, 2024
0384d9c
Merge branch 'main' into feat/navigation-for-auto
jokerttu Oct 4, 2024
13da0ec
refactor: minor refactoring and fixes for android auto
illuminati1911 Oct 7, 2024
6492783
Merge branch 'main' into feat/navigation-for-auto
jokerttu Oct 14, 2024
00d3d03
Merge branch 'main' into feat/navigation-for-auto
jokerttu Oct 15, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: event transformer callback response handling
  • Loading branch information
jokerttu committed Sep 9, 2024
commit e1b3214eaf59cac1f4b3c3e7146195d94dd4b7a1
2 changes: 1 addition & 1 deletion src/shared/useModuleListeners.ts
Original file line number Diff line number Diff line change
@@ -55,7 +55,7 @@ export const useModuleListeners = <
acc[eventKey] = (...args: unknown[]) => {
listenersRef.current[eventKey]?.forEach(callback =>
callback(
...[eventTransformer ? eventTransformer(eventKey, ...args) : args]
...(eventTransformer ? eventTransformer(eventKey, ...args) : args)
)
);
};