Refactor gradle configuration and update dependencies

- Enable java 11 language features
- Switch to groovy syntax
- Switch to new gradle plugins and dependency configuration
- Drop deprecated properties
- Switch from buildscript to project.ext closure for version property
- Update dependencies to latest stable versions
- Address build errors arising due to dependencies update

Signed-off-by: Aayush Gupta <aayushgupta219@gmail.com>
This commit is contained in:
Aayush Gupta
2022-08-26 21:03:35 +05:30
parent fd693bf9d8
commit ecf16661dc
8 changed files with 92 additions and 94 deletions

View File

@@ -1,6 +1,7 @@
/*
* Aurora Store
* Copyright (C) 2021, Rahul Kumar Patel <whyorean@gmail.com>
* Copyright (C) 2022, The Calyx Institute
*
* Aurora Store is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -17,34 +18,10 @@
*
*/
buildscript {
repositories {
google()
jcenter()
}
ext {
kotlin_version = '1.4.30'
}
ext.kotlin = "1.5.30"
ext.navigation= "2.4.1"
ext.gradle = '7.1.1'
dependencies {
classpath ("com.android.tools.build:gradle:$gradle")
classpath ("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin")
classpath ("androidx.navigation:navigation-safe-args-gradle-plugin:$navigation")
}
}
allprojects {
repositories {
google()
jcenter()
maven { url 'https://jitpack.io' }
}
plugins {
id 'com.android.application' version '7.2.2' apply false
id 'org.jetbrains.kotlin.android' version '1.7.10' apply false
id 'androidx.navigation.safeargs.kotlin' version '2.5.1' apply false
}
task clean(type: Delete) {