-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathbuild.gradle
26 lines (25 loc) · 891 Bytes
/
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
buildscript {
ext {
compose_version = '1.3.0-alpha03'
// compose_version = '1.1.1'
}
repositories {
mavenCentral()
google()
}
dependencies {
classpath "com.google.gms:google-services:4.3.13"
classpath "com.github.ben-manes:gradle-versions-plugin:0.42.0"
classpath "com.google.dagger:hilt-android-gradle-plugin:2.42"
classpath 'gradle.plugin.com.onesignal:onesignal-gradle-plugin:0.14.0'
}
}// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id 'com.android.application' version '7.2.2' apply false
id 'com.android.library' version '7.2.2' apply false
id 'org.jetbrains.kotlin.android' version '1.7.10' apply false
id 'com.github.ben-manes.versions' version '0.42.0'
}
task clean(type: Delete) {
delete rootProject.buildDir
}