df0c886152
Signed-off-by: Harsh Shandilya <msfjarvis@gmail.com>
59 lines
2.1 KiB
Groovy
59 lines
2.1 KiB
Groovy
/*
|
|
* Copyright © 2014-2019 The Android Password Store Authors. All Rights Reserved.
|
|
* SPDX-License-Identifier: GPL-3.0-only
|
|
*/
|
|
ext.versions = [
|
|
minSdk: 21,
|
|
targetSdk: 29,
|
|
compileSdk: 29,
|
|
versionCode: 10303,
|
|
versionName: '1.3.3',
|
|
buildTools: '29.0.2'
|
|
]
|
|
|
|
ext.deps = [
|
|
gradle_plugin: [
|
|
android: 'com.android.tools.build:gradle:3.5.2',
|
|
kotlin: 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.60',
|
|
spotless: 'com.diffplug.spotless:spotless-plugin-gradle:3.26.0'
|
|
],
|
|
|
|
kotlin: [
|
|
stdlib8: 'org.jetbrains.kotlin:kotlin-stdlib-jdk8'
|
|
],
|
|
|
|
androidx: [
|
|
annotation: 'androidx.annotation:annotation:1.1.0',
|
|
appcompat: 'androidx.appcompat:appcompat:1.1.0',
|
|
biometric: 'androidx.biometric:biometric:1.0.0',
|
|
cardview: 'androidx.cardview:cardview:1.0.0',
|
|
constraint_layout: 'androidx.constraintlayout:constraintlayout:2.0.0-beta3',
|
|
core_ktx: 'androidx.core:core-ktx:1.2.0-beta02',
|
|
documentfile: 'androidx.documentfile:documentfile:1.0.1',
|
|
material: 'com.google.android.material:material:1.2.0-alpha01',
|
|
preference: 'androidx.preference:preference:1.1.0',
|
|
recycler_view: 'androidx.recyclerview:recyclerview:1.0.0'
|
|
],
|
|
|
|
third_party: [
|
|
commons_io: 'commons-io:commons-io:2.5',
|
|
commons_codec: 'commons-codec:commons-codec:1.13',
|
|
jsch: 'com.jcraft:jsch:0.1.55',
|
|
jgit: 'org.eclipse.jgit:org.eclipse.jgit:3.7.1.201504261725-r',
|
|
openpgp_ktx: 'com.github.android-password-store:openpgp-ktx:0.1.0',
|
|
ssh_auth: 'org.sufficientlysecure:sshauthentication-api:1.0'
|
|
],
|
|
|
|
testing: [
|
|
junit: 'junit:junit:4.13-rc-1',
|
|
koin_test: 'org.koin:koin-test:2.0.1',
|
|
mockito_core: 'org.mockito:mockito-core:3.1.0',
|
|
androidx: [
|
|
runner: 'androidx.test:runner:1.3.0-alpha02',
|
|
rules: 'androidx.test:rules:1.3.0-alpha02',
|
|
junit: 'androidx.test.ext:junit:1.1.2-alpha02',
|
|
espresso_core: 'androidx.test.espresso:espresso-core:3.3.0-alpha02',
|
|
espresso_intents: 'androidx.test.espresso:espresso-intents:3.3.0-alpha02'
|
|
]
|
|
]
|
|
]
|