generated from hossain-khan/android-compose-app-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle.kts
54 lines (42 loc) · 2.17 KB
/
build.gradle.kts
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
44
45
46
47
48
49
50
51
52
53
54
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
// Applies the Android application plugin.
// Project: https://developer.android.com/build
alias(libs.plugins.android.application) apply false
// Applies the Android library plugin.
// Project: https://developer.android.com/build
// https://developer.android.com/studio/projects/android-library
alias(libs.plugins.android.library) apply false
// Applies the Kotlin Android plugin.
// Project: https://kotlinlang.org/docs/android-overview.html
alias(libs.plugins.kotlin.android) apply false
// Applies the Kotlin Compose plugin.
// Project: https://developer.android.com/jetpack/compose
alias(libs.plugins.kotlin.compose) apply false
// Applies the Kotlin Parcelize plugin.
// Project: https://developer.android.com/kotlin/parcelize
alias(libs.plugins.kotlin.parcelize) apply false
// Applies Kotlin serialization plugin.
// Project: https://github.com/Kotlin/kotlinx.serialization
alias(libs.plugins.kotlin.serialization) apply false
// Applies the Kotlin KAPT (Kotlin Annotation Processing Tool) plugin.
// Project: https://kotlinlang.org/docs/kapt.html
alias(libs.plugins.kotlin.kapt) apply false
// Applies the Kotlin Symbol Processing (KSP) plugin.
// Project: https://github.com/google/ksp
alias(libs.plugins.ksp) apply false
// Applies the Anvil plugin for Dagger dependency injection.
// Project: https://github.com/square/anvil
// Also see: https://github.com/ZacSweers/anvil/blob/main/FORK.md
alias(libs.plugins.anvil) apply false
// Room Gradle Plugin
// https://developer.android.com/jetpack/androidx/releases/room#gradle-plugin
alias(libs.plugins.androidx.room) apply false
alias(libs.plugins.google.services) apply false
// Firebase Crashlytics Gradle plugin
// https://firebase.google.com/docs/crashlytics/get-started?platform=android#add-sdk
alias(libs.plugins.firebase.crashlytics) apply false
// Kover coverage for Kotlin projects
// Project: https://github.com/Kotlin/kotlinx-kover
alias(libs.plugins.kotlinx.kover) apply false
}