38 lines
913 B
Groovy
38 lines
913 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 {
|
|
api 'androidx.core:core-ktx:1.7.0'
|
|
api 'androidx.appcompat:appcompat:1.5.0'
|
|
api 'com.google.android.material:material:1.6.1'
|
|
api "androidx.lifecycle:lifecycle-viewmodel-ktx:2.4.0"
|
|
api "androidx.lifecycle:lifecycle-livedata-ktx:2.4.0"
|
|
api "androidx.lifecycle:lifecycle-runtime-ktx:2.4.0"
|
|
api "androidx.fragment:fragment-ktx:1.5.0"
|
|
api "androidx.activity:activity-ktx:1.5.0"
|
|
|
|
api project(path: ':network')
|
|
api project(path: ':libraryTheme')
|
|
api("io.github.jeremyliao:live-event-bus-x:1.8.0")
|
|
}
|
|
|