45 lines
998 B
Groovy
45 lines
998 B
Groovy
|
|
plugins {
|
||
|
|
alias(libs.plugins.android.library)
|
||
|
|
}
|
||
|
|
|
||
|
|
android {
|
||
|
|
namespace 'com.example.modulenews'
|
||
|
|
compileSdk 35
|
||
|
|
|
||
|
|
defaultConfig {
|
||
|
|
minSdk 24
|
||
|
|
targetSdk 35
|
||
|
|
versionCode 1
|
||
|
|
versionName "1.0"
|
||
|
|
|
||
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||
|
|
}
|
||
|
|
|
||
|
|
buildTypes {
|
||
|
|
release {
|
||
|
|
minifyEnabled false
|
||
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
||
|
|
}
|
||
|
|
}
|
||
|
|
compileOptions {
|
||
|
|
sourceCompatibility JavaVersion.VERSION_17
|
||
|
|
targetCompatibility JavaVersion.VERSION_17
|
||
|
|
}
|
||
|
|
|
||
|
|
dataBinding {
|
||
|
|
enabled = true
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
dependencies {
|
||
|
|
|
||
|
|
implementation libs.appcompat
|
||
|
|
implementation libs.material
|
||
|
|
testImplementation libs.junit
|
||
|
|
androidTestImplementation libs.ext.junit
|
||
|
|
androidTestImplementation libs.espresso.core
|
||
|
|
|
||
|
|
implementation project(':moduleUtil')
|
||
|
|
api project(':tuiconversation')
|
||
|
|
api project(':tuichat')
|
||
|
|
}
|