-
Notifications
You must be signed in to change notification settings - Fork 145
/
Copy pathbuild.gradle
36 lines (28 loc) · 1.04 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
apply plugin: 'com.android.library'
group = project.libraryGroup
version = project.libraryVersion
android {
compileSdkVersion project.compileSdkVersion
buildToolsVersion project.buildToolsVersion
defaultConfig {
minSdkVersion project.minSdkVersion
targetSdkVersion project.targetSdkVersion
versionName version
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
lintOptions {
abortOnError false
}
resourcePrefix 'tmb_'
}
dependencies {
testImplementation "junit:junit:4.12"
api project(':hyperion-plugin')
implementation "androidx.appcompat:appcompat:${project.versionAppCompat}"
annotationProcessor "com.google.auto.service:auto-service:${project.versionAutoService}"
implementation "androidx.recyclerview:recyclerview:1.0.0"
implementation "com.google.android.material:material:1.0.0"
implementation "com.jakewharton.timber:timber:4.7.0"
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
}
apply from: '../publish.gradle'