mirror of
https://github.com/minetest/minetest.git
synced 2024-11-04 14:53:45 +01:00
35 lines
956 B
Groovy
35 lines
956 B
Groovy
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
project.ext.set("versionMajor", 5) // Version Major
|
|
project.ext.set("versionMinor", 3) // Version Minor
|
|
project.ext.set("versionPatch", 0) // Version Patch
|
|
project.ext.set("versionExtra", "-dev") // Version Extra
|
|
project.ext.set("versionCode", 26) // Android Version Code
|
|
// NOTE: +2 after each release!
|
|
// +1 for ARM and +1 for ARM64 APK's, because
|
|
// each APK must have a larger `versionCode` than the previous
|
|
|
|
buildscript {
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:3.6.2'
|
|
classpath 'org.ajoberstar.grgit:grgit-gradle:4.0.2'
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
// in the individual module build.gradle files
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
}
|
|
}
|
|
|
|
task clean(type: Delete) {
|
|
delete rootProject.buildDir
|
|
}
|