{"id":16838682,"url":"https://github.com/jakewharton/composeui-lightswitch","last_synced_at":"2025-10-15T12:53:02.267Z","repository":{"id":241299783,"uuid":"719217521","full_name":"JakeWharton/composeui-lightswitch","owner":"JakeWharton","description":"Compose UI for the Orvibo MixPad D1","archived":false,"fork":false,"pushed_at":"2025-10-08T14:13:36.000Z","size":69248,"stargazers_count":77,"open_issues_count":13,"forks_count":5,"subscribers_count":5,"default_branch":"trunk","last_synced_at":"2025-10-08T16:14:51.108Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://youtu.be/D0P5Lb-2uCY","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/JakeWharton.png","metadata":{"files":{"readme":"README.device.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2023-11-15T17:51:48.000Z","updated_at":"2025-10-02T05:00:59.000Z","dependencies_parsed_at":"2025-09-24T23:32:29.770Z","dependency_job_id":null,"html_url":"https://github.com/JakeWharton/composeui-lightswitch","commit_stats":null,"previous_names":["jakewharton/composeui-lightswitch"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/JakeWharton/composeui-lightswitch","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JakeWharton%2Fcomposeui-lightswitch","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JakeWharton%2Fcomposeui-lightswitch/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JakeWharton%2Fcomposeui-lightswitch/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JakeWharton%2Fcomposeui-lightswitch/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/JakeWharton","download_url":"https://codeload.github.com/JakeWharton/composeui-lightswitch/tar.gz/refs/heads/trunk","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JakeWharton%2Fcomposeui-lightswitch/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279079944,"owners_count":26098871,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-15T02:00:07.814Z","response_time":56,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-13T12:25:24.690Z","updated_at":"2025-10-15T12:53:02.218Z","avatar_url":"https://github.com/JakeWharton.png","language":"C","readme":"# Orvibo MixPad D1\n\nDetails from the OEM binary that might be useful.\n\n## GUI\n\nFlutter app compiled to a native app with https://github.com/sony/flutter-embedded-linux.\n\n### Startup sequence\n\n * `FlutterViewController`\n\n   https://github.com/sony/flutter-embedded-linux/blob/bd5e4b67aad84d42c42aa7222fde33274baa08bf/src/client_wrapper/flutter_view_controller.cc#L12\n\n * `FlutterDesktopViewControllerCreate`\n\n   https://github.com/sony/flutter-embedded-linux/blob/bd5e4b67aad84d42c42aa7222fde33274baa08bf/src/flutter/shell/platform/linux_embedded/flutter_elinux.cc#L80-L81\n\n * `ELinuxWindowDrm`\n\n   https://github.com/sony/flutter-embedded-linux/blob/bd5e4b67aad84d42c42aa7222fde33274baa08bf/src/flutter/shell/platform/linux_embedded/window/elinux_window_drm.h#L37\n\n * `NativeWindowDrmGbm`\n\n   https://github.com/sony/flutter-embedded-linux/blob/bd5e4b67aad84d42c42aa7222fde33274baa08bf/src/flutter/shell/platform/linux_embedded/window/native_window_drm_gbm.cc#L22\n\n * `NativeWindowDrm`\n\n   https://github.com/sony/flutter-embedded-linux/blob/bd5e4b67aad84d42c42aa7222fde33274baa08bf/src/flutter/shell/platform/linux_embedded/window/native_window_drm.cc#L18\n\n\n## Native libraries\n\nThe device ships with the following native libraries:\n\n* `libweston-8` version unknown, probably 8.0.0\n\n  Weston is not ABI stable, so they change the `.so` name with each release. Since this is \"weston-8\"\n  we safely can assume it's 8.0.0. There were no other 8.x.x releases.\n\n* `libpixman` version 0.34.0\n\n* `libxkbcommon` version unknown, probably 0.7.0\n\n  Weston 8 requires at least xkbcommon 0.3.0. Running `strings` on the `.so` shows a \"0.7.0\" string.\n  New APIs in 0.8.0 are not present via `strings`. 0.7.2 introduced new keys which are not present in\n  `strings`. So it's either 0.7.1 or 0.7.0, but we have no way of differentiating without testing for\n  0.7.1's bugfixes which I'm too lazy to do.\n\n* `libwayland-client` version unknown, probably 1.18.0\n\n  Weston 8 requires at least wayland 1.17.0. In 1.18.0 Wayland added a `wl_global_remove` function\n  which appears in `strings`.\n\n* `libinput` version 1.8.2\n\n  The `.so` suffix is `10.13.0` which is seemingly nonsensical. Thankfully `strings` shows that each\n  version embeds a link to its documentation whose URL contains the version of 1.8.2.\n\n* `libdrm` version unknown, 2.4.something\n\n  The 2.4.x series has been going on for 15 years so that's a safe bet, but what patch version?\n  I started bisecting the public symbols, but it wasn't yielding good results. I guessed .87 for now.\n  In .98 they added a `drmIsMaster` API which is not available, so it's definitely older than that.\n\nThe headers for these versions are checked in under `device/include/`.\nThese were obtained by running the `pull_includes.sh` script (which you should not need to do).\n\nThe shared libraries for dynamic linking are checked in under `device/lib/`.\nThese were obtained by running the `pull_libs.sh` script (which you should not need to do).\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjakewharton%2Fcomposeui-lightswitch","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjakewharton%2Fcomposeui-lightswitch","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjakewharton%2Fcomposeui-lightswitch/lists"}