-
Notifications
You must be signed in to change notification settings - Fork 532
/
dependencies.gradle
30 lines (24 loc) · 1002 Bytes
/
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
ext.versions = [
minSdk : 16,
compileSdk : 30,
buildTools : '30.0.2',
publishVersion : '1.2.7',
publishVersionCode: 9,
]
ext.deps = [
gradlePlugins: [
android: 'com.android.tools.build:gradle:4.2.1',
kotlin : 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.10',
bintray: 'com.novoda:bintray-release:0.9',
],
androidx : [
appcompat : 'androidx.appcompat:appcompat:1.3.0',
coordinatorlayout : 'androidx.coordinatorlayout:coordinatorlayout:1.1.0',
swiperefreshlayout: 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0',
],
material : 'com.google.android.material:material:1.3.0',
kotlin : [
stdlib8: 'org.jetbrains.kotlin:kotlin-stdlib-jdk8',
],
finestWebView: 'com.thefinestartist:finestwebview:' + versions.publishVersionCode
]