element-android/attachment-viewer/build.gradle

61 lines
1.7 KiB
Groovy
Raw Normal View History

2020-07-05 22:47:38 +03:00
/*
* Copyright (c) 2020 New Vector Ltd
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
android {
2021-09-09 00:10:45 +03:00
compileSdk 30
2020-07-05 22:47:38 +03:00
defaultConfig {
2021-09-09 00:10:45 +03:00
minSdk 21
targetSdk 30
2020-07-05 22:47:38 +03:00
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_11
2020-07-05 22:47:38 +03:00
}
kotlinOptions {
jvmTarget = "11"
2020-07-05 22:47:38 +03:00
}
2020-12-16 01:46:52 +02:00
buildFeatures {
viewBinding true
}
2020-07-05 22:47:38 +03:00
}
dependencies {
implementation project(":library:ui-styles")
implementation 'com.github.chrisbanes:PhotoView:2.3.0'
2020-07-05 22:47:38 +03:00
implementation 'io.reactivex.rxjava2:rxkotlin:2.4.0'
2020-07-08 21:09:39 +03:00
implementation 'io.reactivex.rxjava2:rxandroid:2.1.1'
2020-07-05 22:47:38 +03:00
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation 'androidx.core:core-ktx:1.6.0'
implementation 'androidx.appcompat:appcompat:1.3.1'
implementation "androidx.recyclerview:recyclerview:1.2.1"
2020-07-05 22:47:38 +03:00
implementation 'com.google.android.material:material:1.4.0'
2020-07-05 22:47:38 +03:00
}