In your settings.gradle.kts, add the JitPack repository inside dependencyResolutionManagement:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url = uri("https://jitpack.io") }
}
}In your module-level build.gradle.kts:
dependencies {
implementation("com.github.PaponAhasan:UIComponentsLibrary:Tag")
}You can find the latest version here on JitPack. Check Latest
📌 Note: Replace Tag with the latest release tag of the library
- ✅ Supports both XML and Jetpack Compose
- ⚡ Lightweight and optimized for performance
- 🧩 Easy to integrate into any Android project
- 📱 Responsive and modern design
<com.rakibul.ahasan.uicomponents.CircularLoadingView
android:layout_width="100dp"
android:layout_height="100dp"
android:layout_gravity="center"/>CircularLoadingCompose(
modifier = Modifier.size(100.dp),
color = Color.Gray
)- Contributions are very welcome! 🎉
- If you want to contribute:
- Fork the repository
- Create a new feature branch
- Make your changes
- Submit a Pull Request
- We appreciate your support
- Author: Rakibul Ahasan
- Email: ahasan.papon@gmail.com
- GitHub: @PaponAhasan
MIT License
This project is licensed under the terms of the MIT license.