forked from RikkaApps/RikkaX
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
43 lines (38 loc) · 1.15 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
37
38
39
40
41
42
43
plugins {
id('com.android.library')
id('kotlin-android')
id('maven-publish')
id('signing')
}
android {
compileSdkVersion target_sdk
defaultConfig {
minSdkVersion 14
targetSdkVersion target_sdk
versionCode 1
versionName '1.3.2'
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles 'consumer-rules.pro'
}
/*buildFeatures {
buildConfig = false
}*/
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation "androidx.recyclerview:recyclerview:$androidx_recyclerview_version"
implementation 'me.zhanghai.android.fastscroll:library:1.2.0'
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
}
ext {
POM_NAME = "RikkaX RecyclerView KTX"
POM_DESCRIPTION = "RikkaX RecyclerView KTX"
}