2021-06-15 12:23:54 +02:00
|
|
|
/*
|
2024-09-24 12:09:02 +02:00
|
|
|
* Copyright 2021-2024 New Vector Ltd.
|
2021-06-15 12:23:54 +02:00
|
|
|
*
|
2024-09-24 12:09:02 +02:00
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
* Please see LICENSE in the repository root for full details.
|
2021-06-15 12:23:54 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
plugins {
|
|
|
|
id 'com.android.library'
|
|
|
|
id 'kotlin-android'
|
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
|
|
|
|
2022-10-17 09:14:28 +02:00
|
|
|
namespace "im.vector.lib.ui.styles"
|
|
|
|
|
2021-09-15 11:28:58 +02:00
|
|
|
compileSdk versions.compileSdk
|
2021-06-15 12:23:54 +02:00
|
|
|
defaultConfig {
|
2021-09-15 11:28:58 +02:00
|
|
|
minSdk versions.minSdk
|
|
|
|
targetSdk versions.targetSdk
|
2021-06-15 12:23:54 +02:00
|
|
|
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
|
|
}
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
compileOptions {
|
2021-09-15 11:28:58 +02:00
|
|
|
sourceCompatibility versions.sourceCompat
|
|
|
|
targetCompatibility versions.targetCompat
|
2021-06-15 12:23:54 +02:00
|
|
|
}
|
|
|
|
kotlinOptions {
|
2024-07-15 18:12:08 +02:00
|
|
|
jvmTarget = versions.jvmTarget
|
2021-06-15 12:23:54 +02:00
|
|
|
}
|
2021-06-15 14:48:45 +02:00
|
|
|
buildFeatures {
|
|
|
|
viewBinding true
|
|
|
|
}
|
2021-06-15 12:23:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2021-09-15 11:28:58 +02:00
|
|
|
implementation libs.androidx.appCompat
|
2022-07-01 17:05:32 +02:00
|
|
|
implementation libs.androidx.fragmentKtx
|
2021-09-17 13:58:44 +02:00
|
|
|
implementation libs.google.material
|
2021-06-15 12:39:39 +02:00
|
|
|
// Pref theme
|
2021-09-17 13:58:44 +02:00
|
|
|
implementation libs.androidx.preferenceKtx
|
2021-06-15 21:37:27 +02:00
|
|
|
// dialpad dimen
|
2022-09-16 12:45:20 +02:00
|
|
|
implementation project(":library:external:dialpad")
|
2021-09-29 09:56:32 +02:00
|
|
|
}
|