mirror of
https://github.com/hmalik144/Weather-apps.git
synced 2025-12-10 02:05:20 +00:00
- change location retrieval accuracy - change location retrieval caching from location provider - Imperial units added - atlas weather notification fix (only for lower versions) - Minor lint fixes - Upgrade gradle dependencies to versions accepted by android 33 - upgrade android gradle to 8.5 - upgrade application to android 34 - upgraded all library dependencies - Snapshot tests added for readme.md - UI corrections during snapshots - Weather API successfully replaces
23 lines
929 B
Groovy
23 lines
929 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 "$GRADLE_PLUGIN_VERSION" apply false
|
|
id 'com.android.library' version "$GRADLE_PLUGIN_VERSION" 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
|
|
} |