forked from cobogt/kortisan-android-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
34 lines (30 loc) · 1.15 KB
/
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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
kotlin_version = '1.9.23'
}
dependencies {
// classpath 'com.amazonaws:aws-android-sdk-appsync-gradle-plugin:3.1.1'
classpath 'com.google.gms:google-services:4.4.2'
classpath 'com.google.firebase:firebase-crashlytics-gradle:3.0.1'
classpath 'com.google.firebase:perf-plugin:1.4.2'
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.9.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.0"
// implementation project(":ksp")
// ksp project(":ksp")
}
repositories {
mavenCentral()
}
}
plugins {
id 'com.android.application' version '8.4.1' apply false
id 'com.android.library' version '8.4.1' apply false
id 'org.jetbrains.kotlin.android' version "$kotlin_version" apply false
id 'com.google.devtools.ksp' version '1.9.10-1.0.13' apply false
// id 'org.jetbrains.kotlin.jvm' version '1.8.0'
}
task clean(type: Delete) {
delete rootProject.buildDir
}
apply from: "$rootDir.path/projectBuildSettings/detectAndJoinKSP.gradle"