40 lines
1.1 KiB
Groovy
40 lines
1.1 KiB
Groovy
|
|
plugins {
|
||
|
|
alias(libs.plugins.android.library)
|
||
|
|
}
|
||
|
|
|
||
|
|
android {
|
||
|
|
namespace 'com.utsmyanmar.mpulib'
|
||
|
|
compileSdk 34
|
||
|
|
|
||
|
|
defaultConfig {
|
||
|
|
minSdk 24
|
||
|
|
|
||
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||
|
|
consumerProguardFiles "consumer-rules.pro"
|
||
|
|
}
|
||
|
|
|
||
|
|
buildTypes {
|
||
|
|
release {
|
||
|
|
minifyEnabled false
|
||
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
||
|
|
}
|
||
|
|
}
|
||
|
|
compileOptions {
|
||
|
|
sourceCompatibility JavaVersion.VERSION_11
|
||
|
|
targetCompatibility JavaVersion.VERSION_11
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
dependencies {
|
||
|
|
implementation 'androidx.appcompat:appcompat:1.2.0'
|
||
|
|
implementation 'com.google.android.material:material:1.2.1'
|
||
|
|
|
||
|
|
// implementation files('../app/libs/PayLib-release-1.4.37.aar')
|
||
|
|
|
||
|
|
// implementation files('libs/PayLib-release-1.4.64.aar')
|
||
|
|
implementation project(path: ':paysdk-lib')
|
||
|
|
implementation project(path: ':nexsdk-lib')
|
||
|
|
testImplementation 'junit:junit:4.13.2'
|
||
|
|
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
|
||
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
|
||
|
|
}
|