This repository was archived by the owner on Dec 23, 2024. It is now read-only.
forked from google/talkback
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathshared.gradle
More file actions
45 lines (38 loc) · 1.46 KB
/
shared.gradle
File metadata and controls
45 lines (38 loc) · 1.46 KB
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
// For building the open-source release of TalkBack.
ext {
talkbackApplicationId = "com.android.talkback"
talkbackMainPermission = "com.android.talkback.permission.TALKBACK"
}
android {
compileSdkVersion 'android-30'
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
defaultConfig {
vectorDrawables.useSupportLibrary = true
multiDexEnabled true
minSdkVersion 23
}
}
dependencies {
// Google common
implementation 'com.google.guava:guava:22.0'
implementation 'com.google.android.material:material:1.1.0'
// Support library
implementation 'androidx.annotation:annotation:1.1.0'
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.collection:collection:1.1.0'
implementation 'androidx.core:core:1.5.0-alpha01'
implementation 'androidx.fragment:fragment:1.2.0-rc03'
implementation 'androidx.localbroadcastmanager:localbroadcastmanager:1.0.0'
implementation 'androidx.preference:preference:1.1.0'
implementation 'androidx.recyclerview:recyclerview:1.1.0'
implementation 'androidx.viewpager2:viewpager2:1.0.0'
// Nullable
implementation 'org.checkerframework:checker-qual:2.5.8'
// Auto-value
api 'com.google.auto.value:auto-value-annotations:1.7'
annotationProcessor 'com.google.auto.value:auto-value:1.7'
implementation 'javax.annotation:javax.annotation-api:1.3.2'
}