Docs Language | korea | english
Qvick's Design System is based on Material3 Official Document, which is maintained by Google's developers and designers.
Developed as Jetpack Compose, it provides various components such as buttons and announcements.
- Add JitPack Storage to Build File
dependencyResolutionManagement { repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) repositories { mavenCentral() maven { url = uri("https://jitpack.io") } } } - Add dependency to the dependency part
dependencies { implementation("com.github.Team-C0nnect:qvick-design-system-AOS:Tag") }
This library is optimized for Android app development and has the following compatibility and requirements.
min/target SDK
-
minSdkVersion 26
The library is designed to run on Android 8.0 (API 26) or later. This is a setup that utilizes the latest Android features and security updates, while also making it reliable for a significant number of devices. -
compileSdkVersion 35
It is compiled using the latest API, so you can take advantage of the latest Android features and optimization techniques in the app.
Language and Compilation Options
- Java 1.8 Compatible
You specified Java 1.8 and its JVM target versions through compileOptions and kotlinOptions. This ensures safe use of Java 8 features such as lambda, stream API, and the latest features from Kotlin.










