This repository has been archived by the owner on Feb 11, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
dependencies.gradle
58 lines (53 loc) · 2.2 KB
/
dependencies.gradle
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
/*
* Copyright © 2017-2020 WireGuard LLC.
* Copyright © 2018-2020 Harsh Shandilya <[email protected]>. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0
*/
ext.versions = [
minSdk: 23,
targetSdk: 29,
compileSdk: 29,
versionCode: 5293,
versionName: "5.2.11",
buildTools: "29.0.2",
packageName: "me.msfjarvis.viscerion"
]
ext.deps = [
gradle_plugin: [
android: "com.android.tools.build:gradle:3.5.0",
kotlin: "org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.61",
detekt: "io.gitlab.arturbosch.detekt:detekt-gradle-plugin:1.5.1",
spotless: "com.diffplug.spotless:spotless-plugin-gradle:3.27.1"
],
kotlin: [
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",
fragment_ktx: "androidx.fragment:fragment-ktx:1.2.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",
slice_builders: "androidx.slice:slice-builders:1.1.0-alpha01",
slice_core: "androidx.slice:slice-core:1.1.0-alpha01",
slice_builders_ktx: "androidx.slice:slice-builders-ktx:1.0.0-alpha07",
work_ktx: "androidx.work:work-runtime-ktx:2.3.1"
],
third_party: [
barcode: "com.kroegerama:barcode-kaiteki:1.1.1",
dagger: "com.google.dagger:dagger:2.26",
dagger_compiler: "com.google.dagger:dagger-compiler:2.26",
leak_canary: "com.squareup.leakcanary:leakcanary-android:2.1",
retrofuture: "net.sourceforge.streamsupport:android-retrofuture:1.7.1",
threetenabp: "com.jakewharton.threetenabp:threetenabp:1.2.2",
timber: "com.jakewharton.timber:timber:4.7.1",
whatthestack: "com.github.haroldadmin:WhatTheStack:0.0.1",
],
testing: [
junit: "junit:junit:4.13",
]
]