forked from braze-inc/braze-android-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
38 lines (34 loc) · 823 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
27
28
29
30
31
32
33
34
35
36
37
38
buildscript {
repositories {
mavenLocal()
google()
mavenCentral()
maven {
name = 'ajoberstar-backup'
url = 'https://ajoberstar.org/bintray-backup/'
}
}
dependencies {
classpath 'com.android.tools.build:gradle:8.0.0'
classpath 'com.google.gms:google-services:4.3.4'
classpath "org.ajoberstar.grgit:grgit-gradle:${AJOBERSTAR_GIT_GRADLE_PLUGIN_VERSION}"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${KOTLIN_VERSION}"
}
}
ext {
compileSdkVersion = 34
buildToolsVersion = '34.0.0'
minSdkVersion = 21
targetSdkVersion = 34
appVersionName = '28.0.0'
}
subprojects {
repositories {
maven { url "https://braze-inc.github.io/braze-android-sdk/sdk" }
mavenLocal()
google()
mavenCentral()
}
group = 'com.braze'
version = '28.0.0'
}