group = "com.example.protocol_sdk" version = "1.0-SNAPSHOT" buildscript { val kotlinVersion = "2.2.20" repositories { google() mavenCentral() } dependencies { classpath("com.android.tools.build:gradle:8.11.1") classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion") } } allprojects { repositories { google() mavenCentral() } } plugins { id("com.android.library") id("org.jetbrains.kotlin.android") } android { namespace = "com.example.protocol_sdk" compileSdk = 36 compileOptions { sourceCompatibility = JavaVersion.VERSION_17 targetCompatibility = JavaVersion.VERSION_17 } sourceSets { getByName("main") { java.srcDirs("src/main/kotlin") } getByName("test") { java.srcDirs("src/test/kotlin") } } defaultConfig { minSdk = 24 } testOptions { unitTests { isIncludeAndroidResources = true all { it.useJUnitPlatform() it.outputs.upToDateWhen { false } it.testLogging { events("passed", "skipped", "failed", "standardOut", "standardError") showStandardStreams = true } } } } } kotlin { compilerOptions { jvmTarget.set(org.jetbrains.kotlin.gradle.dsl.JvmTarget.JVM_17) } } dependencies { // Compose BOM 统一管理子库版本,按需在各 SDK 中引入具体组件 testImplementation("org.jetbrains.kotlin:kotlin-test") testImplementation("org.mockito:mockito-core:5.0.0") }