-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathbuild.gradle
More file actions
37 lines (32 loc) · 1.08 KB
/
build.gradle
File metadata and controls
37 lines (32 loc) · 1.08 KB
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
buildscript {
ext.versions = [
minSdk: 26,
targetSdk: 34,
compileSdk: 34,
versionCode: 5,
versionName: '1.3.0',
jvmTarget: '17',
sourceCompatibility: JavaVersion.VERSION_17,
targetCompatibility: JavaVersion.VERSION_17,
kotlinCompilerExtensionVersion: '1.5.8',
hilt: '2.48'
]
ext.boms = [
compose: 'androidx.compose:compose-bom:2024.01.00'
]
dependencies {
}
repositories {
google()
}
}
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id 'com.android.application' version '8.1.2' apply false
id 'com.android.library' version '8.1.2' apply false
id "com.google.dagger.hilt.android" version "2.48" apply false
id 'org.jetbrains.kotlin.android' version '1.9.22' apply false
id 'org.jetbrains.kotlin.jvm' version '1.9.22' apply false
id 'com.google.devtools.ksp' version "1.9.22-1.0.17" apply false
id 'androidx.room' version "2.6.1" apply false
}