forked from willowtreeapps/Hyperion-Android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
33 lines (25 loc) · 894 Bytes
/
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
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
versionCode buildVersionCode()
versionName version
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
lintOptions {
abortOnError false
}
resourcePrefix 'hc_'
}
dependencies {
api project(':hyperion-plugin')
implementation "androidx.appcompat:appcompat:${project.versionAppCompat}"
implementation "com.google.android.material:material:${project.versionMaterial}"
annotationProcessor "com.google.auto.service:auto-service:${project.versionAutoService}"
}
apply from: '../publish.gradle'