Files
Weather-apps/build.gradle
h.malik144@gmail.com 2561b6ddf9 - Removal of kotlin synthetics
- Upgrade gradle to 8.0.0
 - Change dependency versioning
2024-06-24 18:30:31 +01:00

23 lines
921 B
Groovy

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
maven { url "https://www.jitpack.io" }
}
dependencies {
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$NAVIGATION_VERSION"
classpath "com.android.tools.build:gradle:$GRADLE_PLUGIN_VERSION"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$KOTLIN_GRADLE_PLUGIN"
}
}
plugins {
id 'com.android.application' version "$ANDROID_APPLICATION" apply false
id 'com.android.library' version "$ANDROID_LIBRARY" apply false
id 'com.google.gms.google-services' version "$GOOGLE_SERVICES" apply false
id 'org.jetbrains.kotlin.android' version "$KOTLIN_VERSION" apply false
id 'com.autonomousapps.dependency-analysis' version "$GRADLE_ANALYZE_VERSION"
}
task clean(type: Delete) {
delete rootProject.buildDir
}