Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build: only support currently supported OS versions #1035

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion android/variables.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ext {
minSdkVersion = 29
minSdkVersion = 31
compileSdkVersion = 35
targetSdkVersion = 35
androidxActivityVersion = '1.9.2'
4 changes: 2 additions & 2 deletions ios/App/App.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
@@ -351,7 +351,7 @@
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 1;
INFOPLIST_FILE = App/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
IPHONEOS_DEPLOYMENT_TARGET = 18.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
MARKETING_VERSION = 1.0;
OTHER_SWIFT_FLAGS = "$(inherited) \"-D\" \"COCOAPODS\" \"-DDEBUG\"";
@@ -377,7 +377,7 @@
CURRENT_PROJECT_VERSION = 1;
DEVELOPMENT_TEAM = "";
INFOPLIST_FILE = App/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
IPHONEOS_DEPLOYMENT_TARGET = 18.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
MARKETING_VERSION = 1.0;
PRODUCT_BUNDLE_IDENTIFIER = org.cardanofoundation.idw;
2 changes: 1 addition & 1 deletion ios/App/Podfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
require_relative '../../node_modules/@capacitor/ios/scripts/pods_helpers'

platform :ios, '15.5'
platform :ios, '18.0'
use_frameworks!

# workaround to avoid Xcode caching of Pods that requires
2 changes: 1 addition & 1 deletion ios/App/Podfile.lock
Original file line number Diff line number Diff line change
@@ -201,6 +201,6 @@ SPEC CHECKSUMS:
SQLCipher: 77fbe633cd84db04b07876dd50766b4924b57d61
ZIPFoundation: b8c29ea7ae353b309bc810586181fd073cb3312c

PODFILE CHECKSUM: c5ccf13a9f8ca45524ec00487dc4bb2cc8c10a90
PODFILE CHECKSUM: b8252a85db3ce215fde5596351281ca10039d12d

COCOAPODS: 1.15.2
4 changes: 2 additions & 2 deletions src/ui/globals/constants.ts
Original file line number Diff line number Diff line change
@@ -15,9 +15,9 @@ const FEDERAL_DATA_PROTECTION_LINK = "https://www.edoeb.admin.ch/de";
const DATA_PROTECTION_AUTHORITIES_LINK =
"https://ec.europa.eu/justice/article-29/structure/data-protection-authorities/index_en.htm";

const ANDROID_MIN_VERSION = 10;
const ANDROID_MIN_VERSION = 12;
const WEBVIEW_MIN_VERSION = 79;
const IOS_MIN_VERSION = 13;
const IOS_MIN_VERSION = 18;

export {
DISPLAY_NAME_LENGTH,
Loading