-
Notifications
You must be signed in to change notification settings - Fork 43
/
build.gradle
21 lines (19 loc) · 931 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.7.20'
ext.paparazzi_version = '1.3.1'
dependencies {
classpath "org.jetbrains.kotlin:kotlin-serialization:$kotlin_version"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
// It will force the kotlin compiler version to be changed to a higher one, so it should only include the plugin in real tests.
if (project.hasProperty('withSnapshotTest')) {
classpath "app.cash.paparazzi:paparazzi-gradle-plugin:$paparazzi_version"
}
}
}
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.gms.google-services' version '4.3.15' apply false
}