-
Notifications
You must be signed in to change notification settings - Fork 49
/
build.gradle
43 lines (38 loc) · 1019 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
42
43
plugins {
id('com.android.library')
id('maven-publish')
id('signing')
}
android {
compileSdkVersion target_sdk
defaultConfig {
minSdkVersion 14
targetSdkVersion target_sdk
versionCode 1
versionName '34.0.1'
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildFeatures {
buildConfig false
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt')
}
}
compileOptions {
targetCompatibility 1.8
sourceCompatibility 1.8
}
}
dependencies {
implementation "androidx.annotation:annotation:$androidx_annotation_version"
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test:runner:1.4.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
}
ext {
POM_NAME = "RikkaX BuildCompat"
POM_DESCRIPTION = "RikkaX BuildCompat"
}