mirror of https://github.com/NekoX-Dev/NekoX.git
54 lines
1.5 KiB
Groovy
54 lines
1.5 KiB
Groovy
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
buildscript {
|
|
repositories {
|
|
jcenter()
|
|
mavenCentral()
|
|
google()
|
|
maven { url "https://plugins.gradle.org/m2/" }
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:4.1.2'
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.4.31"
|
|
classpath 'com.google.gms:google-services:4.3.5'
|
|
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.5.0'
|
|
classpath 'gradle.plugin.org.mozilla.rust-android-gradle:plugin:0.8.3'
|
|
classpath 'com.github.triplet.gradle:play-publisher:3.0.0'
|
|
classpath 'cn.hutool:hutool-core:5.5.8'
|
|
}
|
|
}
|
|
|
|
static String detectNdkVersion() {
|
|
|
|
def version = "21.3.6528147"
|
|
|
|
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.
|
|
jcenter()
|
|
mavenCentral()
|
|
google()
|
|
}
|
|
} |