Files
MeshChatX/android/build.gradle
Sudo-Ivan 268fc11bd5
Some checks failed
Build and Release / Build and Release (push) Successful in 2m25s
Build and Release / build_docker (push) Failing after 9m25s
feat(android): initialize Android project with Gradle configuration, build scripts, and main application structure for MeshChatX
2026-01-01 21:09:22 -06:00

25 lines
458 B
Groovy

buildscript {
repositories {
google()
mavenCentral()
maven { url "https://chaquo.com/maven" }
}
dependencies {
classpath 'com.android.tools.build:gradle:8.7.3'
classpath "com.chaquo.python:gradle:15.0.1"
}
}
allprojects {
repositories {
google()
mavenCentral()
maven { url "https://chaquo.com/maven" }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}