20 lines
398 B
Kotlin
20 lines
398 B
Kotlin
plugins {
|
|
alias(libs.plugins.android.library)
|
|
}
|
|
|
|
android {
|
|
namespace = "org.vpnshare.gateway"
|
|
compileSdk = 36
|
|
|
|
defaultConfig {
|
|
minSdk = 26
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":apps:android:core:domain"))
|
|
implementation(project(":apps:android:core:engine"))
|
|
implementation(libs.androidx.core.ktx)
|
|
implementation(libs.kotlinx.coroutines.android)
|
|
}
|