2026-05-07 19:39:41 +08:00
|
|
|
apply plugin: "com.android.library"
|
|
|
|
|
|
|
|
|
|
android {
|
2026-07-17 13:50:30 +08:00
|
|
|
compileSdk = 36
|
|
|
|
|
namespace = "com.xuqm.update"
|
2026-05-07 19:39:41 +08:00
|
|
|
|
|
|
|
|
defaultConfig {
|
2026-07-17 13:50:30 +08:00
|
|
|
minSdk = 24
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
compileOptions {
|
|
|
|
|
sourceCompatibility = JavaVersion.VERSION_17
|
|
|
|
|
targetCompatibility = JavaVersion.VERSION_17
|
2026-05-07 19:39:41 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
repositories {
|
2026-07-20 19:31:43 +08:00
|
|
|
maven { url = uri("https://nexus.xuqinmin.com/repository/android/") }
|
2026-05-07 19:39:41 +08:00
|
|
|
mavenCentral()
|
|
|
|
|
google()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dependencies {
|
2026-07-17 13:50:30 +08:00
|
|
|
implementation("com.facebook.react:react-android")
|
|
|
|
|
implementation("com.xuqm:sdk-update:2.0.0-SNAPSHOT")
|
2026-07-20 19:31:43 +08:00
|
|
|
testImplementation("junit:junit:4.13.2")
|
2026-05-07 19:39:41 +08:00
|
|
|
}
|