{"id":30895565,"url":"https://github.com/styropyr0/qdrop-app","last_synced_at":"2025-09-08T22:07:36.836Z","repository":{"id":309040449,"uuid":"1034975539","full_name":"styropyr0/QDrop-App","owner":"styropyr0","description":"An android app built to make QA App distribution easier within an organization","archived":false,"fork":false,"pushed_at":"2025-09-05T21:37:24.000Z","size":2391,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-09-05T23:34:28.673Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Kotlin","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/styropyr0.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-08-09T11:41:37.000Z","updated_at":"2025-09-05T21:37:27.000Z","dependencies_parsed_at":"2025-08-09T13:27:41.485Z","dependency_job_id":"800c1bd4-fe58-47bc-bca5-9ad06f398130","html_url":"https://github.com/styropyr0/QDrop-App","commit_stats":null,"previous_names":["styropyr0/qdrop-app"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/styropyr0/QDrop-App","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/styropyr0%2FQDrop-App","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/styropyr0%2FQDrop-App/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/styropyr0%2FQDrop-App/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/styropyr0%2FQDrop-App/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/styropyr0","download_url":"https://codeload.github.com/styropyr0/QDrop-App/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/styropyr0%2FQDrop-App/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":274231544,"owners_count":25245659,"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-09-08T02:00:09.813Z","response_time":121,"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":"2025-09-08T22:07:31.822Z","updated_at":"2025-09-08T22:07:36.804Z","avatar_url":"https://github.com/styropyr0.png","language":"Kotlin","funding_links":[],"categories":[],"sub_categories":[],"readme":"# QDrop – QA Build Distribution App\n\nQDrop is an Android application built with **Jetpack Compose** for distributing QA (Quality Assurance) builds to testers.  \nIt uses:\n\n- **Firebase Realtime Database** → Stores metadata for each build (name, version, download URL, etc.).  \n- **Supabase Storage** → Hosts APK files and provides public download links for testers.\n\n---\n\n## Introduction\n\nThe app fetches build metadata from Firebase and displays it in a clean UI for testers.  \nWhen a tester selects a build, the app downloads the APK directly from Supabase and installs it.\n\n---\n\n## Screenshots\n\n![Mobile App Screens](screenshots/scr.png)  \n\n---\n\n## Project Structure\n\n```\n\napp/\n├── src/\n│    ├── main/\n│    │    ├── java/com/yourpackage/qdropapp/   # Kotlin source files (Jetpack Compose UI, ViewModels, etc.)\n│    │    ├── res/                             # Resources (layouts, drawables, strings)\n│    │    ├── AndroidManifest.xml\n│    │    └── google-services.json             # Firebase config file (to be added by user)\n├── build.gradle                              # Module-level Gradle build file\n├── proguard-rules.pro                        # Optional, for release builds\nbuild.gradle                                   # Project-level Gradle build file\ngradle.properties                              # Gradle properties\nsettings.gradle                                # Gradle settings file\nREADME.md                                      # This documentation file\n.gitignore                                     # Files/folders ignored by Git\n\n````\n\n---\n\n## What You Need to Change Before Running\n\n1. **`google-services.json`**\n\n    - This file contains your Firebase configuration.\n    - A dummy example file (`google-services.example.json`) is provided for reference.\n    - Download your own `google-services.json` from the Firebase Console and place it inside the `app/` directory.\n\n2. **Firebase Realtime Database Rules**\n\n    - Configure rules to allow only intended users to read/write.\n    - Example (public read/write for testing only — **do not use in production**):\n\n      ```json\n      {\n        \"rules\": {\n          \".read\": \"true\",\n          \".write\": \"true\"\n        }\n      }\n      ```\n\n3. **Supabase Project Settings**\n\n    - Create a bucket in Supabase Storage (e.g., `qdrop-apps`).\n    - Enable public access if testers should download APKs without logging in.\n    - Note your **Project URL** and **Public Anon Key** for uploading/downloading files.\n    - Ensure APKs comply with allowed file types (`.apk`) and size limits.\n\n---\n\n## Firebase Setup\n\n1. Visit [Firebase Console](https://console.firebase.google.com/).\n2. Create a new project.\n3. Enable **Realtime Database**.\n4. Download the `google-services.json` file and add it to your `app/` folder.\n5. Set security rules based on your needs.\n\n---\n\n## Supabase Setup\n\n1. Visit [Supabase](https://supabase.com/).\n2. Create a new project.\n3. Create a storage bucket for APK files.\n4. Optionally make it public for direct download access.\n5. Use your **Supabase Project URL** and **Anon Key** in your app for file access.\n\n---\n\n## How to Get Started\n\n### If you want to **use** the app without contributing:\n\n```bash\ngit clone https://github.com/styropyr0/QDrop-App.git\ncd QDrop-App\n````\n\n### If you plan to **contribute** or customize the app:\n\n1. Fork the repository on GitHub: [https://github.com/styropyr0/QDrop-App](https://github.com/styropyr0/QDrop-App)\n\n2. Clone your fork locally:\n\n```bash\ngit clone https://github.com/YOUR_GITHUB_USERNAME/QDrop-App.git\ncd QDrop-App\n```\n\n3. Add your Firebase `google-services.json` file inside the `app/` directory.\n\n4. Configure Supabase credentials and permissions as described.\n\n5. Open the project in Android Studio, then build and run.\n\n---\n\n## Running the App\n\n1. Place your real `google-services.json` inside the `app/` directory.\n2. Configure your Supabase bucket and permissions.\n3. Open the project in Android Studio.\n4. Build and run the app on your device or emulator.\n\n---\n\n## Security Notes\n\n* Never commit your real `google-services.json` to public repos.\n* Restrict Firebase and Supabase access rules appropriately in production.\n* For open-source releases, provide example config files instead of real credentials.\n\n---\n\n## Example `google-services.json` (Dummy)\n\n```json\n{\n  \"project_info\": {\n    \"project_number\": \"123456789012\",\n    \"firebase_url\": \"https://your-project-id-default-rtdb.region.firebasedatabase.app\",\n    \"project_id\": \"your-project-id\",\n    \"storage_bucket\": \"your-project-id.appspot.com\"\n  },\n  \"client\": [\n    {\n      \"client_info\": {\n        \"mobilesdk_app_id\": \"1:123456789012:android:abcdef1234567890\",\n        \"android_client_info\": {\n          \"package_name\": \"com.example.app\"\n        }\n      },\n      \"oauth_client\": [],\n      \"api_key\": [\n        {\n          \"current_key\": \"YOUR_FIREBASE_API_KEY\"\n        }\n      ],\n      \"services\": {\n        \"appinvite_service\": {\n          \"other_platform_oauth_client\": []\n        }\n      }\n    }\n  ],\n  \"configuration_version\": \"1\"\n}\n```\n\n---\n\n## License\n\nThis project is licensed under the MIT License — see the [LICENSE](LICENSE) file for details.\n\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstyropyr0%2Fqdrop-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstyropyr0%2Fqdrop-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstyropyr0%2Fqdrop-app/lists"}