mirror of
https://github.com/love2d/love-android.git
synced 2026-08-16 16:21:33 +02:00
ab03301730
Highlights: * At least JDK 11 and/or Android Studio 2020.3.1 is now required. * Update AGP to 7.0 and Gradle to 7.2. * Replace jcenter() repository with mavenCentral() Known Issue: * Currently NDK 22 can't be used to compile yet as GLSLang has compile errors.
31 lines
592 B
Groovy
31 lines
592 B
Groovy
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
allprojects {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
buildscript {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:7.0.1'
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
// in the individual module build.gradle files
|
|
}
|
|
}
|
|
|
|
task clean(type: Delete) {
|
|
delete rootProject.buildDir
|
|
}
|
|
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|