{"id":29561611,"url":"https://github.com/meowmeowahr/pyside6_android_helloworld","last_synced_at":"2026-05-08T00:33:29.556Z","repository":{"id":304907956,"uuid":"1020488310","full_name":"meowmeowahr/pyside6_android_helloworld","owner":"meowmeowahr","description":"PySide6 Application for Android","archived":false,"fork":false,"pushed_at":"2025-07-16T17:31:21.000Z","size":34,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-07-17T01:09:16.995Z","etag":null,"topics":["android","android-build","arm64-v8a","buildozer","pyside6","qt","qt6"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/meowmeowahr.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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}},"created_at":"2025-07-16T00:38:47.000Z","updated_at":"2025-07-16T17:31:24.000Z","dependencies_parsed_at":"2025-07-17T07:58:17.201Z","dependency_job_id":null,"html_url":"https://github.com/meowmeowahr/pyside6_android_helloworld","commit_stats":null,"previous_names":["meowmeowahr/pyside6_android_helloworld"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/meowmeowahr/pyside6_android_helloworld","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/meowmeowahr%2Fpyside6_android_helloworld","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/meowmeowahr%2Fpyside6_android_helloworld/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/meowmeowahr%2Fpyside6_android_helloworld/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/meowmeowahr%2Fpyside6_android_helloworld/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/meowmeowahr","download_url":"https://codeload.github.com/meowmeowahr/pyside6_android_helloworld/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/meowmeowahr%2Fpyside6_android_helloworld/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265793684,"owners_count":23829180,"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","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":["android","android-build","arm64-v8a","buildozer","pyside6","qt","qt6"],"created_at":"2025-07-18T16:38:50.931Z","updated_at":"2026-05-08T00:33:24.526Z","avatar_url":"https://github.com/meowmeowahr.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# PySide6 Android App Example\n\nThis is a simple example Android app written in PySide6.\n\nThis example uses a custom deployment script instead of `pyside6-android-deploy` that is included in PySide6.\n\n## Requirements\n\n* Linux (macOS might be compatible, Windows will not work)\n* Python **3.11** (fixed version requirement by Buildozer)\n* PySide6 **6.9.1** (other versions may be compatible, requires script modifications)\n* OpenJDK **17**\n* uv and dependencies defined in `pyproject.toml`\n\nAdditionally, this guide only covers building for **ARM64-v8 devices**.\nOther and/or older devices are not covered in this guide, as they require manual cross-compilation of the Qt framework.\n\n## Build Guide\n\n\u003e [!IMPORTANT]\nEnsure that all of the above requirements are met.\nEven minor version differences will cause issues during the build.\n\n### Create a venv with uv\n\n```console\npython3 -m venv .venv\nsource ./.venv/bin/activate\npip install uv\n```\n\n### Install dependencies\n\n```console\nuv sync --extra build\n```\n\n### Configure\n\nA custom configuration script is provided to prepare Buildozer\n\n```console\npython configure.py\n```\n\n### Build\n\n```console\nbuildozer android debug --verbose\n```\n\nIf the command succeeds, the built APK should end up in `dist/`\n\n## Custom Configurations\n\nThe `buildozer.spec` file contains all of the configurations for Buildozer.\n\n\u003e [!WARNING]\nAll requirements must be defined under `app.requirements`, otherwise, they will not be included in the APK.\nAn import error will result in the app crashing on launch.\n\nAll options for iOS and/or Kivy are not relevant to this guide.\n\n## Updating PySide\n\nThis build system is compatible with all PySide6 versions from 6.8.0 up.\n\n1. Edit the `QT_VERSION` constant in `configure.py`\n2. Delete the `deployment` and `.qt` directory to removed cached data\n3. Re-run `configure.py` and rebuild\n\n## Enabling additional Qt modules\n\nThe default pre-enabled Qt modules are `Core`, `Widgets`, and `Gui`.\n\nModules names are the imported name without the `Qt` prefix. Ex: using `QtCharts`  will require adding the `Charts` module.\n\nEnabling an additional module will require updating the `configure.py` list constant, `QT_MODULES`. Note that `Core`, `Widgets`, and `Gui` are required in most cases.\n\nThen, delete the `deployment` directory, re-run `configure.py` and rebuild.\n\n## Adding Python Dependencies\n\nUpdate the `app.requirements` field in `buildozer.spec`.\n\nIf you are using uv, you can run `uv tree` to view all direct and transient dependencies.\nNote that including transient requirements is required.\n\n\u003e [!NOTE]\n`python3,shiboken6,PySide6` are required.\n\n\u003e [!WARNING]\n`typing_extensions` is not included by default\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmeowmeowahr%2Fpyside6_android_helloworld","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmeowmeowahr%2Fpyside6_android_helloworld","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmeowmeowahr%2Fpyside6_android_helloworld/lists"}