forked from braze-inc/braze-android-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
40 lines (35 loc) · 786 Bytes
/
Copy pathbuild.gradle
File metadata and controls
40 lines (35 loc) · 786 Bytes
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
buildscript {
repositories {
mavenLocal()
google()
mavenCentral()
maven {
name = 'ajoberstar-backup'
url = 'https://ajoberstar.org/bintray-backup/'
}
}
dependencies {
classpath 'com.android.tools.build:gradle:8.7.1'
classpath 'com.google.gms:google-services:4.4.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${KOTLIN_VERSION}"
}
}
plugins {
id "org.jetbrains.kotlin.plugin.compose" version "${KOTLIN_VERSION}"
}
ext {
compileSdkVersion = 36
minSdkVersion = 21
targetSdkVersion = 36
appVersionName = '39.0.0'
}
subprojects {
repositories {
maven { url "https://braze-inc.github.io/braze-android-sdk/sdk" }
mavenLocal()
google()
mavenCentral()
}
group = 'com.braze'
version = '39.0.0'
}