From 2bf3984a02993913a14e2a326924888e3a400867 Mon Sep 17 00:00:00 2001 From: Amit Moryossef Date: Mon, 20 Jan 2025 18:27:33 +0100 Subject: [PATCH] fix(capacitor): update and fix Pod issues --- android/app/capacitor.build.gradle | 4 +- android/build.gradle | 4 +- .../gradle/wrapper/gradle-wrapper.properties | 2 +- android/variables.gradle | 20 +- functions/package.json | 12 +- ios/App/App.xcodeproj/project.pbxproj | 4 +- ios/App/Podfile | 3 +- ios/App/Podfile.lock | 381 ++++++++++-------- package.json | 16 +- 9 files changed, 236 insertions(+), 210 deletions(-) mode change 100755 => 100644 ios/App/Podfile.lock diff --git a/android/app/capacitor.build.gradle b/android/app/capacitor.build.gradle index da92dc9a..4883c2ed 100755 --- a/android/app/capacitor.build.gradle +++ b/android/app/capacitor.build.gradle @@ -2,8 +2,8 @@ android { compileOptions { - sourceCompatibility JavaVersion.VERSION_17 - targetCompatibility JavaVersion.VERSION_17 + sourceCompatibility JavaVersion.VERSION_21 + targetCompatibility JavaVersion.VERSION_21 } } diff --git a/android/build.gradle b/android/build.gradle index 7c38ee14..3448d716 100755 --- a/android/build.gradle +++ b/android/build.gradle @@ -7,8 +7,8 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:8.2.1' - classpath 'com.google.gms:google-services:4.4.0' + classpath 'com.android.tools.build:gradle:8.7.2' + classpath 'com.google.gms:google-services:4.4.2' // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files diff --git a/android/gradle/wrapper/gradle-wrapper.properties b/android/gradle/wrapper/gradle-wrapper.properties index 9b0a13f0..bc60d1fc 100755 --- a/android/gradle/wrapper/gradle-wrapper.properties +++ b/android/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-8.2.1-all.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-all.zip networkTimeout=10000 zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists diff --git a/android/variables.gradle b/android/variables.gradle index e13f62bb..b319e0e7 100755 --- a/android/variables.gradle +++ b/android/variables.gradle @@ -1,16 +1,16 @@ ext { - minSdkVersion = 22 - compileSdkVersion = 34 - targetSdkVersion = 34 - androidxActivityVersion = '1.8.0' - androidxAppCompatVersion = '1.6.1' + minSdkVersion = 23 + compileSdkVersion = 35 + targetSdkVersion = 35 + androidxActivityVersion = '1.9.2' + androidxAppCompatVersion = '1.7.0' androidxCoordinatorLayoutVersion = '1.2.0' - androidxCoreVersion = '1.12.0' - androidxFragmentVersion = '1.6.2' + androidxCoreVersion = '1.15.0' + androidxFragmentVersion = '1.8.4' junitVersion = '4.13.2' - androidxJunitVersion = '1.1.5' - androidxEspressoCoreVersion = '3.5.1' + androidxJunitVersion = '1.2.1' + androidxEspressoCoreVersion = '3.6.1' cordovaAndroidVersion = '10.1.1' coreSplashScreenVersion = '1.0.1' - androidxWebkitVersion = '1.9.0' + androidxWebkitVersion = '1.12.1' } diff --git a/functions/package.json b/functions/package.json index 96b710fc..1b6dc8a0 100644 --- a/functions/package.json +++ b/functions/package.json @@ -20,11 +20,11 @@ }, "main": "lib/index.js", "dependencies": { - "@firebase/database-types": "1.0.7", + "@firebase/database-types": "1.0.8", "@google-cloud/storage": "7.15.0", "@sign-mt/browsermt": "0.2.3", - "@unkey/api": "0.30.0", - "@unkey/ratelimit": "0.5.1", + "@unkey/api": "0.31.0", + "@unkey/ratelimit": "0.5.2", "cors": "2.8.5", "express": "4.21.2", "express-async-errors": "3.1.1", @@ -33,7 +33,7 @@ "http-errors": "2.0.0", "http-proxy-middleware": "^3.0.3", "node-fetch": "2.6.7", - "openai": "4.78.0", + "openai": "4.79.1", "request-ip": "3.3.0" }, "devDependencies": { @@ -43,8 +43,8 @@ "@types/jest": "29.5.14", "@types/node-fetch": "2.6.12", "@types/request-ip": "0.0.41", - "@typescript-eslint/eslint-plugin": "8.19.1", - "@typescript-eslint/parser": "8.19.1", + "@typescript-eslint/eslint-plugin": "8.21.0", + "@typescript-eslint/parser": "8.21.0", "eslint": "8.57.0", "firebase-functions-test": "3.4.0", "firebase-tools": "13.29.1", diff --git a/ios/App/App.xcodeproj/project.pbxproj b/ios/App/App.xcodeproj/project.pbxproj index 2e594f04..3bb10eb5 100755 --- a/ios/App/App.xcodeproj/project.pbxproj +++ b/ios/App/App.xcodeproj/project.pbxproj @@ -314,7 +314,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 14.0; MTL_ENABLE_DEBUG_INFO = YES; ONLY_ACTIVE_ARCH = YES; SDKROOT = iphoneos; @@ -368,7 +368,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 14.0; MTL_ENABLE_DEBUG_INFO = NO; SDKROOT = iphoneos; SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; diff --git a/ios/App/Podfile b/ios/App/Podfile index b6f9cc60..8851628f 100755 --- a/ios/App/Podfile +++ b/ios/App/Podfile @@ -1,5 +1,6 @@ -platform :ios, '13.0' +platform :ios, '14.0' use_frameworks! +workspace 'App.xcworkspace' # workaround to avoid Xcode caching of Pods that requires # Product -> Clean Build Folder after new Cordova plugins installed diff --git a/ios/App/Podfile.lock b/ios/App/Podfile.lock old mode 100755 new mode 100644 index 030669e9..f04ea5ce --- a/ios/App/Podfile.lock +++ b/ios/App/Podfile.lock @@ -1,176 +1,195 @@ PODS: - - Capacitor (6.0.0): + - AppCheckCore (11.2.0): + - GoogleUtilities/Environment (~> 8.0) + - GoogleUtilities/UserDefaults (~> 8.0) + - PromisesObjC (~> 2.4) + - Capacitor (7.0.0-rc.0): - CapacitorCordova - CapacitorBlobWriter (0.0.1): - Capacitor - GCDWebServer (~> 3.0) - - CapacitorClipboard (6.0.0): + - CapacitorClipboard (7.0.0-rc.0): - Capacitor - - CapacitorCordova (6.0.0) - - CapacitorFilesystem (6.0.0): + - CapacitorCordova (7.0.0-rc.0) + - CapacitorFilesystem (7.0.0-rc.0): - Capacitor - - CapacitorFirebaseAnalytics (5.4.1): + - CapacitorFirebaseAnalytics (6.3.1): - Capacitor - - CapacitorFirebaseAnalytics/Lite (= 5.4.1) - - CapacitorFirebaseAnalytics/Analytics (5.4.1): + - CapacitorFirebaseAnalytics/Lite (= 6.3.1) + - CapacitorFirebaseAnalytics/Analytics (6.3.1): - Capacitor - - FirebaseAnalytics (~> 10.8) - - CapacitorFirebaseAnalytics/Lite (5.4.1): + - FirebaseAnalytics (~> 11.0) + - CapacitorFirebaseAnalytics/Lite (6.3.1): - Capacitor - - CapacitorFirebaseApp (5.4.1): + - CapacitorFirebaseApp (6.3.1): - Capacitor - - FirebaseCore (~> 10.8) - - CapacitorFirebaseAppCheck (5.4.1): + - FirebaseCore (~> 11.0) + - CapacitorFirebaseAppCheck (6.3.1): - Capacitor - - FirebaseAppCheck (~> 10.8) - - CapacitorFirebaseCrashlytics (5.4.1): + - FirebaseAppCheck (~> 11.0) + - CapacitorFirebaseCrashlytics (6.3.1): - Capacitor - - FirebaseCrashlytics (~> 10.8) - - CapacitorFirebasePerformance (5.4.1): + - FirebaseCrashlytics (~> 11.0) + - CapacitorFirebasePerformance (6.3.1): - Capacitor - - FirebasePerformance (~> 10.8) - - CapacitorFirebaseStorage (5.4.1): + - FirebasePerformance (~> 11.0) + - CapacitorFirebaseStorage (6.3.1): - Capacitor - - FirebaseStorage (~> 10.8) - - CapacitorKeyboard (6.0.0): + - FirebaseStorage (~> 11.0) + - CapacitorKeyboard (7.0.0-rc.0): - Capacitor - - CapacitorShare (6.0.0): + - CapacitorShare (7.0.0-rc.0): - Capacitor - - CapacitorSplashScreen (6.0.0): + - CapacitorSplashScreen (7.0.0-rc.0): - Capacitor - - FirebaseABTesting (10.9.0): - - FirebaseCore (~> 10.0) - - FirebaseAnalytics (10.8.0): - - FirebaseAnalytics/AdIdSupport (= 10.8.0) - - FirebaseCore (~> 10.0) - - FirebaseInstallations (~> 10.0) - - GoogleUtilities/AppDelegateSwizzler (~> 7.8) - - GoogleUtilities/MethodSwizzler (~> 7.8) - - GoogleUtilities/Network (~> 7.8) - - "GoogleUtilities/NSData+zlib (~> 7.8)" - - nanopb (< 2.30910.0, >= 2.30908.0) - - FirebaseAnalytics/AdIdSupport (10.8.0): - - FirebaseCore (~> 10.0) - - FirebaseInstallations (~> 10.0) - - GoogleAppMeasurement (= 10.8.0) - - GoogleUtilities/AppDelegateSwizzler (~> 7.8) - - GoogleUtilities/MethodSwizzler (~> 7.8) - - GoogleUtilities/Network (~> 7.8) - - "GoogleUtilities/NSData+zlib (~> 7.8)" - - nanopb (< 2.30910.0, >= 2.30908.0) - - FirebaseAppCheck (10.8.0): - - FirebaseCore (~> 10.0) - - GoogleUtilities/Environment (~> 7.8) - - PromisesObjC (~> 2.1) - - FirebaseAppCheckInterop (10.20.0) - - FirebaseAuthInterop (10.20.0) - - FirebaseCore (10.8.0): - - FirebaseCoreInternal (~> 10.0) - - GoogleUtilities/Environment (~> 7.8) - - GoogleUtilities/Logger (~> 7.8) - - FirebaseCoreExtension (10.9.0): - - FirebaseCore (~> 10.0) - - FirebaseCoreInternal (10.9.0): - - "GoogleUtilities/NSData+zlib (~> 7.8)" - - FirebaseCrashlytics (10.8.0): - - FirebaseCore (~> 10.5) - - FirebaseInstallations (~> 10.0) - - FirebaseSessions (~> 10.5) - - GoogleDataTransport (~> 9.2) - - GoogleUtilities/Environment (~> 7.8) - - nanopb (< 2.30910.0, >= 2.30908.0) - - PromisesObjC (~> 2.1) - - FirebaseInstallations (10.9.0): - - FirebaseCore (~> 10.0) - - GoogleUtilities/Environment (~> 7.8) - - GoogleUtilities/UserDefaults (~> 7.8) - - PromisesObjC (~> 2.1) - - FirebasePerformance (10.8.0): - - FirebaseCore (~> 10.5) - - FirebaseInstallations (~> 10.0) - - FirebaseRemoteConfig (~> 10.0) - - FirebaseSessions (~> 10.5) - - GoogleDataTransport (~> 9.2) - - GoogleUtilities/Environment (~> 7.8) - - GoogleUtilities/ISASwizzler (~> 7.8) - - GoogleUtilities/MethodSwizzler (~> 7.8) - - nanopb (< 2.30910.0, >= 2.30908.0) - - FirebaseRemoteConfig (10.9.0): - - FirebaseABTesting (~> 10.0) - - FirebaseCore (~> 10.0) - - FirebaseInstallations (~> 10.0) - - GoogleUtilities/Environment (~> 7.8) - - "GoogleUtilities/NSData+zlib (~> 7.8)" - - FirebaseSessions (10.9.0): - - FirebaseCore (~> 10.5) - - FirebaseCoreExtension (~> 10.0) - - FirebaseInstallations (~> 10.0) - - GoogleDataTransport (~> 9.2) - - GoogleUtilities/Environment (~> 7.10) - - nanopb (< 2.30910.0, >= 2.30908.0) + - FirebaseABTesting (11.7.0): + - FirebaseCore (~> 11.7.0) + - FirebaseAnalytics (11.7.0): + - FirebaseAnalytics/AdIdSupport (= 11.7.0) + - FirebaseCore (~> 11.7.0) + - FirebaseInstallations (~> 11.0) + - GoogleUtilities/AppDelegateSwizzler (~> 8.0) + - GoogleUtilities/MethodSwizzler (~> 8.0) + - GoogleUtilities/Network (~> 8.0) + - "GoogleUtilities/NSData+zlib (~> 8.0)" + - nanopb (~> 3.30910.0) + - FirebaseAnalytics/AdIdSupport (11.7.0): + - FirebaseCore (~> 11.7.0) + - FirebaseInstallations (~> 11.0) + - GoogleAppMeasurement (= 11.7.0) + - GoogleUtilities/AppDelegateSwizzler (~> 8.0) + - GoogleUtilities/MethodSwizzler (~> 8.0) + - GoogleUtilities/Network (~> 8.0) + - "GoogleUtilities/NSData+zlib (~> 8.0)" + - nanopb (~> 3.30910.0) + - FirebaseAppCheck (11.7.0): + - AppCheckCore (~> 11.0) + - FirebaseAppCheckInterop (~> 11.0) + - FirebaseCore (~> 11.7.0) + - GoogleUtilities/Environment (~> 8.0) + - GoogleUtilities/UserDefaults (~> 8.0) + - FirebaseAppCheckInterop (11.7.0) + - FirebaseAuthInterop (11.7.0) + - FirebaseCore (11.7.0): + - FirebaseCoreInternal (~> 11.7.0) + - GoogleUtilities/Environment (~> 8.0) + - GoogleUtilities/Logger (~> 8.0) + - FirebaseCoreExtension (11.7.0): + - FirebaseCore (~> 11.7.0) + - FirebaseCoreInternal (11.7.0): + - "GoogleUtilities/NSData+zlib (~> 8.0)" + - FirebaseCrashlytics (11.7.0): + - FirebaseCore (~> 11.7.0) + - FirebaseInstallations (~> 11.0) + - FirebaseRemoteConfigInterop (~> 11.0) + - FirebaseSessions (~> 11.0) + - GoogleDataTransport (~> 10.0) + - GoogleUtilities/Environment (~> 8.0) + - nanopb (~> 3.30910.0) + - PromisesObjC (~> 2.4) + - FirebaseInstallations (11.7.0): + - FirebaseCore (~> 11.7.0) + - GoogleUtilities/Environment (~> 8.0) + - GoogleUtilities/UserDefaults (~> 8.0) + - PromisesObjC (~> 2.4) + - FirebasePerformance (11.7.0): + - FirebaseCore (~> 11.7.0) + - FirebaseInstallations (~> 11.0) + - FirebaseRemoteConfig (~> 11.0) + - FirebaseSessions (~> 11.0) + - GoogleDataTransport (~> 10.0) + - GoogleUtilities/Environment (~> 8.0) + - GoogleUtilities/MethodSwizzler (~> 8.0) + - GoogleUtilities/UserDefaults (~> 8.0) + - nanopb (~> 3.30910.0) + - FirebaseRemoteConfig (11.7.0): + - FirebaseABTesting (~> 11.0) + - FirebaseCore (~> 11.7.0) + - FirebaseInstallations (~> 11.0) + - FirebaseRemoteConfigInterop (~> 11.0) + - FirebaseSharedSwift (~> 11.0) + - GoogleUtilities/Environment (~> 8.0) + - "GoogleUtilities/NSData+zlib (~> 8.0)" + - FirebaseRemoteConfigInterop (11.7.0) + - FirebaseSessions (11.7.0): + - FirebaseCore (~> 11.7.0) + - FirebaseCoreExtension (~> 11.7.0) + - FirebaseInstallations (~> 11.0) + - GoogleDataTransport (~> 10.0) + - GoogleUtilities/Environment (~> 8.0) + - GoogleUtilities/UserDefaults (~> 8.0) + - nanopb (~> 3.30910.0) - PromisesSwift (~> 2.1) - - FirebaseStorage (10.20.0): - - FirebaseAppCheckInterop (~> 10.0) - - FirebaseAuthInterop (~> 10.0) - - FirebaseCore (~> 10.0) - - FirebaseCoreExtension (~> 10.0) - - GTMSessionFetcher/Core (< 4.0, >= 2.1) + - FirebaseSharedSwift (11.7.0) + - FirebaseStorage (11.7.0): + - FirebaseAppCheckInterop (~> 11.0) + - FirebaseAuthInterop (~> 11.0) + - FirebaseCore (~> 11.7.0) + - FirebaseCoreExtension (~> 11.7.0) + - GoogleUtilities/Environment (~> 8.0) + - GTMSessionFetcher/Core (< 5.0, >= 3.4) - GCDWebServer (3.5.4): - GCDWebServer/Core (= 3.5.4) - GCDWebServer/Core (3.5.4) - - GoogleAppMeasurement (10.8.0): - - GoogleAppMeasurement/AdIdSupport (= 10.8.0) - - GoogleUtilities/AppDelegateSwizzler (~> 7.8) - - GoogleUtilities/MethodSwizzler (~> 7.8) - - GoogleUtilities/Network (~> 7.8) - - "GoogleUtilities/NSData+zlib (~> 7.8)" - - nanopb (< 2.30910.0, >= 2.30908.0) - - GoogleAppMeasurement/AdIdSupport (10.8.0): - - GoogleAppMeasurement/WithoutAdIdSupport (= 10.8.0) - - GoogleUtilities/AppDelegateSwizzler (~> 7.8) - - GoogleUtilities/MethodSwizzler (~> 7.8) - - GoogleUtilities/Network (~> 7.8) - - "GoogleUtilities/NSData+zlib (~> 7.8)" - - nanopb (< 2.30910.0, >= 2.30908.0) - - GoogleAppMeasurement/WithoutAdIdSupport (10.8.0): - - GoogleUtilities/AppDelegateSwizzler (~> 7.8) - - GoogleUtilities/MethodSwizzler (~> 7.8) - - GoogleUtilities/Network (~> 7.8) - - "GoogleUtilities/NSData+zlib (~> 7.8)" - - nanopb (< 2.30910.0, >= 2.30908.0) - - GoogleDataTransport (9.2.3): - - GoogleUtilities/Environment (~> 7.7) - - nanopb (< 2.30910.0, >= 2.30908.0) - - PromisesObjC (< 3.0, >= 1.2) - - GoogleUtilities/AppDelegateSwizzler (7.11.1): + - GoogleAppMeasurement (11.7.0): + - GoogleAppMeasurement/AdIdSupport (= 11.7.0) + - GoogleUtilities/AppDelegateSwizzler (~> 8.0) + - GoogleUtilities/MethodSwizzler (~> 8.0) + - GoogleUtilities/Network (~> 8.0) + - "GoogleUtilities/NSData+zlib (~> 8.0)" + - nanopb (~> 3.30910.0) + - GoogleAppMeasurement/AdIdSupport (11.7.0): + - GoogleAppMeasurement/WithoutAdIdSupport (= 11.7.0) + - GoogleUtilities/AppDelegateSwizzler (~> 8.0) + - GoogleUtilities/MethodSwizzler (~> 8.0) + - GoogleUtilities/Network (~> 8.0) + - "GoogleUtilities/NSData+zlib (~> 8.0)" + - nanopb (~> 3.30910.0) + - GoogleAppMeasurement/WithoutAdIdSupport (11.7.0): + - GoogleUtilities/AppDelegateSwizzler (~> 8.0) + - GoogleUtilities/MethodSwizzler (~> 8.0) + - GoogleUtilities/Network (~> 8.0) + - "GoogleUtilities/NSData+zlib (~> 8.0)" + - nanopb (~> 3.30910.0) + - GoogleDataTransport (10.1.0): + - nanopb (~> 3.30910.0) + - PromisesObjC (~> 2.4) + - GoogleUtilities/AppDelegateSwizzler (8.0.2): - GoogleUtilities/Environment - GoogleUtilities/Logger - GoogleUtilities/Network - - GoogleUtilities/Environment (7.11.1): - - PromisesObjC (< 3.0, >= 1.2) - - GoogleUtilities/ISASwizzler (7.11.1) - - GoogleUtilities/Logger (7.11.1): + - GoogleUtilities/Privacy + - GoogleUtilities/Environment (8.0.2): + - GoogleUtilities/Privacy + - GoogleUtilities/Logger (8.0.2): - GoogleUtilities/Environment - - GoogleUtilities/MethodSwizzler (7.11.1): + - GoogleUtilities/Privacy + - GoogleUtilities/MethodSwizzler (8.0.2): - GoogleUtilities/Logger - - GoogleUtilities/Network (7.11.1): + - GoogleUtilities/Privacy + - GoogleUtilities/Network (8.0.2): - GoogleUtilities/Logger - "GoogleUtilities/NSData+zlib" + - GoogleUtilities/Privacy - GoogleUtilities/Reachability - - "GoogleUtilities/NSData+zlib (7.11.1)" - - GoogleUtilities/Reachability (7.11.1): + - "GoogleUtilities/NSData+zlib (8.0.2)": + - GoogleUtilities/Privacy + - GoogleUtilities/Privacy (8.0.2) + - GoogleUtilities/Reachability (8.0.2): - GoogleUtilities/Logger - - GoogleUtilities/UserDefaults (7.11.1): + - GoogleUtilities/Privacy + - GoogleUtilities/UserDefaults (8.0.2): - GoogleUtilities/Logger - - GTMSessionFetcher/Core (3.3.1) - - nanopb (2.30909.0): - - nanopb/decode (= 2.30909.0) - - nanopb/encode (= 2.30909.0) - - nanopb/decode (2.30909.0) - - nanopb/encode (2.30909.0) - - PromisesObjC (2.2.0) - - PromisesSwift (2.2.0): - - PromisesObjC (= 2.2.0) + - GoogleUtilities/Privacy + - GTMSessionFetcher/Core (4.2.0) + - nanopb (3.30910.0): + - nanopb/decode (= 3.30910.0) + - nanopb/encode (= 3.30910.0) + - nanopb/decode (3.30910.0) + - nanopb/encode (3.30910.0) + - PromisesObjC (2.4.0) + - PromisesSwift (2.4.0): + - PromisesObjC (= 2.4.0) DEPENDENCIES: - "Capacitor (from `../../node_modules/@capacitor/ios`)" @@ -191,6 +210,7 @@ DEPENDENCIES: SPEC REPOS: trunk: + - AppCheckCore - FirebaseABTesting - FirebaseAnalytics - FirebaseAppCheck @@ -203,7 +223,9 @@ SPEC REPOS: - FirebaseInstallations - FirebasePerformance - FirebaseRemoteConfig + - FirebaseRemoteConfigInterop - FirebaseSessions + - FirebaseSharedSwift - FirebaseStorage - GCDWebServer - GoogleAppMeasurement @@ -245,43 +267,46 @@ EXTERNAL SOURCES: :path: "../../node_modules/@capacitor/splash-screen" SPEC CHECKSUMS: - Capacitor: 559d073c4ca6c27f8e7002c807eea94c3ba435a9 - CapacitorBlobWriter: 110eeaf80611f19bf01a8a05ff3672149ed0baad - CapacitorClipboard: 80282f684154124b9019ebf401235b70b0cf4994 - CapacitorCordova: 8c4bfdf69368512e85b1d8b724dd7546abeb30af - CapacitorFilesystem: 60e59ba274c234a979e7a3be2552feaadcee4263 - CapacitorFirebaseAnalytics: dfccb704820bb7db82debbc05fded24b096bed71 - CapacitorFirebaseApp: 92ca109f6c2051fac981079390a250c2b3a9cd7d - CapacitorFirebaseAppCheck: ce24ffecbe5725e20325b7294c7a35f6f0555b86 - CapacitorFirebaseCrashlytics: 643d7e63836ae9608e10b9c3e40dfbae8679589e - CapacitorFirebasePerformance: 44310a597c709a01edb54f67cd4c394029de7b72 - CapacitorFirebaseStorage: 24c87683a4c9418d8366694186589910deafd330 - CapacitorKeyboard: deacbd09d8d1029c3681197fb05d206b721d5f73 - CapacitorShare: a771200d3b924a5d7ad9d9fecbac517e4c0aa74f - CapacitorSplashScreen: 5431ab8d19c1c6e95777d53bfaa7a36a6c3d94c7 - FirebaseABTesting: 005b70969e2817e2a1e631e8dba29134a04c0622 - FirebaseAnalytics: e1fc758bd5d71823bba970c076abee4b2450a5f4 - FirebaseAppCheck: 8bde2c5f393518ab98290151188bf196b4bab91e - FirebaseAppCheckInterop: e81bdb1cdb82f8e0cef353ba5018a8402682032c - FirebaseAuthInterop: 6142981334978f7942ff0e8a6f8966c3b3c8ff37 - FirebaseCore: e78636a990b54be427ce300aa09a0e359f4e0e87 - FirebaseCoreExtension: d3e9bba2930a8033042112397cd9f006a1bb203d - FirebaseCoreInternal: d2b4acb827908e72eca47a9fd896767c3053921e - FirebaseCrashlytics: 24f41a26d1a90767278a27bef3ea9ae6d80c7016 - FirebaseInstallations: c58489c9caacdbf27d1da60891a87318e20218e0 - FirebasePerformance: 080f10f4fc55a142425381f51062d30f335c2785 - FirebaseRemoteConfig: 5ea5834e8c518f377bf1af2d97ebd611914ebf2d - FirebaseSessions: 44a6782502eb279a214d4adca20891353278760c - FirebaseStorage: 8505bae8ac6662474b5b50e07759fb2765c15746 + AppCheckCore: cc8fd0a3a230ddd401f326489c99990b013f0c4f + Capacitor: 307e6badc74d8e77a75ab60e6d3216df7a8f1277 + CapacitorBlobWriter: d709e5d22ab9989afd730eb4773873d1ded5fd08 + CapacitorClipboard: f7c057c929fddd596770418207913550b612f8af + CapacitorCordova: 8f4f6826f0b40f7b506eb13b832039b7140a88b4 + CapacitorFilesystem: 7ac566d6fd4e6fa85aaeb5b10be91bd77b280fdd + CapacitorFirebaseAnalytics: ea41b789c09aa13dad7be76d8391dfcddc04988c + CapacitorFirebaseApp: 59b03643ac978f6c9acab96e5d5eafc0956b82a3 + CapacitorFirebaseAppCheck: d6aeba50358b0c3728005d8b12b4e03cde983079 + CapacitorFirebaseCrashlytics: 2457f3d327691b5cad6dff93bb59b84ab7c2fa08 + CapacitorFirebasePerformance: 0f3a74cb94b076493bc3796397cfe987fd15b141 + CapacitorFirebaseStorage: 1fcf845c094f0daf48c7ce551c8a506822403008 + CapacitorKeyboard: 209488d85dbca8b65d61ac7bb03f1f67661c27e4 + CapacitorShare: 91a5ff852b0193e321d5e2510a7176c8b92cb8d0 + CapacitorSplashScreen: 8c44d85456d72e103c95895dea790eef87e7018f + FirebaseABTesting: 08b3e19b28504632a9cd03e7a796b355c5d39b27 + FirebaseAnalytics: bc9e565af9044ba8d6c6e4157e4edca8e5fdf7ec + FirebaseAppCheck: 2bd832b48faa38f7d86f902c57f78af93eae4cdc + FirebaseAppCheckInterop: 2376d3ec5cb4267facad4fe754ab4f301a5a519b + FirebaseAuthInterop: a6973d72aa242ea88ffb6be9c9b06c65455071da + FirebaseCore: 3227e35f4197a924206fbcdc0349325baf4f5de4 + FirebaseCoreExtension: 206c1b399f0d103055207c16f299b28e3dbd1949 + FirebaseCoreInternal: d6c17dafc8dc33614733a8b52df78fcb4394c881 + FirebaseCrashlytics: 785a73b624715bbc09a40bb56cdc3829a801cc98 + FirebaseInstallations: 9347e719c3d52d8d7b9074b2c32407dd027305e9 + FirebasePerformance: 0c6fe140f24967b09a59c40c5ad54a623b740ad8 + FirebaseRemoteConfig: aa1d4cb05ef4caad203448dfc87842de12f1ea8d + FirebaseRemoteConfigInterop: ca12abf9da0003efd3a476b2dff4f7a04fd31b4f + FirebaseSessions: 32ed7a9387ae71efe3a35a7f20f3a7292950957b + FirebaseSharedSwift: a45efd84d60ebbfdcdbaebc66948af3630459e62 + FirebaseStorage: d35da127dd49edcbd07b8c07cf651a70161558b2 GCDWebServer: 2c156a56c8226e2d5c0c3f208a3621ccffbe3ce4 - GoogleAppMeasurement: 0ba93018e916f7badf915c2337d43cc1fa96b3f9 - GoogleDataTransport: f0308f5905a745f94fb91fea9c6cbaf3831cb1bd - GoogleUtilities: 9aa0ad5a7bc171f8bae016300bfcfa3fb8425749 - GTMSessionFetcher: 8a1b34ad97ebe6f909fb8b9b77fba99943007556 - nanopb: b552cce312b6c8484180ef47159bc0f65a1f0431 - PromisesObjC: 09985d6d70fbe7878040aa746d78236e6946d2ef - PromisesSwift: cf9eb58666a43bbe007302226e510b16c1e10959 + GoogleAppMeasurement: 0471a5b5bff51f3a91b1e76df22c952d04c63967 + GoogleDataTransport: aae35b7ea0c09004c3797d53c8c41f66f219d6a7 + GoogleUtilities: 26a3abef001b6533cf678d3eb38fd3f614b7872d + GTMSessionFetcher: 4cb0aa086996858328a1fca61f9bfe81cfdfdfa9 + nanopb: fad817b59e0457d11a5dfbde799381cd727c1275 + PromisesObjC: f5707f49cb48b9636751c5b2e7d227e43fba9f47 + PromisesSwift: 9d77319bbe72ebf6d872900551f7eeba9bce2851 -PODFILE CHECKSUM: 21a176319e8c88223878d14b7f86521f16f6bdf4 +PODFILE CHECKSUM: 0e26b0ebee6ae3ec84c2d9a457002fc1924bab89 -COCOAPODS: 1.15.2 +COCOAPODS: 1.16.2 diff --git a/package.json b/package.json index 0c4a06af..6583ce6e 100644 --- a/package.json +++ b/package.json @@ -56,21 +56,21 @@ "@capacitor-firebase/crashlytics": "6.3.1", "@capacitor-firebase/performance": "6.3.1", "@capacitor-firebase/storage": "6.3.1", - "@capacitor/android": "6.2.0", + "@capacitor/android": "7.0.0", "@capacitor/clipboard": "6.0.2", - "@capacitor/core": "6.2.0", - "@capacitor/filesystem": "6.0.2", - "@capacitor/ios": "6.2.0", + "@capacitor/core": "7.0.0", + "@capacitor/filesystem": "6.0.3", + "@capacitor/ios": "7.0.0", "@capacitor/keyboard": "6.0.3", "@capacitor/share": "6.0.3", "@capacitor/splash-screen": "6.0.3", "@ctrl/ngx-github-buttons": "9.0.0", "@google/model-viewer": "4.0.0", "@ionic/angular": "8.4.1", + "@jsverse/transloco": "7.5.1", "@mediapipe/drawing_utils": "0.3.1675466124", "@mediapipe/holistic": "0.5.1675471629", "@mediapipe/tasks-text": "0.10.20", - "@jsverse/transloco": "7.5.1", "@ngxs/store": "19.0.0", "@sign-mt/browsermt": "0.2.3", "@sign-mt/i18n": "git://github.com/sign/i18n.git", @@ -116,7 +116,7 @@ "@angular/cli": "19.1.3", "@angular/compiler-cli": "19.1.2", "@capacitor/assets": "3.0.5", - "@capacitor/cli": "6.2.0", + "@capacitor/cli": "7.0.0", "@ionic/angular-server": "8.4.1", "@playwright/test": "1.49.1", "@sign-mt/configuration": "git://github.com/sign/.github.git", @@ -132,8 +132,8 @@ "@types/web-app-manifest": "1.0.8", "@types/webgl2": "0.0.11", "@types/wicg-file-system-access": "2023.10.5", - "@typescript-eslint/eslint-plugin": "8.20.0", - "@typescript-eslint/parser": "8.20.0", + "@typescript-eslint/eslint-plugin": "8.21.0", + "@typescript-eslint/parser": "8.21.0", "browser-sync": "3.0.3", "deepmerge": "4.3.1", "dotenv": "16.4.7",