1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
/*
* Copyright © 2014-2020 The Android Password Store Authors. All Rights Reserved.
* SPDX-License-Identifier: GPL-3.0-only
*/
ext.versions = [
minSdk: 23,
targetSdk: 28,
compileSdk: 28,
versionCode: 10400,
versionName: '1.5.0-SNAPSHOT',
buildTools: '29.0.2',
packageName: 'dev.msfjarvis.aps'
]
ext.deps = [
gradle_plugin: [
android: 'com.android.tools.build:gradle:3.5.3',
kotlin: 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.61',
spotless: 'com.diffplug.spotless:spotless-plugin-gradle:3.27.1'
],
kotlin: [
coroutines: [
android: 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.3',
core: 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.3',
],
stdlib8: 'org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.61'
],
androidx: [
annotation: 'androidx.annotation:annotation:1.1.0',
appcompat: 'androidx.appcompat:appcompat:1.2.0-alpha02',
biometric: 'androidx.biometric:biometric:1.0.1',
constraint_layout: 'androidx.constraintlayout:constraintlayout:2.0.0-beta4',
core_ktx: 'androidx.core:core-ktx:1.3.0-alpha01',
documentfile: 'androidx.documentfile:documentfile:1.0.1',
material: 'com.google.android.material:material:1.2.0-alpha04',
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',
fastscroll: 'me.zhanghai.android.fastscroll:library:1.1.0',
jsch: 'com.jcraft:jsch:0.1.55',
jgit: 'org.eclipse.jgit:org.eclipse.jgit:3.7.1.201504261725-r',
leakcanary: 'com.squareup.leakcanary:leakcanary-android:2.1',
openpgp_ktx: 'com.github.android-password-store:openpgp-ktx:1.2.0',
ssh_auth: 'org.sufficientlysecure:sshauthentication-api:1.0',
timber: 'com.jakewharton.timber:timber:4.7.1',
whatthestack: 'com.github.haroldadmin:WhatTheStack:0.0.1',
],
testing: [
junit: 'junit:junit:4.13',
androidx: [
runner: 'androidx.test:runner:1.3.0-alpha03',
rules: 'androidx.test:rules:1.3.0-alpha03',
junit: 'androidx.test.ext:junit:1.1.2-alpha03',
espresso_core: 'androidx.test.espresso:espresso-core:3.3.0-alpha03',
espresso_intents: 'androidx.test.espresso:espresso-intents:3.3.0-alpha03'
]
]
]
|