Files
coco 7a4fb0e6ae a
2026-07-03 16:23:31 +08:00

35 lines
854 B
Groovy

plugins {
id 'com.android.library'
id 'org.jetbrains.kotlin.android'
}
android {
compileSdk 32
defaultConfig {
minSdk 29
targetSdk 32
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = '1.8'
}
}
dependencies {
implementation 'androidx.core:core-ktx:1.7.0'
implementation 'androidx.appcompat:appcompat:1.5.0'
implementation 'com.google.android.material:material:1.6.1'
api("io.github.jeremyliao:live-event-bus-x:1.8.0")
api("com.google.code.gson:gson:2.8.6")
api("com.squareup.okhttp3:okhttp:4.1.0")
api("com.squareup.retrofit2:retrofit:2.9.0")
api("com.squareup.retrofit2:converter-gson:2.9.0")
api("com.squareup.okhttp3:logging-interceptor:4.9.0")
}