首次提交

This commit is contained in:
DelLevin-Home
2026-08-16 13:44:35 +08:00
commit a9085ad83f
322 changed files with 36601 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
plugins {
`kotlin-dsl`
}
repositories {
mavenCentral()
}

View File

@@ -0,0 +1,15 @@
import org.gradle.api.JavaVersion
object Configs {
const val compileSdk = 36
const val minSdk = 33
const val targetSdk = 33
const val namespace = "com.fan.edgex"
const val applicationId = "com.fan.edgex"
const val versionCode = 211
const val versionName = "2.1.1"
val javaVersion = JavaVersion.VERSION_11
const val jvmTarget = "11"
}