chore(deps): bump gradle-wrapper from 8.13 to 9.3.1 (#687)

* chore(deps): bump gradle-wrapper from 8.13 to 9.3.1

Bumps gradle-wrapper from 8.13 to 9.3.1.

---
updated-dependencies:
- dependency-name: gradle-wrapper
  dependency-version: 9.3.1
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

* build: update archive name definition

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Naveen Singh <snaveen935@gmail.com>
This commit is contained in:
dependabot[bot] 2026-02-07 19:14:54 +05:30 committed by GitHub
parent 8d422cce64
commit 6749332969
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 9 additions and 9 deletions

View file

@ -24,6 +24,11 @@ fun hasSigningVars(): Boolean {
&& providers.environmentVariable("SIGNING_STORE_PASSWORD").orNull != null
}
base {
val versionCode = project.property("VERSION_CODE").toString().toInt()
archivesName = "messages-$versionCode"
}
android {
compileSdk = project.libs.versions.app.build.compileSDKVersion.get().toInt()
@ -33,7 +38,6 @@ android {
targetSdk = project.libs.versions.app.build.targetSDK.get().toInt()
versionName = project.property("VERSION_NAME").toString()
versionCode = project.property("VERSION_CODE").toString().toInt()
setProperty("archivesBaseName", "messages-$versionCode")
ksp {
arg("room.schemaLocation", "$projectDir/schemas")
}