Initial commit: Android app with compileSdk 34, minSdk 24, targetSdk 34

This commit is contained in:
xiajiid
2026-02-08 00:32:18 +08:00
commit eeb820342f
12 changed files with 278 additions and 0 deletions

17
settings.gradle Normal file
View File

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