37 lines
938 B
Plaintext
37 lines
938 B
Plaintext
|
|
plugins {
|
||
|
|
alias(libs.plugins.android.dynamic.feature)
|
||
|
|
alias(libs.plugins.kotlin.android)
|
||
|
|
}
|
||
|
|
android {
|
||
|
|
namespace = "com.syaroful.agrilinkvocpro.diseasedetection_feature"
|
||
|
|
compileSdk = 35
|
||
|
|
|
||
|
|
defaultConfig {
|
||
|
|
minSdk = 29
|
||
|
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
||
|
|
}
|
||
|
|
|
||
|
|
buildTypes {
|
||
|
|
release {
|
||
|
|
isMinifyEnabled = false
|
||
|
|
proguardFiles(
|
||
|
|
"proguard-rules-dynamic-features.pro"
|
||
|
|
)
|
||
|
|
}
|
||
|
|
}
|
||
|
|
compileOptions {
|
||
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
||
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
||
|
|
}
|
||
|
|
kotlinOptions {
|
||
|
|
jvmTarget = "1.8"
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
dependencies {
|
||
|
|
implementation(project(":app"))
|
||
|
|
implementation(libs.androidx.core.ktx)
|
||
|
|
testImplementation(libs.junit)
|
||
|
|
androidTestImplementation(libs.androidx.junit)
|
||
|
|
androidTestImplementation(libs.androidx.espresso.core)
|
||
|
|
}
|