3bf8134b84
* Upgrade dependencies Kotlin 1.3.50 -> 1.3.60 AGP 3.5.1 -> 3.5.2 * Update spotless * Update biometric to 1.0.0 * Update core-ktx to 1.2.0-beta02 * Update fragment-ktx to 1.2.0-rc02 Signed-off-by: Harsh Shandilya <msfjarvis@gmail.com>
41 lines
1,002 B
Groovy
41 lines
1,002 B
Groovy
/*
|
|
* Copyright © 2014-2019 The Android Password Store Authors. All Rights Reserved.
|
|
* SPDX-License-Identifier: GPL-3.0-only
|
|
*/
|
|
ext {
|
|
versions = [
|
|
// Project
|
|
minSdk: 21,
|
|
targetSdk: 29,
|
|
compileSdk: 29,
|
|
versionCode: 10303,
|
|
versionName: '1.3.3',
|
|
buildTools: '29.0.2',
|
|
|
|
// Plugins
|
|
gradlePlugin: '3.5.2',
|
|
kotlin: '1.3.60',
|
|
spotless: '3.26.0',
|
|
|
|
// AndroidX
|
|
annotation: '1.1.0',
|
|
appcompat: '1.1.0',
|
|
biometric: '1.0.0',
|
|
cardview: '1.0.0',
|
|
constraintLayout: '2.0.0-beta3',
|
|
coreKtx: '1.2.0-beta02',
|
|
documentfile: '1.0.1',
|
|
fragmentKtx: '1.2.0-rc02',
|
|
material: '1.2.0-alpha01',
|
|
preference: '1.1.0',
|
|
recyclerview: '1.0.0',
|
|
|
|
// Third party
|
|
commons_io: '2.5',
|
|
commons_codec: '1.13',
|
|
jgit: '3.7.1.201504261725-r',
|
|
jsch: '0.1.55',
|
|
openpgp: '0.1.0',
|
|
sshauth: '1.0'
|
|
]
|
|
}
|