* Upgrade Android tools NDK 24 AGP/Gradle 7.2 Kotlin 1.6.21 Coroutines 1.6.1 * Force Java 8 to run sdkmanager
17 lines
266 B
Groovy
17 lines
266 B
Groovy
plugins {
|
|
id 'groovy-gradle-plugin'
|
|
}
|
|
|
|
gradlePlugin {
|
|
plugins {
|
|
create("filament-tools-plugin") {
|
|
id = "filament-tools-plugin"
|
|
implementationClass = "FilamentToolsPlugin"
|
|
}
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|