- μΈλΆ λΌμ΄λΈλ¬λ¦¬λ₯Ό μ¬μ©νμ§ μκ³ μ΅μνμΌλ‘ ꡬν
(Minimize deployment without using external libraries)
- Project Gradle
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
- App Module Gradle
dependencies {
implementation 'com.github.sieunju.widget:gesture:$latestVersion'
implementation 'com.github.sieunju.widget:progress:$latestVersion'
implementation 'com.github.sieunju.widget:recyclerview:$latestVersion'
implementation 'com.github.sieunju.widget:tablayout:$latestVersion'
implementation 'com.github.sieunju.widget:view:$latestVersion'
}
CustomView | FlexibleImageEidtView | ProgressView |
---|---|---|
LineIndicator | TabLayout | ParallaxViewHolder |
SpecialGrid | Scroller | TranslationBehavior |
-
νΉμλ λ¨Έν°λ¦¬μΌμ μ¬μ©νμκ±°λ νλ‘μ νΈμ μ¬μ©μ€μΈ λΌμ΄λΈλ¬λ¦¬λ μΆ©λμ΄ μΌμ΄λλ κ²½μ°μλ μλμ κ°μ΄ μ¬μ©ν΄μ£Όμλ©΄ λ©λλ€. πββοΈ (this is soluction π)
-
A.K.A exclude
implementation("com.github.sieunju:widget:$lateversion") {
exclude("com.google.android.material")
exclude("androidx.appcompat:appcompat")
exclude("androidx.constraintlayout")
}