{"id":25667220,"url":"https://github.com/ivanalvarado/android-bootstrap","last_synced_at":"2026-01-25T00:02:37.042Z","repository":{"id":161176468,"uuid":"185323330","full_name":"ivanalvarado/android-bootstrap","owner":"ivanalvarado","description":"Kickstart your Android projects with a robust, pre-configured setup of modern libraries and best practices! This Android Bootstrap project streamlines development by providing an out-of-the-box foundation tailored for high-quality, scalable apps.","archived":false,"fork":false,"pushed_at":"2025-10-02T06:31:29.000Z","size":278,"stargazers_count":3,"open_issues_count":2,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-02T08:25:23.696Z","etag":null,"topics":["android-bootstrap"],"latest_commit_sha":null,"homepage":"","language":"Kotlin","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ivanalvarado.png","metadata":{"files":{"readme":"README.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":"2019-05-07T04:54:05.000Z","updated_at":"2025-10-02T06:31:25.000Z","dependencies_parsed_at":null,"dependency_job_id":"bcf6d867-d8e1-455a-adf3-b5af7e8224e0","html_url":"https://github.com/ivanalvarado/android-bootstrap","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ivanalvarado/android-bootstrap","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ivanalvarado%2Fandroid-bootstrap","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ivanalvarado%2Fandroid-bootstrap/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ivanalvarado%2Fandroid-bootstrap/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ivanalvarado%2Fandroid-bootstrap/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ivanalvarado","download_url":"https://codeload.github.com/ivanalvarado/android-bootstrap/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ivanalvarado%2Fandroid-bootstrap/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28739321,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-24T22:12:27.248Z","status":"ssl_error","status_checked_at":"2026-01-24T22:12:10.529Z","response_time":89,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["android-bootstrap"],"created_at":"2025-02-24T09:28:24.234Z","updated_at":"2026-01-25T00:02:37.020Z","avatar_url":"https://github.com/ivanalvarado.png","language":"Kotlin","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Android Bootstrap\nThis repository is a starter template for creating Android projects, preconfigured with modern libraries and best practices to streamline development. The goal is to reduce setup time for new projects and provide a robust starting point that aligns with contemporary Android development standards.\n## Table of Contents\n- [Features](#features)\n- [Included Libraries](#included-libraries)\n- [Getting Started](#getting-started)\n- [Architecture](#architecture)\n- [Contributing](#contributing)\n- [License](#license)\n## Features\n- **Kotlin First**: All code is written in Kotlin to leverage its modern, concise syntax and compatibility with Android libraries.\n- **Jetpack Libraries**: Includes essential Jetpack components to support modern Android development.\n- **Dependency Injection**: Uses Hilt for streamlined dependency management.\n- **Network Ready**: Retrofit and OkHttp for efficient networking and API requests.\n- **Coroutines for Async Programming**: Integrated with coroutines to handle asynchronous tasks seamlessly.\n- **Material Design**: Preconfigured Material Components to achieve a polished, consistent UI.\n- **Image Loading**: Coil for easy image loading and caching.\n- **Test Suite**: Set up with essential libraries for unit and UI testing.\n- **Best Practices**: Architected for scalability and readability, with a focus on MVVM.\n## Included Libraries\n### Core Libraries\n- [**Kotlin Standard Library**](https://kotlinlang.org/api/latest/jvm/stdlib/): Leverages idiomatic Kotlin for cleaner, safer code.\n- [**Coroutines**](https://kotlinlang.org/docs/coroutines-overview.html): Manages background threads and async operations.\n### UI \u0026 Jetpack Components\n- [**Jetpack Compose**](https://developer.android.com/compose): For building UI in a declarative way.\n- [**Navigation Component**](https://developer.android.com/guide/navigation): Simplifies navigation between screens.\n- [**Lifecycle Components**](https://developer.android.com/jetpack/androidx/releases/lifecycle): Manages UI lifecycle states.\n- [**Paging**](https://developer.android.com/topic/libraries/architecture/paging/v3-overview): For efficient pagination of data.\n### Networking \u0026 Data\n- [**Retrofit**](https://github.com/square/retrofit): HTTP client for API calls.\n- [**OkHttp**](https://github.com/square/okhttp): Lower-level HTTP client for advanced networking capabilities.\n- [**Moshi**](https://github.com/square/moshi): JSON parser optimized for Kotlin.\n- [**Room**](https://developer.android.com/jetpack/androidx/releases/room): Database management with SQLite abstraction.\n- [**DataStore**](https://developer.android.com/jetpack/androidx/releases/datastore): Lightweight, key-value storage solution.\n### Dependency Injection\n- [**Hilt**](https://developer.android.com/training/dependency-injection/hilt-android): Simplifies dependency injection.\n### UI and Image Loading\n- [**Material Components**](https://developer.android.com/design/ui/mobile/guides/components/material-overview): UI components adhering to Material Design.\n- [**Coil**](https://github.com/coil-kt/coil): Fast, modern image loading library.\n### Testing\n- [**JUnit**](https://developer.android.com/training/testing/local-tests): Standard unit testing framework.\n- [**Mockk**](https://mockk.io/): Mocking library for Kotlin.\n- [**Espresso**](https://developer.android.com/training/testing/espresso): UI testing for Android.\n- [**Truth**](https://github.com/google/truth): Provides readable assertions for tests.\n### Utilities\n- [**Timber**](https://github.com/JakeWharton/timber): Flexible logging.\n- [**LeakCanary**](https://square.github.io/leakcanary/): Memory leak detection.\n- [**WorkManager**](https://developer.android.com/develop/background-work/background-tasks/persistent/getting-started): Manages background tasks with lifecycle awareness.\n## Getting Started\n### Prerequisites\n- **Android Studio** Arctic Fox or later\n- **Gradle 8.0+**\n- **Minimum SDK**: 21\n- **Target SDK**: Latest stable release\n### Installation\n**Clone the repository**:\n   ```bash\n   git clone https://github.com/ivanalvarado/android-bootstrap-project.git\n   ```\n- **Open in Android Studio**: Open the project in Android Studio and sync Gradle files.\n- **Run the App**: Build and run the app on an emulator or a physical device.\n### Project Structure\nThis project follows the MVVM architecture pattern:\n- **Model**: Data classes, repositories, and data sources (local and remote).\n- **ViewModel**: Business logic and data transformation.\n- **View**: UI components and views, built with Jetpack Compose.\n## Contributing\nContributions are welcome! Please submit a pull request with a clear description of your changes, and ensure all tests pass before submitting.\n## License\nThis project is licensed under the MIT License. See the [LICENSE](LICENSE.txt) file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fivanalvarado%2Fandroid-bootstrap","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fivanalvarado%2Fandroid-bootstrap","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fivanalvarado%2Fandroid-bootstrap/lists"}