Files
gitnex/build.gradle
M M Arif 74ef5d4a0b Bug fixes (#1539)
Closes #1537

Closes #1525

Reviewed-on: https://codeberg.org/gitnex/GitNex/pulls/1539
Co-authored-by: M M Arif <mmarif@swatian.com>
Co-committed-by: M M Arif <mmarif@swatian.com>
2025-11-02 08:13:07 +01:00

25 lines
475 B
Groovy

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.11.2'
}
}
allprojects {
repositories {
google()
mavenCentral()
maven { url = 'https://jitpack.io' }
}
}
tasks.register('clean', Delete) {
delete rootProject.layout.buildDirectory
}