-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
18 lines (18 loc) · 807 Bytes
/
build.gradle
File metadata and controls
18 lines (18 loc) · 807 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
buildscript {
ext {
dagger_hilt_version = '2.45'
paging_common_version = '3.1.1' // androidx.paging:paging-compose内部で使っているversionを指定
junit_version = '4.13.2'
coroutines_test_version = '1.6.4'
}
dependencies {
classpath "com.google.dagger:hilt-android-gradle-plugin:$dagger_hilt_version"
}
}// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id 'com.android.application' version '7.4.1' apply false
id 'com.android.library' version '7.4.1' apply false
id 'org.jetbrains.kotlin.android' version '1.8.10' apply false
id 'org.jetbrains.kotlin.plugin.serialization' version '1.8.10' apply false
id 'org.jetbrains.kotlin.jvm' version '1.8.10' apply false
}