{"id":18564775,"url":"https://github.com/luftdaten-at/luftdaten-app","last_synced_at":"2025-11-01T13:30:33.951Z","repository":{"id":248544268,"uuid":"828986824","full_name":"luftdaten-at/luftdaten-app","owner":"luftdaten-at","description":"Open Source app for Android and iOS for using Luftdaten.at devices, written in Flutter/Dart.","archived":false,"fork":false,"pushed_at":"2024-10-11T10:32:42.000Z","size":1553,"stargazers_count":1,"open_issues_count":23,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2024-12-26T12:09:37.051Z","etag":null,"topics":["citizen-science","flutter"],"latest_commit_sha":null,"homepage":"","language":"Dart","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/luftdaten-at.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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}},"created_at":"2024-07-15T14:21:57.000Z","updated_at":"2024-10-29T08:41:08.000Z","dependencies_parsed_at":"2024-07-27T12:58:12.513Z","dependency_job_id":null,"html_url":"https://github.com/luftdaten-at/luftdaten-app","commit_stats":null,"previous_names":["luftdaten-at/luftdaten-app"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/luftdaten-at%2Fluftdaten-app","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/luftdaten-at%2Fluftdaten-app/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/luftdaten-at%2Fluftdaten-app/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/luftdaten-at%2Fluftdaten-app/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/luftdaten-at","download_url":"https://codeload.github.com/luftdaten-at/luftdaten-app/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239293948,"owners_count":19615043,"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":["citizen-science","flutter"],"created_at":"2024-11-06T22:16:18.249Z","updated_at":"2025-11-01T13:30:33.910Z","avatar_url":"https://github.com/luftdaten-at.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Luftdaten App\n\nThe **Luftdaten App** is a mobile application that allows users to visualize real-time air quality data based on measurements from air quality sensors. The app is developed using **Flutter**, an open-source framework by Google that enables cross-platform mobile applications (iOS, Android) to be built from a single codebase.\n\n## Table of Contents\n\n1. [Installation](#installation)\n2. [Project Setup](#project-setup)\n3. [Using the App](#using-the-app)\n4. [Flutter Commands](#flutter-commands)\n5. [Contributing](#contributing)\n6. [License](#license)\n\n## Installation\n\n### Prerequisites\n\n- **Flutter SDK**: You need Flutter to build and run the project.\n  Download Flutter [here](https://flutter.dev/docs/get-started/install).\n- **Android Studio or Xcode**: Install one of these development environments to develop for Android or iOS.\n- **Git**: You need Git to clone the repository.\n\n### Installing Flutter\n\n```bash\n# On macOS/Linux:\nexport PATH=\"$PATH:/path/to/flutter/bin\"\n\n# On Windows:\n# Add the path to Flutter `C:\\path\\to\\flutter\\bin` to your environment variables.\n```\n\n### Cloning the Project\n\n```bash\ngit clone https://github.com/luftdaten-at/luftdaten-app.git\ncd luftdaten-app\n```\n\n## Project Setup\n\n### Installing Dependencies\n\nMake sure to install all the required packages:\n\n```bash\nflutter pub get\n```\n\n### Android Configuration\n\nIf you are developing for Android, make sure the Android emulator or a physical Android device is set up properly. Check that the Android SDK tools are available:\n\n```bash\nflutter doctor --android-licenses\n```\n\n### iOS Configuration\n\nIf you are developing for iOS, ensure that Xcode and its related tools are correctly installed. You can verify everything is set up by running:\n\n```bash\nflutter doctor\n```\n\n## Using the App\n\n### Running the App on an Emulator or Device\n\nTo run the app on an Android or iOS device/emulator, use the following command:\n\n```bash\nflutter run\n```\n\nThis command will start the app in a debug environment. Ensure a device (either physical or virtual) is connected.\n\n### Building a Release\n\nCreate a release build of the app:\n\n- **Android**:\n\n  ```bash\n  flutter build apk\n  ```\n\n  For an App Bundle (recommended for Google Play Store):\n\n  ```bash\n  flutter build appbundle\n  ```\n\n- **iOS**:\n\n  ```bash\n  flutter build ios\n  ```\n\n  Note that building for iOS only works on macOS.\n\n## Flutter Commands\n\nHere are some useful Flutter commands:\n\n- **Managing dependencies**:\n\n  ```bash\n  flutter pub get\n  ```\n\n- **Analyzing the Flutter project**:\n\n  ```bash\n  flutter analyze\n  ```\n\n- **Automatically format code**:\n\n  ```bash\n  flutter format .\n  ```\n\n- **Running tests**:\n\n  ```bash\n  flutter test\n  ```\n\n- **Clean the project (remove old build files)**:\n\n  ```bash\n  flutter clean\n  ```\n\n## Contributing\n\nContributions to this project are always welcome! To contribute:\n\n1. Fork this repository.\n2. Create a branch for your feature: `git checkout -b feature/YourFeature`.\n3. Make your changes and commit them: `git commit -m 'Add some feature'`.\n4. Push to your branch: `git push origin feature/YourFeature`.\n5. Open a Pull Request.\n\n## License\n\nThis project is licensed under the [AGPL-3.0 license](LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fluftdaten-at%2Fluftdaten-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fluftdaten-at%2Fluftdaten-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fluftdaten-at%2Fluftdaten-app/lists"}