-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
36 lines (28 loc) · 898 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
apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
apply from: "$project.rootProject.projectDir/linters.gradle"
android {
namespace 'com.github.barriosnahuel.vossosunboton.model'
compileOptions {
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}
defaultConfig {
compileSdk 34
minSdkVersion 21
targetSdkVersion 34
}
resourcePrefix 'model_'
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation project(':commons_file')
implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk8:2.0.10'
implementation 'com.jakewharton.timber:timber:5.0.1'
implementation 'androidx.annotation:annotation:1.8.2'
}