feat: 实现 Android 标尺测量应用完整代码

This commit is contained in:
xiaji
2026-05-19 23:01:08 +08:00
parent 36220620a3
commit 98baa89cee
27 changed files with 3188 additions and 0 deletions

18
settings.gradle.kts Normal file
View File

@@ -0,0 +1,18 @@
pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
rootProject.name = "android-ruler"
include(":app")