You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Plugin
은 Gradle 빌드 시스템을 확장하여 특정한 기능을 제공할 때 사용됩니다.ex) 안드로이드 어플리케이션을 빌드하려면 AGP(Android Gradle Plugin)을
plugins{}
블럭에 선언해야합니다.plugins { alias(libs.plugins.android.application) apply false }
dependency
는 외부 라이브러리나 프레임워크를 사용하여 개발에 필요한 기능을 확장 할 때 사용됩니다.ex) 의존성 주입 프레임워크를 사용하기 위해
Koin
을dependencies{}
블럭에 선언해야합니다.dependencies{ // koin implementation(platform(libs.koin.bom)) implementation(libs.koin.core) testImplementation(libs.koin.test.junit5) androidTestImplementation(libs.koin.android.test) }
Beta Was this translation helpful? Give feedback.
All reactions