-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
42 lines (34 loc) · 973 Bytes
/
build.gradle
File metadata and controls
42 lines (34 loc) · 973 Bytes
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
plugins {
id 'com.android.library'
id 'org.jetbrains.kotlin.android'
}
repositories {
maven { url 'https://jitpack.io' }
}
android {
compileSdk 35
defaultConfig {
minSdkVersion 23
targetSdkVersion 35
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility 18
targetCompatibility 18
}
namespace 'com.gazman.db'
}
dependencies {
testImplementation 'junit:junit:4.13.2'
implementation 'com.github.requery:sqlite-android:3.36.0'
implementation 'org.jetbrains:annotations:24.0.1'
implementation 'androidx.sqlite:sqlite-ktx:2.4.0'
implementation platform('com.google.firebase:firebase-bom:33.5.0')
implementation 'com.google.firebase:firebase-crashlytics'
implementation 'com.google.firebase:firebase-analytics'
}