Files
apk/src/FastAdmin/build.gradle
anorien90 05d1afc98d
Some checks failed
Test setup and build APKs archlinux / Build-APK-Arch-Linux (push) Failing after 6m14s
Test setup and build APKs / Build-and-Create-Development-Environment (push) Successful in 11s
added build script that detects subprojects in src containing a build.gradle and execute gradle
2025-12-09 15:50:54 +01:00

22 lines
653 B
Groovy

// project-level build.gradle (often known as the root build file)
buildscript {
repositories {
google() // Essential for Android Gradle Plugin
mavenCentral()
}
dependencies {
// This is the old way to declare AGP, but is often needed
// if using an older Gradle wrapper or a complex setup.
// It's usually better to use the plugins block below.
// classpath 'com.android.tools.build:gradle:8.2.2'
}
}
plugins {
// 3. Declare the AGP with a version
id 'com.android.application' version '8.4.1' apply false
id 'org.jetbrains.kotlin.android' version '1.9.23' apply false
}