Files
gitnex/build.gradle
M M Arif 4e3b6e02c2 Fix layout and revamp login (#1501)
Closes #1477

Reviewed-on: https://codeberg.org/gitnex/GitNex/pulls/1501
Co-authored-by: M M Arif <mmarif@swatian.com>
Co-committed-by: M M Arif <mmarif@swatian.com>
2025-06-09 07:32:51 +02:00

25 lines
473 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.10.1'
}
}
allprojects {
repositories {
google()
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
tasks.register('clean', Delete) {
delete rootProject.layout.buildDirectory
}