feat: 원격 FTP 서버 탐색 기능 기본 구현

This commit is contained in:
2026-01-04 23:59:00 +09:00
parent 8400a519e1
commit 93c92cb1ff
46 changed files with 1486 additions and 72 deletions

18
gradle/libs.versions.toml Normal file
View File

@@ -0,0 +1,18 @@
[versions]
agp = "8.13.2"
junit = "4.13.2"
junitVersion = "1.1.5"
espressoCore = "3.5.1"
appcompat = "1.6.1"
material = "1.10.0"
[libraries]
junit = { group = "junit", name = "junit", version.ref = "junit" }
ext-junit = { group = "androidx.test.ext", name = "junit", version.ref = "junitVersion" }
espresso-core = { group = "androidx.test.espresso", name = "espresso-core", version.ref = "espressoCore" }
appcompat = { group = "androidx.appcompat", name = "appcompat", version.ref = "appcompat" }
material = { group = "com.google.android.material", name = "material", version.ref = "material" }
[plugins]
android-application = { id = "com.android.application", version.ref = "agp" }