47 lines
1.3 KiB
Plaintext
47 lines
1.3 KiB
Plaintext
|
|
plugins {
|
||
|
|
alias(libs.plugins.android.library)
|
||
|
|
alias(libs.plugins.kotlin.android)
|
||
|
|
}
|
||
|
|
|
||
|
|
android {
|
||
|
|
namespace = "com.utsmyanmar.xpay"
|
||
|
|
compileSdk = 34
|
||
|
|
|
||
|
|
defaultConfig {
|
||
|
|
minSdk = 24
|
||
|
|
|
||
|
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
||
|
|
consumerProguardFiles("consumer-rules.pro")
|
||
|
|
}
|
||
|
|
|
||
|
|
buildTypes {
|
||
|
|
release {
|
||
|
|
isMinifyEnabled = false
|
||
|
|
proguardFiles(
|
||
|
|
getDefaultProguardFile("proguard-android-optimize.txt"),
|
||
|
|
"proguard-rules.pro"
|
||
|
|
)
|
||
|
|
}
|
||
|
|
}
|
||
|
|
compileOptions {
|
||
|
|
sourceCompatibility = JavaVersion.VERSION_11
|
||
|
|
targetCompatibility = JavaVersion.VERSION_11
|
||
|
|
}
|
||
|
|
kotlinOptions {
|
||
|
|
jvmTarget = "11"
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
dependencies {
|
||
|
|
implementation("androidx.core:core-ktx:1.6.0")
|
||
|
|
// implementation(platform("org.jetbrains.kotlin:kotlin-bom:1.6.0"))
|
||
|
|
implementation("androidx.appcompat:appcompat:1.3.1")
|
||
|
|
implementation("com.google.android.material:material:1.4.0")
|
||
|
|
|
||
|
|
implementation(project( ":paysdk-lib"))
|
||
|
|
implementation(project( ":nexsdk-lib"))
|
||
|
|
|
||
|
|
testImplementation("junit:junit:4.13.2")
|
||
|
|
androidTestImplementation("androidx.test.ext:junit:1.2.1")
|
||
|
|
androidTestImplementation("androidx.test.espresso:espresso-core:3.6.1")
|
||
|
|
}
|