52 lines
1.2 KiB
Groovy
52 lines
1.2 KiB
Groovy
/*
|
|
* Copyright 2021-2024 New Vector Ltd.
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
* Please see LICENSE in the repository root for full details.
|
|
*/
|
|
|
|
plugins {
|
|
id 'com.android.library'
|
|
id 'kotlin-android'
|
|
}
|
|
|
|
android {
|
|
|
|
namespace "im.vector.lib.ui.styles"
|
|
|
|
compileSdk versions.compileSdk
|
|
defaultConfig {
|
|
minSdk versions.minSdk
|
|
targetSdk versions.targetSdk
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility versions.sourceCompat
|
|
targetCompatibility versions.targetCompat
|
|
}
|
|
kotlinOptions {
|
|
jvmTarget = versions.jvmTarget
|
|
}
|
|
buildFeatures {
|
|
viewBinding true
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation libs.androidx.appCompat
|
|
implementation libs.androidx.fragmentKtx
|
|
implementation libs.google.material
|
|
// Pref theme
|
|
implementation libs.androidx.preferenceKtx
|
|
// dialpad dimen
|
|
implementation project(":library:external:dialpad")
|
|
}
|