-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathbuild.gradle
41 lines (38 loc) · 1023 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
34
35
36
37
38
39
40
41
plugins {
id('com.android.library')
id('maven-publish')
id('signing')
}
android {
compileSdkVersion target_sdk
defaultConfig {
minSdkVersion 23
targetSdkVersion target_sdk
versionCode 1
versionName '1.1.0'
consumerProguardFiles 'consumer-rules.pro'
}
buildFeatures {
buildConfig = false
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
targetCompatibility 1.8
sourceCompatibility 1.8
}
}
dependencies {
implementation "androidx.annotation:annotation:$androidx_annotation_version"
implementation "androidx.core:core:$androidx_core_version"
implementation project(':material:material')
compileOnly "androidx.preference:preference:$androidx_preference_version"
}
ext {
POM_NAME = "RikkaX SwitchBar"
POM_DESCRIPTION = "RikkaX SwitchBar"
}