From 328dfb1eb7f5fca49f622841a3a9ae8fc9963989 Mon Sep 17 00:00:00 2001 From: ammarasyad Date: Tue, 13 Feb 2024 22:11:12 +0700 Subject: [PATCH] Finishing touches after Gradle update --- build.gradle | 4 ++-- gradle.properties | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/build.gradle b/build.gradle index 56409772f..1ab80feb3 100644 --- a/build.gradle +++ b/build.gradle @@ -147,8 +147,8 @@ android { } - android.applicationVariants.all { variant -> - variant.outputs.all { output -> + android.applicationVariants.configureEach { variant -> + variant.outputs.configureEach { output -> def releaseTime = new Date().format("yyyy-MM-dd", TimeZone.getTimeZone("UTC")) def fileName = "osu!droid-${defaultConfig.versionName}-${variant.buildType.name}-${releaseTime}.apk" outputFileName = fileName diff --git a/gradle.properties b/gradle.properties index cc220e004..909b12dfe 100644 --- a/gradle.properties +++ b/gradle.properties @@ -13,7 +13,7 @@ # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects # org.gradle.parallel=true #Thu Oct 06 22:58:27 CST 2016 -android.enableJetifier=true +android.enableJetifier=false android.nonFinalResIds=false android.nonTransitiveRClass=true android.useAndroidX=true