-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathbuild.gradle
More file actions
54 lines (40 loc) · 1.57 KB
/
build.gradle
File metadata and controls
54 lines (40 loc) · 1.57 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
// 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.13.2'
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:2.2.10'
// 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" // no more gplay build
// This is needed since android-connector:2.2.0 is built with Java 17
classpath 'com.android.tools:r8:9.0.32'
}
}
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()
}
}