Files
2026-05-31 23:15:24 +02:00

21 lines
543 B
Groovy

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
// playstore = hasProperty('playstore')
playstore = false
agpVersion = '9.2.1'
}
}
plugins {
//noinspection GradlePluginVersion
id 'com.android.application' version "${agpVersion}" apply false
//noinspection GradlePluginVersion
id 'com.android.library' version "${agpVersion}" apply false
}
tasks.register('clean', Delete) {
delete rootProject.layout.buildDirectory
}