23 lines
495 B
Groovy
23 lines
495 B
Groovy
apply plugin: 'com.android.library'
|
|
|
|
android {
|
|
compileSdk 36
|
|
|
|
defaultConfig {
|
|
minSdkVersion 26
|
|
targetSdkVersion 36
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
namespace 'net.irext.sdk'
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
implementation 'com.android.support:appcompat-v7:28.0.0'
|
|
}
|