From 6e90a9e225afafab99a54e92593f9424f568f6d1 Mon Sep 17 00:00:00 2001 From: Barnabas Balogh Date: Sat, 23 May 2026 11:13:07 +0200 Subject: [PATCH] feat(build): update debug and release update URLs in README and build.gradle.kts --- README.md | 10 +++++----- app/build.gradle.kts | 4 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index dc268bfb..df45a89a 100644 --- a/README.md +++ b/README.md @@ -59,11 +59,11 @@ APKs are distributed via the [APK Version Manager](https://apks.t.bbara.hu/docs) #### App names -| Variant | App name | Update URL | -|---------|----------|------------| -| Release (phone) | `purefin-app` | `https://apks.t.bbara.hu/apks/purefin-app/update.json` | -| Debug (phone) | `purefin-app-debug` | `https://apks.t.bbara.hu/apks/purefin-app-debug/update.json` | -| Release (TV) | `purefin-tv` | `https://apks.t.bbara.hu/apks/purefin-tv/update.json` | +| Variant | App name | Update URL | +|---------|----------|--------------------------------------------------------------| +| Release (phone) | `purefin-app` | `https://apks.t.bbara.hu/apps/purefin-app/update.json` | +| Debug (phone) | `purefin-app-debug` | `https://apks.t.bbara.hu/apps/purefin-app-debug/update.json` | +| Release (TV) | `purefin-tv` | `https://apks.t.bbara.hu/apps/purefin-tv/update.json` | #### Building diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 658848eb..80024a60 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -26,7 +26,7 @@ android { applicationIdSuffix = ".debug" versionCode = providers.gradleProperty("purefinDebugVersionCode").get().toInt() versionNameSuffix = "-debug" - manifestPlaceholders["updateManifestUrl"] = "https://apks.t.bbara.hu/apks/purefin-app-debug/update.json" + manifestPlaceholders["updateManifestUrl"] = "https://apks.t.bbara.hu/apps/purefin-app-debug/update.json" } release { versionCode = providers.gradleProperty("purefinReleaseVersionCode").get().toInt() @@ -35,7 +35,7 @@ android { // Enables resource shrinking. isShrinkResources = true - manifestPlaceholders["updateManifestUrl"] = "https://apks.t.bbara.hu/apks/purefin-app/update.json" + manifestPlaceholders["updateManifestUrl"] = "https://apks.t.bbara.hu/apps/purefin-app/update.json" proguardFiles( getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro" )