현재 window android환경이기 때문에 android만 추가함 NLog라이브러리를 추가할 예정 프로젝트의 build.gradle - flatDir를 사용하고 aar라이브러리를 추가하여 사용 allprojects { repositories { google() mavenCentral() flatDir(dirs: 'libs') maven {url 'https://jitpack.io'} } } 앱의 build.gradle dependencies { // implementation files("libs/nlog-release.aar") implementation("com.github.b3lon9:NLog:1.1.1") }