| 12345678910111213141516171819202122232425262728293031 |
- plugins {
- alias(libs.plugins.kotlin.android)
- id("com.android.library")
- }
- android {
- namespace = "com.narutohuo.xindazhou.qrcode"
- compileSdk = 36
- defaultConfig {
- minSdk = 26
- }
- compileOptions {
- sourceCompatibility = JavaVersion.VERSION_17
- targetCompatibility = JavaVersion.VERSION_17
- }
- kotlinOptions {
- jvmTarget = "17"
- }
- }
- dependencies {
- // 只依赖 base-common(不直接依赖 base-core)
- // base-common 会传递 base-core 的依赖
- implementation(project(":base-common"))
-
- // 华为扫码SDK(待添加具体版本)
- // implementation 'com.huawei.hms:scan:xxx'
- }
|