From 46389dd3efe99c2b9c975350469eb0a7ed0b5da6 Mon Sep 17 00:00:00 2001 From: Kai Cilliers Date: Wed, 22 Jul 2026 16:09:25 +0200 Subject: [PATCH] feat: add app version gate config for testing --- app-version-gate.json | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 app-version-gate.json diff --git a/app-version-gate.json b/app-version-gate.json new file mode 100644 index 0000000..adb6788 --- /dev/null +++ b/app-version-gate.json @@ -0,0 +1,25 @@ +{ + "_comment": "For testing purposes at the moment — values are not authoritative", + "schemaVersion": 1, + "android": { + "zapstore": { + "minSupportedVersionCode": 150, + "minRecommendedVersionCode": 157, + "latestVersionCode": 160, + "updateUrl": "https://f-droid.gart.io/fdroid/repo" + }, + "play": { + "minSupportedVersionCode": 148, + "minRecommendedVersionCode": 155, + "latestVersionCode": 158 + } + }, + "ios": { + "appstore": { + "minSupportedVersionCode": 148, + "minRecommendedVersionCode": 155, + "latestVersionCode": 158, + "updateUrl": "https://apps.apple.com/app/id0000000000" + } + } +}