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