forked from muzei/muzei
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
84 lines (79 loc) · 2.72 KB
/
build.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
buildscript {
ext {
compileSdkVersion = 31
targetSdkVersion = 30
activityVersion = '1.4.0'
appCompatVersion = '1.4.0-rc01'
archCoreVersion = '2.1.0'
browserVersion = '1.4.0-rc01'
coilVersion = '1.3.2'
constraintLayoutVersion = '2.0.4'
coreVersion = '1.7.0'
coroutinesVersion = '1.5.1'
dokkaVersion = '1.6.0'
drawerLayoutVersion = '1.1.1'
exifInterfaceVersion = '1.3.3'
firebaseAnalyticsVersion = '19.0.1'
firebaseCrashlyticsVersion = '18.2.0'
firebasePerfVersion = '20.0.2'
fragmentVersion = '1.4.0-beta01'
kotlinVersion = '1.6.10'
kspVersion = '1.6.10-1.0.2'
lifecycleVersion = '2.4.0'
materialVersion = '1.5.0-alpha03'
multidexVersion = '2.0.1'
navigationVersion = '2.4.0-beta01'
okhttpVersion = '3.12.12'
okhttpCoroutinesVersion = '1.0'
pagingVersion = '3.1.0-beta01'
playServicesWearableVersion = '17.1.0'
preferenceVersion = '1.2.0-alpha01'
recyclerViewVersion = '1.3.0-alpha01'
retrofitVersion = '2.9.0'
roomVersion = '2.4.0-beta01'
subsamplingVersion = '3.10.0'
swipeRefreshLayoutVersion = '1.1.0'
taskerVersion = '0.4.1'
viewPager2Version = '1.1.0-beta01'
wearableVersion = '2.8.1'
wearVersion = '1.1.0'
workManagerVersion = '2.7.0'
}
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.0.4'
classpath "com.google.gms:google-services:4.3.10"
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.7.1'
classpath "com.google.firebase:perf-plugin:1.4.0"
classpath "org.jetbrains.dokka:dokka-gradle-plugin:$dokkaVersion"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$navigationVersion"
}
}
plugins {
id "com.google.devtools.ksp" version "$kspVersion"
}
allprojects {
repositories {
google()
mavenCentral()
}
}