-
Notifications
You must be signed in to change notification settings - Fork 139
Expand file tree
/
Copy pathbuild.gradle
More file actions
55 lines (40 loc) · 1.46 KB
/
build.gradle
File metadata and controls
55 lines (40 loc) · 1.46 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
mavenCentral()
google()
maven { url "https://plugins.gradle.org/m2/" }
}
dependencies {
classpath 'com.android.tools.build:gradle:8.6.1'
classpath 'com.google.gms:google-services:4.3.15'
// classpath 'com.huawei.agconnect:agcp:1.9.1.301'
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.9.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:2.1.0"
//noinspection GradleDependency
classpath "io.sentry:sentry-android-gradle-plugin:5.12.2"
// db
classpath "io.objectbox:objectbox-gradle-plugin:5.0.1"
}
}
static String detectNdkVersion() {
def version = "21.4.7075529"
def androidHome = System.getenv("ANDROID_HOME")
if (androidHome == null) return version
if (new File(androidHome, "ndk/$version").isDirectory()) return version
def versionFile = new File(androidHome, "ndk-bundle/source.properties")
if (!versionFile.isFile()) return version
def versionProperties = new Properties()
versionProperties.load(versionFile.newDataInputStream())
return versionProperties.getProperty("Pkg.Revision", version)
}
ext {
ndkVersion = detectNdkVersion()
}
allprojects {
repositories {
// The order in which you list these repositories matter.
mavenCentral()
google()
}
}