Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kt-kraft/easy-android
Android project template "Jetpack Compose"
https://github.com/kt-kraft/easy-android
android jetpack-compose kotlin
Last synced: 29 days ago
JSON representation
Android project template "Jetpack Compose"
- Host: GitHub
- URL: https://github.com/kt-kraft/easy-android
- Owner: Kt-Kraft
- License: mit
- Created: 2024-11-05T12:31:06.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-12-19T09:21:40.000Z (about 2 months ago)
- Last Synced: 2024-12-19T10:28:53.757Z (about 2 months ago)
- Topics: android, jetpack-compose, kotlin
- Language: Kotlin
- Homepage:
- Size: 19.6 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
Awesome Lists containing this project
README
Easy Android
## 📋 Features
- **Scalable Architecture**: Modular structure for easy feature integration and maintenance.
- **Modern Libraries**: Integrated with Jetpack Compose, Kotlin Coroutines, and other libraries for Android development.
- **Git Hooks & Code Quality**: Pre-configured git hooks and linting to ensure clean, consistent code.
- **Customizable & Extendable**: Easily customizable configurations to adapt to project-specific requirements.## 🚀 Getting Started
### 1. Clone the Repository
Clone the repository to your local machine using one of the following methods.
**Command Line**:
```bash
# Clone this repository
git clone https://github.com/Kt-Kraft/easy-android.git
cd easy-android
```**Android Studio**:
1. Open **Android Studio**
2. Navigate to **File** > **New** > **Project from Version Control**
3. Select **GitHub** and enter the repository URL### 2. Install Node.js and Yarn
This project uses [Volta](https://volta.sh/) to manage Node.js and Yarn versions for a consistent environment.
```bash
# Install Node.js and Yarn using Volta
volta install node
volta install yarn
```### 3. Initialize Git Hooks
Set up git hooks for development tooling:
```bash
# Install dependencies and initialize git hooks
yarn install
lefthook install
```---