From fbdb5570a5cd06d369db8e0a4bb327ef2fffb455 Mon Sep 17 00:00:00 2001 From: Michael W Date: Sat, 11 Jan 2025 21:07:41 +0100 Subject: [PATCH] Updater: Update gradle plugin to 8.7.3 Following AS recommendations Change-Id: Ib3ad9be87b21e4b8a98ad3e07d3f0af2aa42cabe --- app/build.gradle.kts | 1 + build.gradle.kts | 4 ++-- gradle.properties | 2 ++ 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 3c0452ee..8027ed6b 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -81,6 +81,7 @@ android { } } } + namespace = "org.lineageos.updater" } dependencies { diff --git a/build.gradle.kts b/build.gradle.kts index 1b97c0f8..c9e8006c 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -1,7 +1,7 @@ // Top-level build file where you can add configuration options common to all sub-projects/modules. plugins { - id("com.android.application") version "7.4.1" apply false - id("com.android.library") version "7.4.1" apply false + id("com.android.application") version "8.7.3" apply false + id("com.android.library") version "8.7.3" apply false id("org.jetbrains.kotlin.android") version "1.7.10" apply false } diff --git a/gradle.properties b/gradle.properties index 3c7a8bd3..cccbfe6f 100644 --- a/gradle.properties +++ b/gradle.properties @@ -21,3 +21,5 @@ kotlin.code.style=official # resources declared in the library itself and none from the library's dependencies, # thereby reducing the size of the R class for that library android.nonTransitiveRClass=true +android.defaults.buildfeatures.buildconfig=true +android.nonFinalResIds=false