-
Notifications
You must be signed in to change notification settings - Fork 11
/
build.gradle
53 lines (39 loc) · 1.46 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
// 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.4.2'
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.20'
classpath 'com.google.gms:google-services:4.3.15'
// classpath 'com.google.firebase:firebase-crashlytics-gradle:2.9.2'
classpath 'gradle.plugin.org.mozilla.rust-android-gradle:plugin:0.9.0'
//noinspection GradleDependency
classpath "com.github.triplet.gradle:play-publisher:3.6.0"
classpath 'cn.hutool:hutool-core:5.7.13'
}
}
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()
}
}