34 lines
850 B
Groovy
34 lines
850 B
Groovy
|
apply plugin: 'com.android.library'
|
||
|
apply plugin: 'kotlin-android'
|
||
|
|
||
|
android {
|
||
|
compileSdkVersion buildConfig.compileSdk
|
||
|
|
||
|
defaultConfig {
|
||
|
minSdkVersion buildConfig.minSdk
|
||
|
targetSdkVersion buildConfig.targetSdk
|
||
|
|
||
|
consumerProguardFiles "consumer-rules.pro"
|
||
|
}
|
||
|
|
||
|
buildTypes {
|
||
|
release {
|
||
|
minifyEnabled false
|
||
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
||
|
}
|
||
|
}
|
||
|
compileOptions {
|
||
|
sourceCompatibility JavaVersion.VERSION_17
|
||
|
targetCompatibility JavaVersion.VERSION_17
|
||
|
}
|
||
|
namespace 'foundation.e.advancedprivacy.permissions.eos'
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
compileOnly project(':permissionseos:libs:hidden-apis-stub')
|
||
|
|
||
|
implementation(libs.bundles.kotlin.android.coroutines)
|
||
|
implementation project(':core')
|
||
|
|
||
|
}
|