blob: b9f54f9cf2ce6d8937da5f0d950c0caf34db1d78 (
plain)
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
|
buildscript {
ext {
activityVersion = '1.5.1'
annotationsVersion = '1.4.0'
appcompatVersion = '1.4.2'
biometricVersion = '1.1.0'
collectionVersion = '1.2.0'
constraintLayoutVersion = '2.1.4'
coordinatorLayoutVersion = '1.2.0'
coreKtxVersion = '1.8.0'
coroutinesVersion = '1.6.4'
datastoreVersion = '1.0.0'
desugarVersion = '1.1.5'
fragmentVersion = '1.5.1'
grpcVersion = '1.46.0'
jsr305Version = '3.0.2'
junitVersion = '4.13.2'
lifecycleRuntimeKtxVersion = '2.5.1'
materialComponentsVersion = '1.6.1'
preferenceVersion = '1.2.0'
protobufGradleVersion = '0.8.18'
protocVersion = '3.20.1'
zxingEmbeddedVersion = '4.3.0'
groupName = 'com.wireguard.android'
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
tasks {
wrapper {
gradleVersion = "7.5"
distributionSha256Sum = "cb87f222c5585bd46838ad4db78463a5c5f3d336e5e2b98dc7c0c586527351c2"
}
}
apply from: "version.gradle"
|