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

Exit status: 65 #21876

Closed
access-2-arabia opened this issue Feb 15, 2024 · 1 comment
Closed

Exit status: 65 #21876

access-2-arabia opened this issue Feb 15, 2024 · 1 comment

Comments

@access-2-arabia
Copy link

access-2-arabia commented Feb 15, 2024

🚫 fastlane environment 🚫

Stack

Key Value
OS 14.2.1
Ruby 3.3.0
Bundler? false
Git git version 2.39.3 (Apple Git-145)
Installation Source /opt/homebrew/Cellar/fastlane/2.219.0_2/libexec/bin/fastlane
Host macOS 14.2.1 (23C71)
Ruby Lib Dir /opt/homebrew/Cellar/ruby/3.3.0/lib
OpenSSL Version OpenSSL 3.2.0 23 Nov 2023
Is contained false
Is homebrew true
Is installed via Fabric.app false
Xcode Path /Applications/Xcode.app/Contents/Developer/
Xcode Version 15.2
Swift Version 5.9.2

System Locale

Error
No Locale with UTF8 found 🚫

fastlane files:

`./fastlane/Fastfile`
default_platform(:ios)
platform :ios do

  # ----------- CONSTANTS -----------

  DEBUG = "Debug"
  STAGING = "Staging"
  RELEASE = "Release"
  BUILD_PATH = "./fastlane/builds"

  # ----------- BEFORE ALL CALLBACK -----------

  before_all do
    default_app_target = "CashCom"
    selected_environment = ENV["CONFIGURATION"] || UI.select("Please select configuration: ", [DEBUG, STAGING, RELEASE])

    # PROPERTIES
    @target = default_app_target
    @environment = selected_environment
    @scheme = "#{default_app_target} - #{selected_environment}"
    @config = get_configuration

    # Set Mobile Numbers for 2FA SMS automation
    mobile_number = choose_mobile_number(@config.mobile_numbers)
    ENV["SPACESHIP_2FA_SMS_DEFAULT_PHONE_NUMBER"] = mobile_number
  end

  # ----------- DEFINED PROPERTIES -----------

  def get_target
    @target
  end

  def get_scheme
    @scheme
  end

  def get_environment
    @environment
  end

  def common_build_file_path
    "#{BUILD_PATH}/#{get_scheme}/#{get_scheme}"
  end

  # ----------- CONFIGURATIONS -----------

  def get_configuration
    path = ENV['xcconfig_path']
    mobile_numbers = get_xcconfig_value(path: path, name: "Verified_MOBILE_NUMBERS").split(",")

    Struct.new(:itc_team_id, :apple_id, :app_identifier, :mobile_numbers).new(
      get_xcconfig_value(path: path, name: "ITC_TEAM_ID"),
      get_xcconfig_value(path: path, name: "APPLE_ID"),
      get_xcconfig_value(path: path, name: "APP_IDENTIFIER"),
      mobile_numbers
    )
  end

  # ----------- LANES -----------

  desc "Export APP IPA"
  lane :export_ipa do
    scheme = get_scheme
    build_app(scheme: scheme)
  end

  desc "Upload Beta Version To TestFlight"
  lane :upload do
    ipa_path = "#{common_build_file_path}.ipa"
    upload_testflight(ipa_path: ipa_path)
  end

  desc "Upload DSYMs"
  lane :upload_dsyms do
    dsym_path = "#{common_build_file_path}.app.dSYM.zip"
    upload_dsym_to_crashlytics(dsym_path: dsym_path)
  end

  desc "Create app ipa and upload to"
  lane :beta do
    export_ipa
    upload
    upload_dsyms
  end

  # ----------- ACTIONS -----------

  def build_app(scheme:)
    gym(
      scheme: scheme,
      clean: true,
      verbose: true,
      output_name: scheme,
      output_directory: "#{BUILD_PATH}/#{scheme}"
    )
  end

  def upload_testflight(ipa_path:)
    build_description = get_multiline_input("Enter a build description (Press Enter twice while finish):")
    platform = get_platform(get_environment.downcase)
    changelog = "#{platform}\n\n#{build_description}"
    
    upload_to_testflight(
      apple_id: @config.apple_id,
      app_identifier: @config.app_identifier,
      team_id: @config.itc_team_id,
      ipa: ipa_path,
      skip_waiting_for_build_processing: false,
      changelog: changelog
    )
  end

  def upload_dsym_to_crashlytics(dsym_path:)
    upload_symbols_to_crashlytics(
      gsp_path: ENV['gsp_path'],
      binary_path: ENV['binary_path'],
      dsym_path: dsym_path
    )
    clean_build_artifacts
  end

  def get_multiline_input(prompt)
    lines = []
    puts prompt
    loop do
      line = UI.input(" > ")
      break if line.empty? && !lines.empty?
      lines << line
    end
    lines.join("\n")
  end

  def choose_mobile_number(mobile_numbers)
    selected_option = UI.select("Choose a phone number for 2FA SMS automation:", mobile_numbers)
    selected_mobile_number = selected_option.split(' - ').last

    puts "Selected mobile number: #{selected_mobile_number}"

    selected_mobile_number
  end

  def get_platform(environment)
    platform = case environment
    when 'debug'
      'Test'
    when 'staging'
      'Staging'
    else
      'Live'
    end

    "** #{platform} Environment **"
  end

  # ----------- END PLATFORM TARGET -----------
end
`./fastlane/Appfile`
# For more information about the Appfile, see:
#     https://docs.fastlane.tools/advanced/#

apple_id("iphonedeveloper3@access2arabia.com")
app_identifier(ENV['BUNDLE_IDENTIFIER']) # The bundle identifier of your app
app_identifier(ENV['SCHEME'])
app_identifier(ENV['APP_NAME'])
ENV["FASTLANE_APPLE_APPLICATION_SPECIFIC_PASSWORD"] = "gqxl-yfqj-emyg-cahr"

ENV['gsp_path'] = "./CashCom/Supporting Files/GoogleService-Info.plist"
ENV['binary_path'] = "./Configurations/Scripts/upload-symbols"
ENV['xcconfig_path'] = "./Configurations/XCConfig/Application.xcconfig"
      

fastlane gems

Gem Version Update-Status
fastlane 2.219.0 ✅ Up-To-Date

Loaded fastlane plugins:

Plugin Version Update-Status
fastlane-plugin-xcconfig 2.0.0 ✅ Up-To-Date
Loaded gems
Gem Version
error_highlight 0.6.0
did_you_mean 1.6.3
syntax_suggest 2.0.0
public_suffix 5.0.4
addressable 2.8.6
artifactory 3.0.15
jmespath 1.6.2
aws-partitions 1.877.0
aws-eventstream 1.3.0
aws-sigv4 1.8.0
aws-sdk-core 3.190.1
aws-sdk-kms 1.76.0
aws-sdk-s3 1.142.0
babosa 1.0.4
bundler 2.5.4
rexml 3.2.6
CFPropertyList 3.0.6
colored 1.2
highline 2.0.3
commander 4.6.0
dotenv 2.8.1
emoji_regex 3.2.3
excon 0.109.0
faraday-em_http 1.0.0
faraday-em_synchrony 1.0.0
faraday-excon 1.1.0
faraday-httpclient 1.0.1
multipart-post 2.3.0
faraday-multipart 1.0.4
faraday-net_http 1.0.1
faraday-net_http_persistent 1.2.0
faraday-patron 1.0.0
faraday-rack 1.0.0
faraday-retry 1.0.3
ruby2_keywords 0.0.5
faraday 1.10.3
faraday_middleware 1.2.0
domain_name 0.6.20240107
http-cookie 1.0.5
faraday-cookie_jar 0.0.7
fastimage 2.3.0
gh_inspector 1.1.3
uber 0.1.0
declarative 0.0.20
trailblazer-option 0.1.2
representable 3.2.0
retriable 3.1.2
mini_mime 1.1.5
jwt 2.7.1
multi_json 1.15.0
os 1.1.4
signet 0.18.0
googleauth 1.8.1
httpclient 2.8.3
webrick 1.8.1
google-apis-core 0.11.2
google-apis-androidpublisher_v3 0.54.0
google-apis-playcustomapp_v1 0.13.0
google-cloud-env 1.6.0
google-cloud-errors 1.3.1
google-cloud-core 1.6.1
google-apis-iamcredentials_v1 0.17.0
google-apis-storage_v1 0.31.0
rake 13.1.0
digest-crc 0.6.5
google-cloud-storage 1.47.0
json 2.7.1
mini_magick 4.12.0
naturally 2.2.1
optparse 0.4.0
plist 3.7.1
rubyzip 2.3.2
security 0.1.3
simctl 1.6.10
terminal-notifier 2.0.0
unicode-display_width 2.5.0
terminal-table 3.0.2
tty-screen 0.8.2
tty-cursor 0.7.1
tty-spinner 0.9.3
word_wrap 1.0.0
atomos 0.1.3
claide 1.1.0
colored2 3.1.2
nanaimo 0.3.0
xcodeproj 1.23.0
rouge 2.0.7
xcpretty 0.3.0
xcpretty-travis-formatter 1.0.1
set 1.1.0
forwardable 1.3.3
logger 1.6.0
pathname 0.3.0
shellwords 0.2.0
cgi 0.4.1
date 3.3.4
timeout 0.4.1
securerandom 0.3.1
uri 0.13.0
openssl 3.2.0
digest 3.1.1
ipaddr 1.2.6
resolv 0.3.0
time 0.3.0
stringio 3.1.0
open-uri 0.4.1
mutex_m 0.2.0
net-http 0.4.0
net-protocol 0.2.2
ostruct 0.6.0
english 0.8.0
erb 4.0.3
abbrev 0.1.2
tempfile 0.2.1
delegate 0.3.1
fileutils 1.7.2
tmpdir 0.2.0
base64 0.2.0
singleton 0.2.0
open3 0.2.1
nkf 0.1.3
prettyprint 0.2.0
pp 0.5.0
find 0.2.0
yaml 0.3.0
psych 5.1.2
fastlane-plugin-xcconfig 2.0.0

generated on: 2024-02-15

❌ /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/A2A Esh7an/Model/EVoucherItem.swift:32:17: cannot find type 'A2AEsh7anBiller' in scope

init(model: A2AEsh7anBiller) {
                      ^

❌ /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/A2A Esh7an/Model/EVoucherItem.swift:59:23: cannot find type 'A2AEsh7AnVoucher' in scope

let voucherModel: A2AEsh7AnVoucher
            ^~~~~~~~~~~~~~~

❌ /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/A2A Esh7an/Model/EVoucherItem.swift:63:16: cannot find type 'A2AEsh7AnVoucher' in scope

    model: A2AEsh7AnVoucher,
                  ^~~~~~~~~~~~~~~~

❌ /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/TransactionHistory/List/TransactionHistoryListPresenter.swift:19:28: cannot find type 'CardModel' in scope

private var cardModel: CardModel?
           ^~~~~~~~~~~~~~~~

❌ /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/TransactionHistory/List/TransactionHistoryListPresenter.swift:86:25: cannot find type 'CardModel' in scope

func loadData(card: CardModel?) {
                       ^~~~~~~~~

❌ /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/TransactionHistory/Filter/TransactionHistoryFilterForm.swift:15:15: cannot find type 'CardModel' in scope

let card: CardModel?
                    ^~~~~~~~~

❌ /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/LinkCard/LinkCardFormPresenter.swift:56:26: cannot find type 'CardsParameter' in scope

func linkCard(param: CardsParameter) {
          ^~~~~~~~~

❌ /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Registration/PersonalDetails/PersonalDetailsForm.swift:58:25: cannot find type 'RegistrationParameter' in scope

func parameter() -> RegistrationParameter {
                     ^~~~~~~~~~~~~~

❌ /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Registration/PersonalDetails/PersonalDetailsForm.swift:13:13: type 'PersonalDetailsForm' does not conform to protocol 'Form'

final class PersonalDetailsForm: Form {
^~~~~~~~~~~~~~~~~~~~~

❌ /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Launch/LaunchPresenter.swift:19:49: cannot find type 'ConfigurationService' in scope

@Injected private var configurationService: ConfigurationService
        ^

❌ /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/A2A Esh7an/EVoucher Details/EVoucherDetailsPresenter.swift:24:45: cannot find type 'A2AEsh7anService' in scope

@Injected private var a2AEsh7anService: A2AEsh7anService
                                            ^~~~~~~~~~~~~~~~~~~~

❌ /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Registration/GrantAccess/GrantAccessForm.swift:30:30: value of type 'User' has no member 'allowNotification'

    isOn: (User.current?.allowNotification).defaultIfEmpty
                                        ^~~~~~~~~~~~~~~~

❌ /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Utilities/ConfigurationService/AppConfig.swift:19:17: cannot find type 'ConfugrationResponse' in scope

init(model: ConfugrationResponse? = nil) {
           ~~~~~~~~~~~~~ ^~~~~~~~~~~~~~~~~

❌ /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Utilities/ConfigurationService/AppConfig.swift:37:36: missing argument for parameter 'from' in call

static var current = AppConfig()
            ^~~~~~~~~~~~~~~~~~~~

❌ /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Registration/MobileNumberForm/MobileNumberForm.swift:53:50: value of type 'User' has no member 'mobileCountryCode'

            selectedPhoneCode: User.current?.mobileCountryCode ?? "964",
         ^

❌ /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Registration/MobileNumberForm/MobileNumberForm.swift:82:25: cannot find type 'RegistrationParameter' in scope

func parameter() -> RegistrationParameter {
                               ~~~~~~~~~~~~~ ^~~~~~~~~~~~~~~~~

❌ /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Registration/MobileNumberForm/MobileNumberForm.swift:42:13: type 'MobileNumberForm' does not conform to protocol 'Form'

final class MobileNumberForm: Form {
^~~~~~~~~~~~~~~~~~~~~

❌ /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Dashboard/Model/CardItem.swift:21:15: cannot find type 'CardModel' in scope

var card: CardModel?
        ^

❌ /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Dashboard/Model/CardItem.swift:35:21: cannot find type 'CardModel' in scope

init(cardModel: CardModel?) {
          ^~~~~~~~~

❌ /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Dashboard/Model/CardItem.swift:77:22: cannot find type 'TotalAmount' in scope

let totalAmount: TotalAmount?
                ^~~~~~~~~

❌ /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Dashboard/Model/CardItem.swift:85:23: cannot find type 'TotalAmount' in scope

init(totalAmount: TotalAmount?) {
                 ^~~~~~~~~~~

❌ /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/A2A Esh7an/MainEVoucher/MainEVoucherPresenter.swift:18:36: cannot find type 'A2AEsh7anService' in scope

@Injected private var service: A2AEsh7anService
                  ^~~~~~~~~~~

❌ /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Registration/PinCode/PinCodePresenter.swift:18:19: cannot find type 'RegistrationParameter' in scope

case register(RegistrationParameter)
                               ^~~~~~~~~~~~~~~~

❌ /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/CardTransfer/TransferToCards/TransferToCardsForm.swift:16:121: value of type 'LookupResponse' has no member 'beneficiaryType'

let typeSelector = FormSelectorItem<LookupModel>(title: L10n.beneficiaryType, items: LookupManager.shared.response?.beneficiaryType ?? [])
              ^~~~~~~~~~~~~~~~~~~~~

❌ /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/CardTransfer/TransferToCards/TransferToCardsForm.swift:78:25: cannot find type 'CardTransferParameter' in scope

func parameter() -> CardTransferParameter {
                                                                                     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~~~~~~~~~~

❌ /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/CardTransfer/TransferToCards/TransferToCardsForm.swift:12:13: type 'TransferToCardsForm' does not conform to protocol 'Form'

final class TransferToCardsForm: Form {
^~~~~~~~~~~~~~~~~~~~~

❌ /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Beneficiaries/Form/BeneficiaryForm.swift:29:47: value of type 'LookupResponse' has no member 'beneficiaryType'

    items: LookupManager.shared.response?.beneficiaryType ?? []
        ^

❌ /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Settings/Common/Settings.swift:42:30: value of type 'User' has no member 'isBiometricEnabled'

    isOn: (User.current?.isBiometricEnabled).defaultIfEmpty
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~~~~~~~~~~

❌ /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Currency Exchange/CurrencyListPresenter.swift:26:36: cannot find type 'CurrencyService' in scope

@Injected private var service: CurrencyService
           ~~~~~~~~~~~~~ ^~~~~~~~~~~~~~~~~~

❌ /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Settings/Change Username/ChangeUsernameForm.swift:23:69: value of type 'User' has no member 'username'

    rules: [.required, .equal { [unowned self] in User.current?.username }]
                               ^~~~~~~~~~~~~~~

❌ /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Settings/SecondFactorAuth/SecondFactorAuthFormPresenter.swift:17:31: cannot find type 'SecondFactorAuthType' in scope

private var selectedItem: SecondFactorAuthType? = .biometric
                                                  ~~~~~~~~~~~~~ ^~~~~~~~

❌ /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Settings/SecondFactorAuth/SecondFactorAuthFormPresenter.swift:66:32: cannot find type 'SecondFactorAuthType' in scope

func setAuthType(authType: SecondFactorAuthType) {
                          ^~~~~~~~~~~~~~~~~~~~

❌ /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Settings/SecondFactorAuth/SecondFactorAuthFormPresenter.swift:80:27: cannot find type 'SecondFactorAuthType' in scope

func update(authType: SecondFactorAuthType) {
                           ^~~~~~~~~~~~~~~~~~~~

❌ /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/A2A Esh7an/EVoucher List/EVoucherListPresenter.swift:14:36: cannot find type 'A2AEsh7anService' in scope

@Injected private var service: A2AEsh7anService
                      ^~~~~~~~~~~~~~~~~~~~

❌ /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Password/ChangePassword/ChangePasswordForm.swift:37:72: value of type 'User' has no member 'username'

let userName = AnyFormItem(UserViewCell.self, item: (User.current?.username).defaultIfEmpty)
                               ^~~~~~~~~~~~~~~~

❌ /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Registration/PinCode/PinCodePresenter.swift:93:39: cannot find type 'PinCodeService' in scope

@Injected private var pinService: PinCodeService
                                                     ~~~~~~~~~~~~~ ^~~~~~~~

❌ /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Currency Exchange/Model/CurrencyItem.swift:13:16: cannot find type 'CurrencyRate' in scope

let model: CurrencyRate
                                  ^~~~~~~~~~~~~~

❌ /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Currency Exchange/Model/CurrencyItem.swift:22:20: cannot find type 'CurrencyRate' in scope

init(currency: CurrencyRate) {
           ^~~~~~~~~~~~

❌ /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/TransactionHistory/Commons/TransactionHistoryItem.swift:24:15: cannot find type 'CardModel' in scope

let card: CardModel?
               ^~~~~~~~~~~~

❌ /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/TransactionHistory/Commons/TransactionHistoryItem.swift:28:57: cannot find type 'CardModel' in scope

init(transactionHistory: TransactionHistory?, card: CardModel? = nil) {
          ^~~~~~~~~

❌ /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Menu/MenuPresenter.swift:30:81: value of type 'User' has no member 'image'

    view?.setUser(name: User.current?.fullName ?? "", avatar: User.current?.image)
                                                    ^~~~~~~~~

❌ /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Main/MainViewController.swift:152:9: cannot find 'DatasourceManager' in scope

    DatasourceManager.shared.authenticate = response?.response.body?.authenticate
                                                              ~~~~~~~~~~~~~ ^~~~~

❌ /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Main/MainViewController.swift:167:30: value of type 'User' has no member 'secondAuthType'

    switch User.current?.secondAuthType {
    ^~~~~~~~~~~~~~~~~

❌ /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Main/MainViewController.swift:173:21: cannot find 'DatasourceManager' in scope

                DatasourceManager.shared.authenticate = Authenticate(biometric: true)
           ~~~~~~~~~~~~~ ^~~~~~~~~~~~~~

❌ /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/CardTransfer/TransferToCards/TransferToCardsForm.swift:78:25: cannot find type 'CardTransferParameter' in scope

func parameter() -> CardTransferParameter {
                ^~~~~~~~~~~~~~~~~

❌ /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Login/LoginPresenter.swift:87:45: missing argument for parameter 'isMerchant' in call

            let params = LoginParameter(loginWithBiometrics: true)
                    ^~~~~~~~~~~~~~~~~~~~~

❌ /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Login/LoginPresenter.swift:132:17: value of type 'any AuthenticationService' has no member 'generateToken'

    service.generateToken().then { result in
       ^

❌ /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Utilities/ConfigurationService/AppConfig.swift:19:17: cannot find type 'ConfugrationResponse' in scope

init(model: ConfugrationResponse? = nil) {
    ~~~~~~~ ^~~~~~~~~~~~~

❌ /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Utilities/ConfigurationService/AppConfig.swift:37:36: missing argument for parameter 'from' in call

static var current = AppConfig()
            ^~~~~~~~~~~~~~~~~~~~

❌ /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Login/LoginPresenter.swift:220:9: cannot find 'DatasourceManager' in scope

    DatasourceManager.shared.authenticate = response?.response.body?.authenticate
         ^

❌ /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/TransactionHistory/List/TransactionHistoryListPresenter.swift:19:28: cannot find type 'CardModel' in scope

private var cardModel: CardModel?
    ^~~~~~~~~~~~~~~~~

❌ /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/TransactionHistory/List/TransactionHistoryListPresenter.swift:86:25: cannot find type 'CardModel' in scope

func loadData(card: CardModel?) {
                       ^~~~~~~~~

❌ /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/TransactionHistory/List/TransactionHistoryListPresenter.swift:88:22: no exact matches in call to initializer

    let params = TransactionHistoryParameter(card: card)
                    ^~~~~~~~~

❌ /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/TransactionHistory/Commons/TransactionHistoryItem.swift:28:57: cannot find type 'CardModel' in scope

init(transactionHistory: TransactionHistory?, card: CardModel? = nil) {
       ^

❌ /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Registration/PersonalDetails/PersonalDetailsForm.swift:58:25: cannot find type 'RegistrationParameter' in scope

func parameter() -> RegistrationParameter {
                                                    ^~~~~~~~~

❌ /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Registration/PinCode/PinCodePresenter.swift:18:19: cannot find type 'RegistrationParameter' in scope

case register(RegistrationParameter)
                    ^~~~~~~~~~~~~~~~~~~~~

❌ /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Registration/PersonalDetails/PersonalDetailsFormPresenter.swift:44:25: incorrect argument label in call (have 'with:serviceID:', expected 'with:type:')

    service.register(
              ^~~~~~~~~~~~~~~~~~~~~

❌ /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Registration/PersonalDetails/PersonalDetailsFormPresenter.swift:45:24: argument passed to call that takes no arguments

        with: .init(
                    ^

❌ /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Registration/PersonalDetails/PersonalDetailsFormPresenter.swift:46:36: cannot infer contextual base in reference to member 'checkUsername'

            registrationStep: .checkUsername,
                   ^

❌ /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Registration/PersonalDetails/PersonalDetailsFormPresenter.swift:49:36: type 'ServiceName' has no member 'selfReg'

        serviceID: ServiceName.selfReg
                              ~^~~~~~~~~~~~~

❌ /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Settings/Common/Settings.swift:42:30: value of type 'User' has no member 'isBiometricEnabled'

    isOn: (User.current?.isBiometricEnabled).defaultIfEmpty
                   ~~~~~~~~~~~ ^~~~~~~

❌ /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Currency Exchange/CurrencyListPresenter.swift:26:36: cannot find type 'CurrencyService' in scope

@Injected private var service: CurrencyService
           ~~~~~~~~~~~~~ ^~~~~~~~~~~~~~~~~~

❌ /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Currency Exchange/Model/CurrencyItem.swift:22:20: cannot find type 'CurrencyRate' in scope

init(currency: CurrencyRate) {
                               ^~~~~~~~~~~~~~~

❌ /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Settings/Change Username/ChangeUsernameForm.swift:23:69: value of type 'User' has no member 'username'

    rules: [.required, .equal { [unowned self] in User.current?.username }]
               ^~~~~~~~~~~~

❌ /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/My Profile/ProfileViewController.swift:38:39: value of type 'User' has no member 'birthDate'

    dateOfBirthLabel.text = user?.birthDate?.toDateString(toFormat: .dayMonthYear).dashedIfEmpty
                                                  ~~~~~~~~~~~~~ ^~~~~~~~

❌ /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/My Profile/ProfileViewController.swift:38:74: cannot infer contextual base in reference to member 'dayMonthYear'

    dateOfBirthLabel.text = user?.birthDate?.toDateString(toFormat: .dayMonthYear).dashedIfEmpty
                            ~~~~~ ^~~~~~~~~

❌ /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/My Profile/ProfileViewController.swift:39:36: value of type 'User' has no member 'username'

    usernameLabel.text = user?.username?.dashedIfEmpty
                                                                    ~^~~~~~~~~~~~

❌ /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Password/ForgetPassword/ForgetPasswordPresenter.swift:41:20: extra argument 'card' in call

        card: .init(
                         ~~~~~ ^~~~~~~~

❌ /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Password/ForgetPassword/ForgetPasswordPresenter.swift:40:26: type 'Int?' has no member 'resetPassword'

        stepNumber: .resetPassword,



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Password/ForgetPassword/ForgetPasswordPresenter.swift:41:20: cannot infer contextual base in reference to member 'init'

            card: .init(
                        ~^~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Settings/SecondFactorAuth/SecondFactorAuthFormPresenter.swift:17:31: cannot find type 'SecondFactorAuthType' in scope

    private var selectedItem: SecondFactorAuthType? = .biometric
                  ~^~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Settings/SecondFactorAuth/SecondFactorAuthFormPresenter.swift:66:32: cannot find type 'SecondFactorAuthType' in scope

    func setAuthType(authType: SecondFactorAuthType) {
                              ^~~~~~~~~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Settings/SecondFactorAuth/SecondFactorAuthFormPresenter.swift:80:27: cannot find type 'SecondFactorAuthType' in scope

    func update(authType: SecondFactorAuthType) {
                               ^~~~~~~~~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Settings/SecondFactorAuth/SecondFactorAuthFormPresenter.swift:26:35: cannot infer contextual base in reference to member 'pin'

        if selectedItem.value == .pin {
                          ^~~~~~~~~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Settings/SecondFactorAuth/SecondFactorAuthFormPresenter.swift:27:31: cannot infer contextual base in reference to member 'pin'

            update(authType: .pin)
                                 ~^~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Settings/SecondFactorAuth/SecondFactorAuthFormPresenter.swift:29:31: cannot infer contextual base in reference to member 'biometric'

            update(authType: .biometric)
                             ~^~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Settings/SecondFactorAuth/SecondFactorAuthFormPresenter.swift:44:38: cannot infer contextual base in reference to member 'pin'

                self.selectedItem = .pin
                             ~^~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Settings/SecondFactorAuth/SecondFactorAuthFormPresenter.swift:55:26: value of type 'User' has no member 'secondAuthType'

        if User.current?.secondAuthType == .biometric {
                                    ~^~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Settings/SecondFactorAuth/SecondFactorAuthFormPresenter.swift:55:45: cannot infer contextual base in reference to member 'biometric'

        if User.current?.secondAuthType == .biometric {
           ~~~~~~~~~~~~~ ^~~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Settings/SecondFactorAuth/SecondFactorAuthFormPresenter.swift:68:22: value of type 'any SettingsService' has no member 'setAuthType'

        self.service.setAuthType(authType: authType).then { [weak self] result in
                                           ~^~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Settings/SecondFactorAuth/SecondFactorAuthFormPresenter.swift:68:73: cannot infer type of closure parameter 'result' without a type annotation

        self.service.setAuthType(authType: authType).then { [weak self] result in
        ~~~~~~~~~~~~ ^~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Settings/SecondFactorAuth/SecondFactorAuthFormPresenter.swift:70:27: value of type 'User' has no member 'secondAuthType'

            User.current?.secondAuthType = authType
                                                                        ^



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Settings/SecondFactorAuth/SecondFactorAuthFormPresenter.swift:81:28: cannot infer contextual base in reference to member 'biometric'

        guard authType == .biometric else { setAuthType(authType: authType) ; return }
            ~~~~~~~~~~~~~ ^~~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Currency Exchange/Model/CurrencyItem.swift:13:16: cannot find type 'CurrencyRate' in scope

    let model: CurrencyRate
                          ~^~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Settings/Common/Settings.swift:42:30: value of type 'User' has no member 'isBiometricEnabled'

        isOn: (User.current?.isBiometricEnabled).defaultIfEmpty
               ^~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Settings/SettingsList/SettingsListPresenter.swift:43:56: cannot infer type of closure parameter 'isOn' without a type annotation

        settingItems.biometricAuth.didToggleSwitch = { isOn in
               ~~~~~~~~~~~~~ ^~~~~~~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Settings/SettingsList/SettingsListPresenter.swift:60:27: value of type 'User' has no member 'isBiometricEnabled'

            User.current?.isBiometricEnabled = enabled
                                                       ^



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Settings/SettingsList/SettingsListPresenter.swift:87:17: value of type 'any SettingsService' has no member 'setAllowNotification'

        service.setAllowNotification(enabled: enabled).then { result in
            ~~~~~~~~~~~~~ ^~~~~~~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Settings/SettingsList/SettingsListPresenter.swift:88:27: value of type 'User' has no member 'allowNotification'

            User.current?.allowNotification = enabled
        ~~~~~~~ ^~~~~~~~~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Registration/MobileNumberForm/MobileNumberForm.swift:82:25: cannot find type 'RegistrationParameter' in scope

    func parameter() -> RegistrationParameter {
            ~~~~~~~~~~~~~ ^~~~~~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Registration/PersonalDetails/PersonalDetailsForm.swift:58:25: cannot find type 'RegistrationParameter' in scope

    func parameter() -> RegistrationParameter {
                        ^~~~~~~~~~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/ViewFactory/ViewFactory+Authentication.swift:72:46: cannot convert value of type 'RegistrationItem' to expected argument type 'PersonalDetailsForm.Item?'

        let form = PersonalDetailsForm(item: item)
                        ^~~~~~~~~~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Dashboard/Model/CardItem.swift:35:21: cannot find type 'CardModel' in scope

    init(cardModel: CardModel?) {
                                             ^



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/CardTransfer/TransferToCards/TransferToCardsForm.swift:16:121: value of type 'LookupResponse' has no member 'beneficiaryType'

    let typeSelector = FormSelectorItem<LookupModel>(title: L10n.beneficiaryType, items: LookupManager.shared.response?.beneficiaryType ?? [])
                    ^~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/CardTransfer/TransferToCards/TransferToCardsFormPresenter.swift:53:44: cannot infer contextual base in reference to member 'zero'

        form.typeSelector.selectedIndex = .zero
                                                                                         ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/CardTransfer/TransferToCards/TransferToCardsForm.swift:78:25: cannot find type 'CardTransferParameter' in scope

    func parameter() -> CardTransferParameter {
                                          ~^~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Dashboard/Model/CardItem.swift:35:21: cannot find type 'CardModel' in scope

    init(cardModel: CardModel?) {
                        ^~~~~~~~~~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/CardTransfer/TransferToCards/TransferToCardsFormPresenter.swift:162:45: missing arguments for parameters 'with', 'type' in call

        beneficiaryService.loadBeneficiaries().then { result in
                    ^~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/CardTransfer/TransferToCards/TransferToCardsFormPresenter.swift:176:21: value of type 'any CardService' has no member 'transferCardToCard'

        cardService.transferCardToCard(
         ^



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/CardTransfer/TransferToCards/TransferToCardsFormPresenter.swift:178:20: cannot infer contextual base in reference to member 'internal'

            type: .internal,
        ~~~~~~~~~~~ ^~~~~~~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/CardTransfer/TransferToCards/TransferToCardsFormPresenter.swift:179:36: type 'ServiceName' has no member 'internalTransfer'

            serviceID: ServiceName.internalTransfer
                  ~^~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/CardTransfer/TransferToCards/TransferToCardsFormPresenter.swift:180:30: cannot infer type of closure parameter 'result' without a type annotation

        ).then { [weak self] result in
                       ~~~~~~~~~~~ ^~~~~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/CardTransfer/TransferToCards/TransferToCardsFormPresenter.swift:195:88: missing argument for parameter 'type' in call

        beneficiaryService.commitBeneficiaryAction(with: form.addBeneficiaryParameter()).then { _ in
                             ^



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Login/LoginForm.swift:30:13: missing argument for parameter 'isMerchant' in call

            username: username.value,
         ^



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/A2A Esh7an/Model/EVoucherItem.swift:32:17: cannot find type 'A2AEsh7anBiller' in scope

    init(model: A2AEsh7anBiller) {
           ^



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/A2A Esh7an/Model/EVoucherItem.swift:59:23: cannot find type 'A2AEsh7AnVoucher' in scope

    let voucherModel: A2AEsh7AnVoucher
                ^~~~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/A2A Esh7an/Model/EVoucherItem.swift:63:16: cannot find type 'A2AEsh7AnVoucher' in scope

        model: A2AEsh7AnVoucher,
                      ^~~~~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Registration/MobileNumberForm/MobileNumberForm.swift:53:50: value of type 'User' has no member 'mobileCountryCode'

                selectedPhoneCode: User.current?.mobileCountryCode ?? "964",
               ^~~~~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Registration/MobileNumberForm/MobileNumberFormPresenter.swift:41:121: value of type 'User' has no member 'mobileCountryCode'

            form.numberItem.value = (User.current?.mobileNumber).defaultIfEmpty.replacingOccurrences(of: (User.current?.mobileCountryCode).defaultIfEmpty, with: "")
                                   ~~~~~~~~~~~~~ ^~~~~~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Registration/MobileNumberForm/MobileNumberForm.swift:82:25: cannot find type 'RegistrationParameter' in scope

    func parameter() -> RegistrationParameter {
                                                                                                          ~~~~~~~~~~~~~ ^~~~~~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Registration/MobileNumberForm/MobileNumberFormPresenter.swift:54:25: incorrect argument label in call (have 'with:serviceID:', expected 'with:type:')

        service.register(with: form.parameter(), serviceID: form.type.serviceID).then { result in
                        ^~~~~~~~~~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Registration/MobileNumberForm/MobileNumberFormPresenter.swift:54:71: cannot convert value of type 'String' to expected argument type 'UserType'

        service.register(with: form.parameter(), serviceID: form.type.serviceID).then { result in
                        ^                        ~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Registration/MobileNumberForm/MobileNumberFormPresenter.swift:55:47: value of type 'RegistrationResponse' has no member 'user'

            let model = result.response.body?.user
                                                                      ^



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Registration/MobileNumberForm/MobileNumberFormPresenter.swift:94:81: argument 'newPassword' must precede argument 'stepNumber'

        let params: ForgotPasswordParameter = .init(stepNumber: .resetPassword, newPassword: newPassword)
                        ~~~~~~~~~~~~~~~~~~~~~ ^~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Registration/MobileNumberForm/MobileNumberFormPresenter.swift:94:66: type 'Int?' has no member 'resetPassword'

        let params: ForgotPasswordParameter = .init(stepNumber: .resetPassword, newPassword: newPassword)
                                                    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/A2A Esh7an/EVoucher Details/EVoucherDetailsPresenter.swift:24:45: cannot find type 'A2AEsh7anService' in scope

    @Injected private var a2AEsh7anService: A2AEsh7anService
                                                                ~^~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Dashboard/Model/CardItem.swift:35:21: cannot find type 'CardModel' in scope

    init(cardModel: CardModel?) {
                                            ^~~~~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/A2A Esh7an/EVoucher Details/EVoucherDetailsPresenter.swift:77:24: cannot find type 'AddOrderParameter' in scope

        let parameter: AddOrderParameter = .init(
                    ^~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Dashboard/Model/CardItem.swift:21:15: cannot find type 'CardModel' in scope

    var card: CardModel?
                       ^~~~~~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Registration/GrantAccess/GrantAccessForm.swift:30:30: value of type 'User' has no member 'allowNotification'

        isOn: (User.current?.allowNotification).defaultIfEmpty
              ^~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Beneficiaries/List/Presenter/BeneficiaryListPresenter.swift:63:34: missing arguments for parameters 'with', 'type' in call

        service.loadBeneficiaries().then { result in
               ~~~~~~~~~~~~~ ^~~~~~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Beneficiaries/List/Presenter/BeneficiaryListPresenter.swift:75:42: incorrect argument label in call (have 'stepNumber:beneficiary:', expected 'action:beneficiary:')

        let params = BeneficiaryParameter(stepNumber: .delete, beneficiary: beneficiary)
         ^



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Beneficiaries/List/Presenter/BeneficiaryListPresenter.swift:75:56: type 'BeneficiaryActions' has no member 'delete'

        let params = BeneficiaryParameter(stepNumber: .delete, beneficiary: beneficiary)
                                         ^~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Beneficiaries/List/Presenter/BeneficiaryListPresenter.swift:77:53: missing argument for parameter 'type' in call

        service.commitBeneficiaryAction(with: params).then { result in
                                                      ~^~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Beneficiaries/Form/BeneficiaryForm.swift:29:47: value of type 'LookupResponse' has no member 'beneficiaryType'

        items: LookupManager.shared.response?.beneficiaryType ?? []
         ^



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Beneficiaries/Form/BeneficiaryForm.swift:55:55: value of type 'LookupResponse' has no member 'beneficiaryType'

            let type = LookupManager.shared.response?.beneficiaryType?.first { $0.evalue == item.type }
               ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Beneficiaries/Form/BeneficiaryForm.swift:68:62: type 'BeneficiaryActions' has no member 'add'

        let stepNumber: BeneficiaryActions = type == .add ? .add : .update
                       ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Beneficiaries/Form/BeneficiaryForm.swift:68:69: type 'BeneficiaryActions' has no member 'update'

        let stepNumber: BeneficiaryActions = type == .add ? .add : .update
                                                            ~^~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Beneficiaries/Form/BeneficiaryForm.swift:70:27: type of expression is ambiguous without a type annotation

        let beneficiary = Beneficiary(
                                                                   ~^~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Beneficiaries/Form/BeneficiaryForm.swift:76:21: incorrect argument label in call (have 'stepNumber:beneficiary:', expected 'action:beneficiary:')

        return .init(stepNumber: stepNumber, beneficiary: beneficiary)
                          ^~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Password/ForgetPassword/ForgetPasswordForm.swift:29:32: extra arguments at positions #2, #3 in call

        ForgotPasswordParameter(
                    ^~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Password/ForgetPassword/ForgetPasswordForm.swift:30:26: type 'Int?' has no member 'getUser'

            stepNumber: .getUser,
           ^



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Password/ForgetPassword/ForgetPasswordForm.swift:31:20: cannot infer contextual base in reference to member 'init'

            card: .init(
                        ~^~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Managers/LookupsManager.swift:24:20: value of type 'LookupResponse' has no member 'aboutUs'

        (response?.aboutUs?.first?.localizedValue).defaultIfEmpty
                  ~^~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Managers/LookupsManager.swift:32:19: value of type 'LookupResponse' has no member 'beneficiaryType'

        response?.beneficiaryType ?? []
         ~~~~~~~~~ ^~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Managers/LookupsManager.swift:36:35: value of type 'LookupResponse' has no member 'countries'

        let countries = response?.countries?.map { $0.localizedDescription.defaultIfEmpty }
        ~~~~~~~~~ ^~~~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Managers/LookupsManager.swift:41:35: value of type 'LookupModel' has no member 'first'

        (response?.privacyPolicy?.first?.localizedValue).defaultIfEmpty
                        ~~~~~~~~~ ^~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Managers/LookupsManager.swift:45:38: value of type 'LookupResponse' has no member 'countryCode'

        let countryCodes = response?.countryCode?.map { $0.edesc.defaultIfEmpty }
         ~~~~~~~~~~~~~~~~~~~~~~~~ ^~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Managers/LookupsManager.swift:54:36: value of type 'LookupResponse' has no member 'cardStatus'

        let cardStatus = response?.cardStatus
                           ~~~~~~~~~ ^~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Managers/LookupsManager.swift:55:83: type of expression is ambiguous without a type annotation

        let statusDescription = cardStatus?.first { $0.localizedValue == value }?.localizedDescription
                         ~~~~~~~~~ ^~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Managers/LookupsManager.swift:60:35: value of type 'LookupResponse' has no member 'cardTypes'

        let cardTypes = response?.cardTypes
                                ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Managers/LookupsManager.swift:61:80: type of expression is ambiguous without a type annotation

        let typeDescription = cardTypes?.first { $0.localizedValue == value }?.localizedDescription
                        ~~~~~~~~~ ^~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Managers/LookupsManager.swift:66:36: value of type 'LookupResponse' has no member 'currencies'

        let currencies = response?.currencies
                              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Managers/LookupsManager.swift:67:74: type of expression is ambiguous without a type annotation

        let currencyDescription = currencies?.first { $0.code == code }?.shortcut
                         ~~~~~~~~~ ^~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Managers/LookupsManager.swift:72:36: value of type 'LookupResponse' has no member 'currencies'

        let currencies = response?.currencies
                                  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Managers/LookupsManager.swift:73:63: type of expression is ambiguous without a type annotation

        let currency = currencies?.first { $0.code == code }?.localizedDescription
                         ~~~~~~~~~ ^~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Managers/LookupsManager.swift:82:13: cannot find 'cardTypes' in scope

            cardTypes,
                       ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Managers/LookupsManager.swift:83:13: cannot find 'currencies' in scope

            currencies,
            ^~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Managers/LookupsManager.swift:84:13: cannot find 'cardStatus' in scope

            cardStatus,
            ^~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Managers/LookupsManager.swift:87:13: cannot find 'aboutUs' in scope

            aboutUs,
            ^~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Managers/LookupsManager.swift:89:13: cannot find 'beneficiaryType' in scope

            beneficiaryType,
            ^~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Managers/LookupsManager.swift:90:13: cannot find 'countryCode' in scope

            countryCode,
            ^~~~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Managers/LookupsManager.swift:91:13: cannot find 'countries' in scope

            countries
            ^~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/CardTransfer/BetweenMyCards/TransferBetweenMyCardsFormPresenter.swift:117:22: cannot find 'CardTransferParameter' in scope

        let params = CardTransferParameter(
            ^~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/CardTransfer/BetweenMyCards/TransferBetweenMyCardsFormPresenter.swift:123:21: value of type 'any CardService' has no member 'transferCardToCard'

        cardService.transferCardToCard(parameter: params, type: .internal, serviceID: ServiceName.internalTransfer).then { result in
                     ^~~~~~~~~~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/CardTransfer/BetweenMyCards/TransferBetweenMyCardsFormPresenter.swift:123:66: cannot infer contextual base in reference to member 'internal'

        cardService.transferCardToCard(parameter: params, type: .internal, serviceID: ServiceName.internalTransfer).then { result in
        ~~~~~~~~~~~ ^~~~~~~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/CardTransfer/BetweenMyCards/TransferBetweenMyCardsFormPresenter.swift:123:99: type 'ServiceName' has no member 'internalTransfer'

        cardService.transferCardToCard(parameter: params, type: .internal, serviceID: ServiceName.internalTransfer).then { result in
                                                                ~^~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Dashboard/Model/CardItem.swift:35:21: cannot find type 'CardModel' in scope

    init(cardModel: CardModel?) {
                                                                                      ~~~~~~~~~~~ ^~~~~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Dashboard/Model/CardItem.swift:21:15: cannot find type 'CardModel' in scope

    var card: CardModel?
                    ^~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Dashboard/Model/CardItem.swift:77:22: cannot find type 'TotalAmount' in scope

    let totalAmount: TotalAmount?
              ^~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Dashboard/Model/CardItem.swift:85:23: cannot find type 'TotalAmount' in scope

    init(totalAmount: TotalAmount?) {
                     ^~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Utilities/ConfigurationService/AppConfig.swift:19:17: cannot find type 'ConfugrationResponse' in scope

    init(model: ConfugrationResponse? = nil) {
                      ^~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Utilities/ConfigurationService/AppConfig.swift:37:36: missing argument for parameter 'from' in call

    static var current = AppConfig()
                ^~~~~~~~~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/MyCards/MyCardsPresenter.swift:112:21: value of type 'any CardService' has no member 'loadCardDetails'

        cardService.loadCardDetails().then { [weak self] _ in
             ^



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/MyCards/MyCardsPresenter.swift:112:58: cannot infer type of closure parameter '_' without a type annotation

        cardService.loadCardDetails().then { [weak self] _ in
        ~~~~~~~~~~~ ^~~~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/MyCards/MyCardsPresenter.swift:123:21: cannot find 'CardsParameter' in scope

        let param = CardsParameter(card: selectedCard?.card)
                                                         ^



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Dashboard/Model/CardItem.swift:21:15: cannot find type 'CardModel' in scope

    var card: CardModel?
                    ^~~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/MyCards/MyCardsPresenter.swift:137:11: type of expression is ambiguous without a type annotation

        }.always {
              ^~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/MyCards/MyCardsPresenter.swift:143:21: cannot find 'CardsParameter' in scope

        var param = CardsParameter(card: selectedCard?.card)
~~~~~~~~~~^~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/MyCards/MyCardsPresenter.swift:146:21: value of type 'any CardService' has no member 'cardStatus'

        cardService.cardStatus(with: param).then {  [weak self] _ in
                    ^~~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/MyCards/MyCardsPresenter.swift:146:65: cannot infer type of closure parameter '_' without a type annotation

        cardService.cardStatus(with: param).then {  [weak self] _ in
        ~~~~~~~~~~~ ^~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Managers/ResolverManager.swift:29:20: cannot find 'APICardServices' in scope

        register { APICardServices() as CardService }
                                                                ^



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Managers/ResolverManager.swift:31:20: cannot find 'APIA2AEsh7anService' in scope

        register { APIA2AEsh7anService() as A2AEsh7anService }
                   ^~~~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Managers/ResolverManager.swift:31:45: cannot find type 'A2AEsh7anService' in scope

        register { APIA2AEsh7anService() as A2AEsh7anService }
                   ^~~~~~~~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Managers/ResolverManager.swift:32:20: cannot find 'APICurrencyService' in scope

        register { APICurrencyService() as CurrencyService }
                                            ^~~~~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Managers/ResolverManager.swift:32:44: cannot find type 'CurrencyService' in scope

        register { APICurrencyService() as CurrencyService }
                   ^~~~~~~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Managers/ResolverManager.swift:33:20: cannot find 'APIPinCodeService' in scope

        register { APIPinCodeService() as PinCodeService }
                                           ^~~~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Managers/ResolverManager.swift:33:43: cannot find type 'PinCodeService' in scope

        register { APIPinCodeService() as PinCodeService }
                   ^~~~~~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Managers/ResolverManager.swift:35:20: cannot find 'APIConfigurationService' in scope

        register { APIConfigurationService() as ConfigurationService }
                                          ^~~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Managers/ResolverManager.swift:35:49: cannot find type 'ConfigurationService' in scope

        register { APIConfigurationService() as ConfigurationService }
                   ^~~~~~~~~~~~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Registration/MobileNumberForm/MobileNumberForm.swift:53:50: value of type 'User' has no member 'mobileCountryCode'

                selectedPhoneCode: User.current?.mobileCountryCode ?? "964",
                                                ^~~~~~~~~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Registration/MobileNumberForm/MobileNumberForm.swift:82:25: cannot find type 'RegistrationParameter' in scope

    func parameter() -> RegistrationParameter {
                                   ~~~~~~~~~~~~~ ^~~~~~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Registration/MobileNumberForm/MobileNumberForm.swift:42:13: type 'MobileNumberForm' does not conform to protocol 'Form'

final class MobileNumberForm: Form {
                        ^~~~~~~~~~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Registration/MobileNumberForm/MobileNumberForm.swift:33:32: 'forgotPassword' is inaccessible due to 'internal' protection level

            return ServiceName.forgotPassword
                   ^



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Registration/MobileNumberForm/MobileNumberForm.swift:35:32: type 'ServiceName' has no member 'selfReg'

            return ServiceName.selfReg
                        ^



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Registration/MobileNumberForm/MobileNumberForm.swift:37:32: type 'ServiceName' has no member 'forgetPin'

            return ServiceName.forgetPin
                   ~~~~~~~~~~~ ^~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Registration/MobileNumberForm/MobileNumberForm.swift:84:54: type of expression is ambiguous without a type annotation

        let mobileNumber = numberItem.countryPicker?.mobileNumber
                   ~~~~~~~~~~~ ^~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Registration/MobileNumberForm/MobileNumberForm.swift:85:21: cannot find type 'RegistrationParameter' in scope

        let params: RegistrationParameter = .init(registrationStep: .validate)
                           ~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Registration/MobileNumberForm/MobileNumberForm.swift:87:14: cannot assign to property: 'mobileNumber' setter is inaccessible

        user.mobileNumber = mobileNumber
                    ^~~~~~~~~~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/A2A Esh7an/EVoucher List/EVoucherListPresenter.swift:14:36: cannot find type 'A2AEsh7anService' in scope

    @Injected private var service: A2AEsh7anService
        ~~~~~^~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/A2A Esh7an/Model/EVoucherItem.swift:63:16: cannot find type 'A2AEsh7AnVoucher' in scope

        model: A2AEsh7AnVoucher,
                                   ^~~~~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Landing/LandingPresenter.swift:62:9: cannot find 'DatasourceManager' in scope

        DatasourceManager.shared.authenticate = response?.response.body?.authenticate
               ^~~~~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Dashboard/Presenter/DashboardPresenter.swift:101:31: value of type 'any AuthenticationService' has no member 'generateToken'

        authenticationService.generateToken().then { result in
        ^~~~~~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Dashboard/Model/CardItem.swift:35:21: cannot find type 'CardModel' in scope

    init(cardModel: CardModel?) {
        ~~~~~~~~~~~~~~~~~~~~~ ^~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Password/ChangePassword/ChangePasswordForm.swift:37:72: value of type 'User' has no member 'username'

    let userName = AnyFormItem(UserViewCell.self, item: (User.current?.username).defaultIfEmpty)
                    ^~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/OTP/OTPPresenter.swift:15:9: cannot find 'DatasourceManager' in scope

        DatasourceManager.shared.authenticate = nil
                                                         ~~~~~~~~~~~~~ ^~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/OTP/OTPPresenter.swift:15:49: 'nil' requires a contextual type

        DatasourceManager.shared.authenticate = nil
        ^~~~~~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/OTP/OTPPresenter.swift:20:9: cannot find 'DatasourceManager' in scope

        DatasourceManager.shared.authenticate = nil
                                                ^



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/OTP/OTPPresenter.swift:20:49: 'nil' requires a contextual type

        DatasourceManager.shared.authenticate = nil
        ^~~~~~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/OTP/OTPPresenter.swift:24:22: cannot find 'DatasourceManager' in scope

        if let utr = DatasourceManager.shared.authenticate?.utr {
                                                ^



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/OTP/OTPPresenter.swift:27:9: cannot find 'DatasourceManager' in scope

        DatasourceManager.shared.authenticate = Authenticate(pin: pin, utr: self.utr)
                     ^~~~~~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Beneficiaries/Form/BeneficiaryForm.swift:29:47: value of type 'LookupResponse' has no member 'beneficiaryType'

        items: LookupManager.shared.response?.beneficiaryType ?? []
        ^~~~~~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Beneficiaries/Form/BeneficiaryFormPresenter.swift:48:44: cannot infer contextual base in reference to member 'zero'

        form.typeSelector.selectedIndex = .zero
               ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Beneficiaries/Form/BeneficiaryFormPresenter.swift:49:59: cannot infer type of closure parameter 'index' without a type annotation

        form.typeSelector.didSelectRow = { [unowned self] index in
                                          ~^~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Beneficiaries/Form/BeneficiaryFormPresenter.swift:58:63: missing argument for parameter 'type' in call

        service.commitBeneficiaryAction(with: form.parameter()).then { result in
                                                          ^



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Registration/PinCode/PinCodePresenter.swift:18:19: cannot find type 'RegistrationParameter' in scope

    case register(RegistrationParameter)
         ^



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Registration/PinCode/PinCodePresenter.swift:93:39: cannot find type 'PinCodeService' in scope

    @Injected private var pinService: PinCodeService
                  ^~~~~~~~~~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Registration/PinCode/PinCodePresenter.swift:191:29: incorrect argument label in call (have 'with:serviceID:', expected 'with:type:')

        authService.register(with: params, serviceID: ServiceName.selfReg).then { result in
                                      ^~~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Registration/PinCode/PinCodePresenter.swift:191:67: type 'ServiceName' has no member 'selfReg'

        authService.register(with: params, serviceID: ServiceName.selfReg).then { result in
                            ^              ~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Registration/PinCode/PinCodePresenter.swift:193:57: value of type 'RegistrationResponse' has no member 'user'

                self.update(user: result.response.body?.user)
                                                      ~~~~~~~~~~~ ^~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Registration/PinCode/PinCodePresenter.swift:212:22: cannot find 'PinParameter' in scope

        let params = PinParameter(pin: pinCode.defaultIfEmpty, stepNumber: 2)
                                  ~~~~~~~~~~~~~~~~~~~~~ ^~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Registration/PinCode/PinCodePresenter.swift:227:22: cannot find 'PinParameter' in scope

        let params = PinParameter(pin: pinCode.defaultIfEmpty, oldPIN: oldPin.defaultIfEmpty)
                     ^~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Registration/PinCode/PinCodePresenter.swift:241:22: cannot find 'PinParameter' in scope

        let params = PinParameter(pin: pinCode.defaultIfEmpty)
                     ^~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Registration/PinCode/PinCodePresenter.swift:253:9: cannot find 'DatasourceManager' in scope

        DatasourceManager.shared.authenticate = Authenticate(appPin: pin, biometric: false)
                     ^~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Registration/PinCode/PinCodePresenter.swift:253:70: extra argument 'appPin' in call

        DatasourceManager.shared.authenticate = Authenticate(appPin: pin, biometric: false)
        ^~~~~~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Currency Exchange/Model/CurrencyItem.swift:13:16: cannot find type 'CurrencyRate' in scope

    let model: CurrencyRate
                                                            ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Currency Exchange/Model/CurrencyItem.swift:22:20: cannot find type 'CurrencyRate' in scope

    init(currency: CurrencyRate) {
               ^~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/TransactionHistory/Commons/TransactionHistoryItem.swift:24:15: cannot find type 'CardModel' in scope

    let card: CardModel?
                   ^~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/TransactionHistory/Commons/TransactionHistoryItem.swift:28:57: cannot find type 'CardModel' in scope

    init(transactionHistory: TransactionHistory?, card: CardModel? = nil) {
              ^~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/TransactionHistory/Commons/TransactionHistoryItem.swift:30:68: value of type 'TransactionHistory' has no member 'type'

        self.type = TransactionType(rawValue: (transactionHistory?.type).defaultIfEmpty) ?? .credit
                                                        ^~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/TransactionHistory/Commons/TransactionHistoryItem.swift:33:73: value of type 'TransactionHistory' has no member 'currency'

        LookupManager.shared.getCurrencyCode(code: (transactionHistory?.currency).defaultIfEmpty)
                                               ~~~~~~~~~~~~~~~~~~~ ^~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/TransactionHistory/Commons/TransactionHistoryItem.swift:36:51: value of type 'TransactionHistory' has no member 'localizedType'

        self.transferType = ((transactionHistory?.localizedType).defaultIfEmpty)
                                                    ~~~~~~~~~~~~~~~~~~~ ^~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/TransactionHistory/Filter/TransactionHistoryFilterForm.swift:15:15: cannot find type 'CardModel' in scope

    let card: CardModel?
                              ~~~~~~~~~~~~~~~~~~~ ^~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Dashboard/Model/CardItem.swift:21:15: cannot find type 'CardModel' in scope

    var card: CardModel?
              ^~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/LinkCard/LinkCardFormPresenter.swift:56:26: cannot find type 'CardsParameter' in scope

    func linkCard(param: CardsParameter) {
              ^~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Dashboard/Model/CardItem.swift:35:21: cannot find type 'CardModel' in scope

    init(cardModel: CardModel?) {
                         ^~~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/LinkCard/LinkCardFormPresenter.swift:58:21: value of type 'any CardService' has no member 'linkCard'

        cardService.linkCard(with: param).then { [weak self] result in
                    ^~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/LinkCard/LinkCardFormPresenter.swift:58:62: cannot infer type of closure parameter 'result' without a type annotation

        cardService.linkCard(with: param).then { [weak self] result in
        ~~~~~~~~~~~ ^~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/LinkCard/LinkCardFormPresenter.swift:83:21: cannot find 'CardsParameter' in scope

        let param = CardsParameter(card: .init(
                                                             ^



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/LinkCard/LinkCardFormPresenter.swift:83:43: cannot infer contextual base in reference to member 'init'

        let param = CardsParameter(card: .init(
                    ^~~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Registration/PersonalDetails/PersonalDetailsForm.swift:58:25: cannot find type 'RegistrationParameter' in scope

    func parameter() -> RegistrationParameter {
                                         ~^~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Registration/PersonalDetails/PersonalDetailsForm.swift:13:13: type 'PersonalDetailsForm' does not conform to protocol 'Form'

final class PersonalDetailsForm: Form {
                        ^~~~~~~~~~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Registration/PersonalDetails/PersonalDetailsForm.swift:61:14: value of type 'User' has no member 'birthDate'

        user.birthDate = birthDate.value
                   ^



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Registration/PersonalDetails/PersonalDetailsForm.swift:62:14: cannot assign to property: 'firstName' setter is inaccessible

        user.firstName = firstName.value
        ~~~~ ^~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Registration/PersonalDetails/PersonalDetailsForm.swift:63:14: cannot assign to property: 'lastName' setter is inaccessible

        user.lastName = lastName.value
        ~~~~~^~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Registration/PersonalDetails/PersonalDetailsForm.swift:64:14: cannot assign to property: 'mobileNumber' setter is inaccessible

        user.mobileNumber = item?.mobileNumber
        ~~~~~^~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Registration/PersonalDetails/PersonalDetailsForm.swift:66:22: cannot find 'RegistrationParameter' in scope

        let params = RegistrationParameter(
        ~~~~~^~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Registration/PersonalDetails/PersonalDetailsForm.swift:67:32: cannot infer contextual base in reference to member 'register'

            registrationStep: .register,
                     ^~~~~~~~~~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Launch/LaunchPresenter.swift:19:49: cannot find type 'ConfigurationService' in scope

    @Injected private var configurationService: ConfigurationService
                              ~^~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Launch/LaunchPresenter.swift:61:31: value of type 'any AuthenticationService' has no member 'generateToken'

        authenticationService.generateToken().then { result in
                                                ^~~~~~~~~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Utilities/ConfigurationService/AppConfig.swift:19:17: cannot find type 'ConfugrationResponse' in scope

    init(model: ConfugrationResponse? = nil) {
        ~~~~~~~~~~~~~~~~~~~~~ ^~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Utilities/ConfigurationService/AppConfig.swift:37:36: missing argument for parameter 'from' in call

    static var current = AppConfig()
                ^~~~~~~~~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Launch/LaunchPresenter.swift:73:65: incorrect argument label in call (have 'model:', expected 'from:')

            AppConfig.current = $0.response.body.map { AppConfig(model: $0) } ?? AppConfig()
             ^



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Launch/LaunchPresenter.swift:73:92: missing argument for parameter 'from' in call

            AppConfig.current = $0.response.body.map { AppConfig(model: $0) } ?? AppConfig()
                                                                ^~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Utilities/ConfigurationService/AppConfig.swift:19:17: cannot find type 'ConfugrationResponse' in scope

    init(model: ConfugrationResponse? = nil) {
             ^



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Utilities/ConfigurationService/AppConfig.swift:37:36: missing argument for parameter 'from' in call

    static var current = AppConfig()
                ^~~~~~~~~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Dashboard/Model/CardItem.swift:35:21: cannot find type 'CardModel' in scope

    init(cardModel: CardModel?) {
             ^



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Registration/GrantAccess/GrantAccessForm.swift:30:30: value of type 'User' has no member 'allowNotification'

        isOn: (User.current?.allowNotification).defaultIfEmpty
                    ^~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Registration/GrantAccess/GrantAccessFormPresenter.swift:85:17: value of type 'any SettingsService' has no member 'setAllowNotification'

        service.setAllowNotification(enabled: enabled).then { result in
               ~~~~~~~~~~~~~ ^~~~~~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Registration/GrantAccess/GrantAccessFormPresenter.swift:86:27: value of type 'User' has no member 'allowNotification'

            User.current?.allowNotification = enabled
        ~~~~~~~ ^~~~~~~~~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Registration/GrantAccess/GrantAccessFormPresenter.swift:101:27: value of type 'User' has no member 'isBiometricEnabled'

            User.current?.isBiometricEnabled = enabled
            ~~~~~~~~~~~~~ ^~~~~~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Beneficiaries/List/Model/BeneficiaryItem.swift:21:38: value of type 'Beneficiary' has no member 'nickname'

        self.nickname = beneficiary?.nickname
            ~~~~~~~~~~~~~ ^~~~~~~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Beneficiaries/List/Model/BeneficiaryItem.swift:22:34: value of type 'Beneficiary' has no member 'type'

        self.type = beneficiary?.type
                        ~~~~~~~~~~~~ ^~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Beneficiaries/List/Model/BeneficiaryItem.swift:23:45: value of type 'Beneficiary' has no member 'referenceNumber'

        self.referenceNumber = beneficiary?.referenceNumber
                    ~~~~~~~~~~~~ ^~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Beneficiaries/List/Model/BeneficiaryItem.swift:24:51: value of type 'Beneficiary' has no member 'referenceNumberMasked'

        self.referenceNumberMasked = beneficiary?.referenceNumberMasked?.formattedCardNumber
                               ~~~~~~~~~~~~ ^~~~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/A2A Esh7an/MainEVoucher/MainEVoucherPresenter.swift:18:36: cannot find type 'A2AEsh7anService' in scope

    @Injected private var service: A2AEsh7anService
                                     ~~~~~~~~~~~~ ^~~~~~~~~~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/A2A Esh7an/Model/EVoucherItem.swift:32:17: cannot find type 'A2AEsh7anBiller' in scope

    init(model: A2AEsh7anBiller) {
                                   ^~~~~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Registration/PinCode/PinCodePresenter.swift:18:19: cannot find type 'RegistrationParameter' in scope

    case register(RegistrationParameter)
                ^~~~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/CardTransfer/TransferToCards/TransferToCardsForm.swift:16:121: value of type 'LookupResponse' has no member 'beneficiaryType'

    let typeSelector = FormSelectorItem<LookupModel>(title: L10n.beneficiaryType, items: LookupManager.shared.response?.beneficiaryType ?? [])
                  ^~~~~~~~~~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/CardTransfer/TransferToCards/TransferToCardsForm.swift:78:25: cannot find type 'CardTransferParameter' in scope

    func parameter() -> CardTransferParameter {
                                                                                         ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/CardTransfer/TransferToCards/TransferToCardsForm.swift:12:13: type 'TransferToCardsForm' does not conform to protocol 'Form'

final class TransferToCardsForm: Form {
                        ^~~~~~~~~~~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/CardTransfer/TransferToCards/TransferToCardsForm.swift:70:27: type of expression is ambiguous without a type annotation

        let beneficiary = Beneficiary(
                   ^



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/CardTransfer/TransferToCards/TransferToCardsForm.swift:75:36: incorrect argument label in call (have 'stepNumber:beneficiary:', expected 'action:beneficiary:')

        return BeneficiaryParameter(stepNumber: .add, beneficiary: beneficiary)
                          ^~~~~~~~~~~~



❌  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/CardTransfer/TransferToCards/TransferToCardsForm.swift:75:50: type 'BeneficiaryActions' has no member 'add'

        return BeneficiaryParameter(stepNumber: .add, beneficiary: beneficiary)
                                   ^~~~~~~~~~~



❌  error: /Users/mohammadfarhan/Library/Developer/Xcode/DerivedData/CashCom-eioijvgdnlelsxazeopoprxoqntz/Build/Intermediates.noindex/ArchiveIntermediates/CashCom - Staging/IntermediateBuildFilesPath/CashCom.build/Staging-iphoneos/CashCom.build/Objects-normal/arm64/CashCom.swiftdoc: No such file or directory (in target 'CashCom' from project 'CashCom')



❌  error: /Users/mohammadfarhan/Library/Developer/Xcode/DerivedData/CashCom-eioijvgdnlelsxazeopoprxoqntz/Build/Intermediates.noindex/ArchiveIntermediates/CashCom - Staging/IntermediateBuildFilesPath/CashCom.build/Staging-iphoneos/CashCom.build/Objects-normal/arm64/CashCom.swiftmodule: No such file or directory (in target 'CashCom' from project 'CashCom')



❌  error: /Users/mohammadfarhan/Library/Developer/Xcode/DerivedData/CashCom-eioijvgdnlelsxazeopoprxoqntz/Build/Intermediates.noindex/ArchiveIntermediates/CashCom - Staging/IntermediateBuildFilesPath/CashCom.build/Staging-iphoneos/CashCom.build/Objects-normal/arm64/CashCom.abi.json: No such file or directory (in target 'CashCom' from project 'CashCom')


▸ Processing Info.plist
▸ Running script 'Crashlytics'
    DEBUG_INFORMATION_FORMAT should be set to dwarf-with-dsym for all configurations. This could also be a timing issue, make sure the Firebase run script build phase is the last build phase and no other scripts have moved the dSYM from the location Xcode generated it. Unable to process CashCom.app.dSYM at path /Users/mohammadfarhan/Library/Developer/Xcode/DerivedData/CashCom-eioijvgdnlelsxazeopoprxoqntz/Build/Intermediates.noindex/ArchiveIntermediates/CashCom - Staging/BuildProductsPath/Staging-iphoneos/CashCom.app.dSYM
▸ Running script '[CP] Embed Pods Frameworks'
▸ Running script '[CP-User] SwiftLint'

⚠️  /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/ViewFactory/ViewFactory+Settings.swift:21:8: Todo Violation: TODOs should be resolved (- Uncomment When Design Is Rea...) (todo)

Linting 'UIImageView+Extension.swift' (23/224)
                                                ~^~~


▸ Running script '[CP-User] SwiftGen'
▸ Touching CashCom.app (in target 'CashCom' from project 'CashCom')
    Run script build phase '[CP-User] SwiftGen' will be run during every build because it does not specify any outputs. To address this warning, either add output dependencies to the script phase, or configure it to run in every build by unchecking "Based on dependency analysis" in the script phase. (in target 'CashCom' from project 'CashCom')
    Run script build phase '[CP-User] SwiftLint' will be run during every build because it does not specify any outputs. To address this warning, either add output dependencies to the script phase, or configure it to run in every build by unchecking "Based on dependency analysis" in the script phase. (in target 'CashCom' from project 'CashCom')
** ARCHIVE FAILED **


The following build commands failed:
	SwiftEmitModule normal arm64 Emitting\ module\ for\ CashCom (in target 'CashCom' from project 'CashCom')
	SwiftCompile normal arm64 Compiling\ MenuPresenter.swift,\ AddCardCountryFormPresenter.swift,\ AddCardQuickQuestionsFormPresenter.swift,\ MenuServiceType.swift,\ ViewCardPinController.swift,\ AddBeneficiaryItem.swift,\ ScanCardCell.swift,\ ViewFactory+Settings.swift,\ SettingsUserDefault.swift,\ MainViewController.swift,\ EFServicesListProvider.swift,\ ViewFactory+Cards.swift,\ LoginPresenter.swift,\ MainEVoucherController.swift,\ TransactionHistoryListPresenter.swift,\ PersonalDetailsFormPresenter.swift,\ FormRulesCell.swift,\ LegalsPresenter.swift,\ ContactUsPresenter.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Menu/MenuPresenter.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/AddCard/Country/AddCardCountryFormPresenter.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/AddCard/QuickQuestions/AddCardQuickQuestionsFormPresenter.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Menu/Commons/MenuServiceType.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/View\ Card\ Pin/ViewCardPinController.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Beneficiaries/List/Model/AddBeneficiaryItem.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/LinkCard/Cell/ScanCardCell.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/ViewFactory/ViewFactory+Settings.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Common/UserDefault/SettingsUserDefault.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Main/MainViewController.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/EFawateerCom/EFServices/EFServicesListProvider.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/ViewFactory/ViewFactory+Cards.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Login/LoginPresenter.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/A2A\ Esh7an/MainEVoucher/MainEVoucherController.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/TransactionHistory/List/TransactionHistoryListPresenter.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Registration/PersonalDetails/PersonalDetailsFormPresenter.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Commons/Cells/FormRulesCell.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Commons/Legals/LegalsPresenter.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Settings/ContactUs/ContactUsPresenter.swift (in target 'CashCom' from project 'CashCom')
	SwiftCompile normal arm64 /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Menu/MenuPresenter.swift (in target 'CashCom' from project 'CashCom')
	SwiftCompile normal arm64 /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Main/MainViewController.swift (in target 'CashCom' from project 'CashCom')
	SwiftCompile normal arm64 /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/ViewFactory/ViewFactory+Cards.swift (in target 'CashCom' from project 'CashCom')
	SwiftCompile normal arm64 /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Login/LoginPresenter.swift (in target 'CashCom' from project 'CashCom')
	SwiftCompile normal arm64 /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/TransactionHistory/List/TransactionHistoryListPresenter.swift (in target 'CashCom' from project 'CashCom')
	SwiftCompile normal arm64 /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Registration/PersonalDetails/PersonalDetailsFormPresenter.swift (in target 'CashCom' from project 'CashCom')
	SwiftCompile normal arm64 Compiling\ TransactionHistoryAppNavigation.swift,\ Settings.swift,\ EVoucherDetailsCell.swift,\ CurrencyListPresenter.swift,\ YesOrNoQuestionCell.swift,\ ChangeUsernameForm.swift,\ ViewFactory+Currency.swift,\ LegalsViewController.swift,\ ProfileViewController.swift,\ ForgetPasswordPresenter.swift,\ SecondFactorAuthFormPresenter.swift,\ TransactionHistoryListViewController.swift,\ Array.swift,\ EFServicesListPresenter.swift,\ TitleCell.swift,\ SelectCountryCell.swift,\ CurrencyListController.swift,\ TransactionHistoryListProvider.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/TransactionHistory/Commons/TransactionHistoryAppNavigation.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Settings/Common/Settings.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/A2A\ Esh7an/Common/Views/Cells/EVoucherDetailsCell.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Currency\ Exchange/CurrencyListPresenter.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/AddCard/QuickQuestions/Cell/YesOrNoQuestionCell.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Settings/Change\ Username/ChangeUsernameForm.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/ViewFactory/ViewFactory+Currency.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Commons/Legals/LegalsViewController.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/My\ Profile/ProfileViewController.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Password/ForgetPassword/ForgetPasswordPresenter.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Settings/SecondFactorAuth/SecondFactorAuthFormPresenter.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/TransactionHistory/List/TransactionHistoryListViewController.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Utilities/Extensions/Array.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/EFawateerCom/EFServices/EFServicesListPresenter.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Commons/Cells/TitleCell.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/AddCard/Country/Cell/SelectCountryCell.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Currency\ Exchange/CurrencyListController.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/TransactionHistory/List/TransactionHistoryListProvider.swift (in target 'CashCom' from project 'CashCom')
	SwiftCompile normal arm64 /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Settings/Common/Settings.swift (in target 'CashCom' from project 'CashCom')
	SwiftCompile normal arm64 /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Currency\ Exchange/CurrencyListPresenter.swift (in target 'CashCom' from project 'CashCom')
	SwiftCompile normal arm64 /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Settings/Change\ Username/ChangeUsernameForm.swift (in target 'CashCom' from project 'CashCom')
	SwiftCompile normal arm64 /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/My\ Profile/ProfileViewController.swift (in target 'CashCom' from project 'CashCom')
	SwiftCompile normal arm64 /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Password/ForgetPassword/ForgetPasswordPresenter.swift (in target 'CashCom' from project 'CashCom')
	SwiftCompile normal arm64 /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Settings/SecondFactorAuth/SecondFactorAuthFormPresenter.swift (in target 'CashCom' from project 'CashCom')
	SwiftCompile normal arm64 /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Currency\ Exchange/CurrencyListController.swift (in target 'CashCom' from project 'CashCom')
	SwiftCompile normal arm64 Compiling\ AddCardStepsForm.swift,\ DashboardViewController.swift,\ SettingsListPresenter.swift,\ NoInternetViewController.swift,\ ViewFactory.swift,\ AddCardQuickQuestionsForm.swift,\ ViewFactory+Root.swift,\ ViewFactory+List.swift,\ SwipePreferences+Extension.swift,\ IssueCardPresenter.swift,\ ChangeLanguageProvider.swift,\ LabelViewCell.swift,\ PaymentViewPresenter.swift,\ ViewFactory+Authentication.swift,\ EFServiceCell.swift,\ CardTransferPresenter.swift,\ CardsCell.swift,\ PinCodeViewController.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/AddCard/GetStarted/AddCardStepsForm.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Dashboard/View/DashboardViewController.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Settings/SettingsList/SettingsListPresenter.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Commons/NoInternet/View/NoInternetViewController.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/ViewFactory/ViewFactory.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/AddCard/QuickQuestions/AddCardQuickQuestionsForm.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/ViewFactory/ViewFactory+Root.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/ViewFactory/ViewFactory+List.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Utilities/Extensions/SwipePreferences+Extension.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/IssueCard/IssueCardPresenter.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Settings/Change\ Language/ChangeLanguageProvider.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Settings/ContactUs/Cells/LabelViewCell.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/A2A\ Esh7an/Payment\ View/PaymentViewPresenter.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/ViewFactory/ViewFactory+Authentication.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/EFawateerCom/EFServices/Cell/EFServiceCell.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/CardTransfer/CardTransferPresenter.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/CardTransfer/BetweenMyCards/Cell/CardsCell.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Registration/PinCode/PinCodeViewController.swift (in target 'CashCom' from project 'CashCom')
	SwiftCompile normal arm64 /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Settings/SettingsList/SettingsListPresenter.swift (in target 'CashCom' from project 'CashCom')
	SwiftCompile normal arm64 /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/ViewFactory/ViewFactory+Authentication.swift (in target 'CashCom' from project 'CashCom')
	SwiftCompile normal arm64 /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/CardTransfer/CardTransferPresenter.swift (in target 'CashCom' from project 'CashCom')
	SwiftCompile normal arm64 Compiling\ Notification+Names.swift,\ MenuViewController.swift,\ CollectionLayout.swift,\ Services.swift,\ CardDetailsCell.swift,\ LaunchRoute.swift,\ LandingViewController.swift,\ ViewFactory+Beneficiary.swift,\ EFCategoriesListPresenter.swift,\ TransferToCardsFormPresenter.swift,\ EmptyViewController.swift,\ ViewCardPinPresenter.swift,\ AddCardProvider.swift,\ AuthenticationUserDefault.swift,\ MyCardsViewController.swift,\ AddCardPersonalInfoForm.swift,\ LoginForm.swift,\ EVoucherDetailsController.swift,\ EVoucherItem.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Utilities/Extensions/Notification+Names.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Menu/MenuViewController.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Utilities/Extensions/CollectionLayout.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Services/Services.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Dashboard/View/CardDetailsCell.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Launch/LaunchRoute.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Landing/LandingViewController.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/ViewFactory/ViewFactory+Beneficiary.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/EFawateerCom/EFCategoriesList/EFCategoriesListPresenter.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/CardTransfer/TransferToCards/TransferToCardsFormPresenter.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Empty\ View/EmptyViewController.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/View\ Card\ Pin/ViewCardPinPresenter.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/AddCard/AddCardProvider.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Common/UserDefault/AuthenticationUserDefault.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/MyCards/MyCardsViewController.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/AddCard/PersonalInfo/AddCardPersonalInfoForm.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Login/LoginForm.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/A2A\ Esh7an/EVoucher\ Details/EVoucherDetailsController.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/A2A\ Esh7an/Model/EVoucherItem.swift (in target 'CashCom' from project 'CashCom')
	SwiftCompile normal arm64 /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/CardTransfer/TransferToCards/TransferToCardsFormPresenter.swift (in target 'CashCom' from project 'CashCom')
	SwiftCompile normal arm64 /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Login/LoginForm.swift (in target 'CashCom' from project 'CashCom')
	SwiftCompile normal arm64 /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/A2A\ Esh7an/Model/EVoucherItem.swift (in target 'CashCom' from project 'CashCom')
	SwiftCompile normal arm64 Compiling\ OnboardingPresenter.swift,\ SecondFactorAuthForm.swift,\ NotificationPlugin.swift,\ MobileNumberFormPresenter.swift,\ EVoucherDetailsPresenter.swift,\ CardDetailsViewController.swift,\ GrantAccessForm.swift,\ CardNumberItem.swift,\ BeneficiaryListPresenter.swift,\ FormSectionHeaderCell.swift,\ ExpandableTitleCell.swift,\ CurrencyListProvider.swift,\ ViewFactory+TransactionHistory.swift,\ MainEVoucherProvider.swift,\ EFawateerComForm.swift,\ LandingLanguageViewController.swift,\ MenuSectionCell.swift,\ CardDetailsPresenter.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Onboarding/OnboardingPresenter.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Settings/SecondFactorAuth/SecondFactorAuthForm.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Application/NotificationPlugin.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Registration/MobileNumberForm/MobileNumberFormPresenter.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/A2A\ Esh7an/EVoucher\ Details/EVoucherDetailsPresenter.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/View\ Card\ Details/CardDetailsViewController.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Registration/GrantAccess/GrantAccessForm.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/CardTransfer/BetweenMyCards/CardNumberItem.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Beneficiaries/List/Presenter/BeneficiaryListPresenter.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/AddCard/MoreInfo/Cell/FormSectionHeaderCell.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Commons/Cells/ExpandableTitleCell.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Currency\ Exchange/CurrencyListProvider.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/ViewFactory/ViewFactory+TransactionHistory.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/A2A\ Esh7an/MainEVoucher/MainEVoucherProvider.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/EFawateerCom/EFawateerComForm/EFawateerComForm.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Landing/LandingLanguageViewController.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Menu/Cell/MenuSectionCell.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/View\ Card\ Details/CardDetailsPresenter.swift (in target 'CashCom' from project 'CashCom')
	SwiftCompile normal arm64 /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Registration/MobileNumberForm/MobileNumberFormPresenter.swift (in target 'CashCom' from project 'CashCom')
	SwiftCompile normal arm64 /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/A2A\ Esh7an/EVoucher\ Details/EVoucherDetailsPresenter.swift (in target 'CashCom' from project 'CashCom')
	SwiftCompile normal arm64 /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/View\ Card\ Details/CardDetailsViewController.swift (in target 'CashCom' from project 'CashCom')
	SwiftCompile normal arm64 /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Registration/GrantAccess/GrantAccessForm.swift (in target 'CashCom' from project 'CashCom')
	SwiftCompile normal arm64 /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Beneficiaries/List/Presenter/BeneficiaryListPresenter.swift (in target 'CashCom' from project 'CashCom')
	SwiftCompile normal arm64 Compiling\ ContactUsListProvider.swift,\ SelectableOptionCell.swift,\ LaunchViewController.swift,\ GrantAccessController.swift,\ RegistrationItem.swift,\ OnboardingViewController.swift,\ BeneficiaryForm.swift,\ Regex.swift,\ ViewFactory+Confirmation.swift,\ ViewFactory+EFawateerCom.swift,\ CardNumberCell.swift,\ BeneficiaryListProvider.swift,\ CardAppNavigation.swift,\ DashboardCardCell.swift,\ ValidationRule+Extension.swift,\ IssueCardCell.swift,\ OnboardingItem.swift,\ TransactionHistoryFilterController.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Settings/ContactUs/ContactUsListProvider.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Commons/Cells/SelectableOptionCell.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Launch/LaunchViewController.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Registration/GrantAccess/GrantAccessController.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Registration/Model/RegistrationItem.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Onboarding/OnboardingViewController.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Beneficiaries/Form/BeneficiaryForm.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Utilities/Validations/Regex.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/ViewFactory/ViewFactory+Confirmation.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/ViewFactory/ViewFactory+EFawateerCom.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/CardTransfer/BetweenMyCards/Cell/CardNumberCell.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Beneficiaries/List/Presenter/BeneficiaryListProvider.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/CardAppNavigation.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Dashboard/View/Cell/DashboardCardCell.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Utilities/Validations/ValidationRule+Extension.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/IssueCard/Cell/IssueCardCell.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Onboarding/OnboardingItem.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/TransactionHistory/Filter/TransactionHistoryFilterController.swift (in target 'CashCom' from project 'CashCom')
	SwiftCompile normal arm64 /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Beneficiaries/Form/BeneficiaryForm.swift (in target 'CashCom' from project 'CashCom')
	SwiftCompile normal arm64 Compiling\ EFCategoriesItem.swift,\ ChangeLanguagePresenter.swift,\ DashboardNavigation.swift,\ ForgetPasswordForm.swift,\ EFawateerComFormPresenter.swift,\ LandingLanguagePresenter.swift,\ ViewFactory+Menu.swift,\ MyCardContinerViewController.swift,\ LookupsManager.swift,\ BeneficiaryCell.swift,\ UIImageView+Extension.swift,\ TransferBetweenMyCardsFormPresenter.swift,\ CaptureImagePresenter.swift,\ ChangePasswordPresenter.swift,\ EVoucherNavigation.swift,\ CardItem.swift,\ ConfirmationNavigation.swift,\ AlertItem.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/EFawateerCom/Commons/EFCategoriesItem.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Settings/Change\ Language/ChangeLanguagePresenter.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Dashboard/Commons/DashboardNavigation.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Password/ForgetPassword/ForgetPasswordForm.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/EFawateerCom/EFawateerComForm/EFawateerComFormPresenter.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Landing/LandingLanguagePresenter.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/ViewFactory/ViewFactory+Menu.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/MyCards/Continar/MyCardContinerViewController.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Managers/LookupsManager.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Beneficiaries/List/View/Cells/BeneficiaryCell.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Utilities/Extensions/UIImageView+Extension.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/CardTransfer/BetweenMyCards/TransferBetweenMyCardsFormPresenter.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Commons/CaptureImage/CaptureImagePresenter.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Password/ChangePassword/ChangePasswordPresenter.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/A2A\ Esh7an/Common/Route/EVoucherNavigation.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Dashboard/Model/CardItem.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Commons/ConfirmationRouter/ConfirmationNavigation.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Utilities/Extensions/AlertItem.swift (in target 'CashCom' from project 'CashCom')
	SwiftCompile normal arm64 /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Password/ForgetPassword/ForgetPasswordForm.swift (in target 'CashCom' from project 'CashCom')
	SwiftCompile normal arm64 /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Managers/LookupsManager.swift (in target 'CashCom' from project 'CashCom')
	SwiftCompile normal arm64 /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/CardTransfer/BetweenMyCards/TransferBetweenMyCardsFormPresenter.swift (in target 'CashCom' from project 'CashCom')
	SwiftCompile normal arm64 /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Dashboard/Model/CardItem.swift (in target 'CashCom' from project 'CashCom')
	SwiftCompile normal arm64 Compiling\ NoCardCell.swift,\ AppConfig.swift,\ ServiceNavigation.swift,\ AddCardCountryForm.swift,\ IssueCardProvider.swift,\ EmptyViewPresenter.swift,\ MyCardsPresenter.swift,\ MenuServiceCell.swift,\ ViewFactory+Main.swift,\ SettingsProvider.swift,\ AddCardMoreInfoFormPresenter.swift,\ MyProfilePresenter.swift,\ DashboardServiceCell.swift,\ ViewFactory+Password.swift,\ ResolverManager.swift,\ MobileNumberForm.swift,\ TransferBetweenMyCardsForm.swift,\ EFCategoriesListProvider.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/MyCards/Add\ New\ Card/No\ Card\ Cell/NoCardCell.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Utilities/ConfigurationService/AppConfig.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Services/Route/ServiceNavigation.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/AddCard/Country/AddCardCountryForm.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/IssueCard/IssueCardProvider.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Empty\ View/EmptyViewPresenter.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/MyCards/MyCardsPresenter.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Menu/Cell/MenuServiceCell.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/ViewFactory/ViewFactory+Main.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Settings/SettingsList/SettingsProvider.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/AddCard/MoreInfo/AddCardMoreInfoFormPresenter.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/My\ Profile/MyProfilePresenter.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Dashboard/View/Cell/DashboardServiceCell.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/ViewFactory/ViewFactory+Password.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Managers/ResolverManager.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Registration/MobileNumberForm/MobileNumberForm.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/CardTransfer/BetweenMyCards/TransferBetweenMyCardsForm.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/EFawateerCom/EFCategoriesList/EFCategoriesListProvider.swift (in target 'CashCom' from project 'CashCom')
	SwiftCompile normal arm64 /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Utilities/ConfigurationService/AppConfig.swift (in target 'CashCom' from project 'CashCom')
	SwiftCompile normal arm64 /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/MyCards/MyCardsPresenter.swift (in target 'CashCom' from project 'CashCom')
	SwiftCompile normal arm64 /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Managers/ResolverManager.swift (in target 'CashCom' from project 'CashCom')
	SwiftCompile normal arm64 /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Registration/MobileNumberForm/MobileNumberForm.swift (in target 'CashCom' from project 'CashCom')
	SwiftCompile normal arm64 Compiling\ ViewFactory+EVoucher.swift,\ BeneficiaryListViewController.swift,\ BeneficiaryNavigation.swift,\ EVoucherListPresenter.swift,\ Assets.swift,\ String+Extension.swift,\ AddCardScanIdFormPresenter.swift,\ AddCardStepsFormPresenter.swift,\ LandingPresenter.swift,\ OTPManager.swift,\ ChangeLanguageController.swift,\ EVoucherListController.swift,\ SettingsNavigation.swift,\ DashboardPresenter.swift,\ BeneficiaryCollectionCell.swift,\ ChangePasswordForm.swift,\ EFServiceItem.swift,\ MyCardContinerPresenter.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/ViewFactory/ViewFactory+EVoucher.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Beneficiaries/List/Presenter/BeneficiaryListViewController.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Beneficiaries/Commons/BeneficiaryNavigation.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/A2A\ Esh7an/EVoucher\ List/EVoucherListPresenter.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Resources/Generated/Assets.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Utilities/Extensions/String+Extension.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/AddCard/ScanId/AddCardScanIdFormPresenter.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/AddCard/GetStarted/AddCardStepsFormPresenter.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Landing/LandingPresenter.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Managers/OTPManager.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Settings/Change\ Language/ChangeLanguageController.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/A2A\ Esh7an/EVoucher\ List/EVoucherListController.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Settings/Common/SettingsNavigation.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Dashboard/Presenter/DashboardPresenter.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/CardTransfer/TransferToCards/Cell/BeneficiaryCollectionCell.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Password/ChangePassword/ChangePasswordForm.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/EFawateerCom/EFServices/EFServiceItem.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/MyCards/Continar/MyCardContinerPresenter.swift (in target 'CashCom' from project 'CashCom')
	SwiftCompile normal arm64 /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/A2A\ Esh7an/EVoucher\ List/EVoucherListPresenter.swift (in target 'CashCom' from project 'CashCom')
	SwiftCompile normal arm64 /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Landing/LandingPresenter.swift (in target 'CashCom' from project 'CashCom')
	SwiftCompile normal arm64 /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Dashboard/Presenter/DashboardPresenter.swift (in target 'CashCom' from project 'CashCom')
	SwiftCompile normal arm64 /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Password/ChangePassword/ChangePasswordForm.swift (in target 'CashCom' from project 'CashCom')
	SwiftCompile normal arm64 Compiling\ EVoucherListCell.swift,\ OTPPresenter.swift,\ BeneficiaryFormPresenter.swift,\ LinkCardForm.swift,\ SocialMediaCell.swift,\ Strings.swift,\ PinCodePresenter.swift,\ UserViewCell.swift,\ MainEVoucherCell.swift,\ LanguageItem.swift,\ IssueCardViewController.swift,\ CurrencyItem.swift,\ AddCardScanIdForm.swift,\ ResourcesTypes.swift,\ AppTheme.swift,\ TransactionHistoryItem.swift,\ CardTransferProvider.swift,\ GeneratedAssetSymbols.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/A2A\ Esh7an/Common/Views/Cells/EVoucherListCell.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/OTP/OTPPresenter.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Beneficiaries/Form/BeneficiaryFormPresenter.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/LinkCard/LinkCardForm.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Settings/ContactUs/Cells/SocialMediaCell.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Resources/Generated/Strings.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Registration/PinCode/PinCodePresenter.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Password/ChangePassword/View/UserViewCell.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/A2A\ Esh7an/Common/Views/Cells/MainEVoucherCell.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Settings/Change\ Language/Model/LanguageItem.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/IssueCard/IssueCardViewController.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Currency\ Exchange/Model/CurrencyItem.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/AddCard/ScanId/AddCardScanIdForm.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Resources/ResourcesTypes.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Application/AppTheme.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/TransactionHistory/Commons/TransactionHistoryItem.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/CardTransfer/CardTransferProvider.swift /Users/mohammadfarhan/Library/Developer/Xcode/DerivedData/CashCom-eioijvgdnlelsxazeopoprxoqntz/Build/Intermediates.noindex/ArchiveIntermediates/CashCom\ -\ Staging/IntermediateBuildFilesPath/CashCom.build/Staging-iphoneos/CashCom.build/DerivedSources/GeneratedAssetSymbols.swift (in target 'CashCom' from project 'CashCom')
	SwiftCompile normal arm64 /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/OTP/OTPPresenter.swift (in target 'CashCom' from project 'CashCom')
	SwiftCompile normal arm64 /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Beneficiaries/Form/BeneficiaryFormPresenter.swift (in target 'CashCom' from project 'CashCom')
	SwiftCompile normal arm64 /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Registration/PinCode/PinCodePresenter.swift (in target 'CashCom' from project 'CashCom')
	SwiftCompile normal arm64 /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Currency\ Exchange/Model/CurrencyItem.swift (in target 'CashCom' from project 'CashCom')
	SwiftCompile normal arm64 /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/TransactionHistory/Commons/TransactionHistoryItem.swift (in target 'CashCom' from project 'CashCom')
	SwiftCompile normal arm64 Compiling\ CurrencyExchangeCell.swift,\ MainEVoucherContainerCell.swift,\ TransactionHistoryFilterForm.swift,\ CardKeyValueCell.swift,\ EVoucherDetailsProvider.swift,\ CardScanner.swift,\ Environment.swift,\ LinkCardFormPresenter.swift,\ AddCardPersonalInfoFormPresenter.swift,\ BeneficiaryListCell.swift,\ AddNewCardProvider.swift,\ CaptureImageViewController.swift,\ AppDelegate.swift,\ PersonalDetailsForm.swift,\ LaunchPresenter.swift,\ TransactionHistoryCell.swift,\ CashcomInfoCell.swift,\ EFawateerComAppNavigation.swift,\ FirebasePlugin.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Currency\ Exchange/Views/Cells/CurrencyExchangeCell.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/A2A\ Esh7an/Common/Views/Cells/MainEVoucherContainerCell.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/TransactionHistory/Filter/TransactionHistoryFilterForm.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/MyCards/Cell/CardKeyValueCell.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/A2A\ Esh7an/EVoucher\ Details/EVoucherDetailsProvider.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Commons/CardScanner/CardScanner.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/Configurations/Environment.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/LinkCard/LinkCardFormPresenter.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/AddCard/PersonalInfo/AddCardPersonalInfoFormPresenter.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/CardTransfer/TransferToCards/Cell/BeneficiaryListCell.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/MyCards/Add\ New\ Card/AddNewCardProvider.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Commons/CaptureImage/CaptureImageViewController.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Application/AppDelegate.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Registration/PersonalDetails/PersonalDetailsForm.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Launch/LaunchPresenter.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/TransactionHistory/List/Cell/TransactionHistoryCell.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/IssueCard/Cell/CashcomInfoCell.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/EFawateerCom/Commons/EFawateerComAppNavigation.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Application/FirebasePlugin.swift (in target 'CashCom' from project 'CashCom')
	SwiftCompile normal arm64 /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/TransactionHistory/Filter/TransactionHistoryFilterForm.swift (in target 'CashCom' from project 'CashCom')
	SwiftCompile normal arm64 /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/LinkCard/LinkCardFormPresenter.swift (in target 'CashCom' from project 'CashCom')
	SwiftCompile normal arm64 /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Registration/PersonalDetails/PersonalDetailsForm.swift (in target 'CashCom' from project 'CashCom')
	SwiftCompile normal arm64 /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Launch/LaunchPresenter.swift (in target 'CashCom' from project 'CashCom')
	SwiftCompile normal arm64 Compiling\ LoginViewController.swift,\ EVoucherListProvider.swift,\ PasswordNavigation.swift,\ AuthenticationAction.swift,\ PaymentViewController.swift,\ MyCardsProvider.swift,\ TransactionHistoryFilterFormPresenter.swift,\ GrantAccessFormPresenter.swift,\ AddNewCardPresenter.swift,\ IssueCardItem.swift,\ ContactUsSectionItem.swift,\ AddCardMoreInfoForm.swift,\ BeneficiaryItem.swift,\ MainEVoucherPresenter.swift,\ AuthenticationNavigation.swift,\ TransferToCardsForm.swift,\ LegalsType.swift,\ ContactUsCell.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Login/LoginViewController.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/A2A\ Esh7an/EVoucher\ List/EVoucherListProvider.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Password/Common/PasswordNavigation.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Common/Action/AuthenticationAction.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/A2A\ Esh7an/Payment\ View/PaymentViewController.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/MyCards/MyCardsProvider.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/TransactionHistory/Filter/TransactionHistoryFilterFormPresenter.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Registration/GrantAccess/GrantAccessFormPresenter.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/MyCards/Add\ New\ Card/AddNewCardPresenter.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/IssueCard/Model/IssueCardItem.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Settings/ContactUs/Model/ContactUsSectionItem.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/AddCard/MoreInfo/AddCardMoreInfoForm.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Beneficiaries/List/Model/BeneficiaryItem.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/A2A\ Esh7an/MainEVoucher/MainEVoucherPresenter.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Common/Router/AuthenticationNavigation.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/CardTransfer/TransferToCards/TransferToCardsForm.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Commons/Legals/LegalsType.swift /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Settings/ContactUs/Cells/ContactUsCell.swift (in target 'CashCom' from project 'CashCom')
	SwiftCompile normal arm64 /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Login/LoginViewController.swift (in target 'CashCom' from project 'CashCom')
	SwiftCompile normal arm64 /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/TransactionHistory/Filter/TransactionHistoryFilterFormPresenter.swift (in target 'CashCom' from project 'CashCom')
	SwiftCompile normal arm64 /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Registration/GrantAccess/GrantAccessFormPresenter.swift (in target 'CashCom' from project 'CashCom')
	SwiftCompile normal arm64 /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Beneficiaries/List/Model/BeneficiaryItem.swift (in target 'CashCom' from project 'CashCom')
	SwiftCompile normal arm64 /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/A2A\ Esh7an/MainEVoucher/MainEVoucherPresenter.swift (in target 'CashCom' from project 'CashCom')
	SwiftCompile normal arm64 /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Authentication/Common/Router/AuthenticationNavigation.swift (in target 'CashCom' from project 'CashCom')
	SwiftCompile normal arm64 /Users/mohammadfarhan/Desktop/iOS-Projects/CashCom-iOS/CashCom/Flows/Card/CardTransfer/TransferToCards/TransferToCardsForm.swift (in target 'CashCom' from project 'CashCom')
	Copy /Users/mohammadfarhan/Library/Developer/Xcode/DerivedData/CashCom-eioijvgdnlelsxazeopoprxoqntz/Build/Intermediates.noindex/ArchiveIntermediates/CashCom\ -\ Staging/BuildProductsPath/Staging-iphoneos/CashCom.swiftmodule/arm64-apple-ios.swiftdoc /Users/mohammadfarhan/Library/Developer/Xcode/DerivedData/CashCom-eioijvgdnlelsxazeopoprxoqntz/Build/Intermediates.noindex/ArchiveIntermediates/CashCom\ -\ Staging/IntermediateBuildFilesPath/CashCom.build/Staging-iphoneos/CashCom.build/Objects-normal/arm64/CashCom.swiftdoc (in target 'CashCom' from project 'CashCom')
	Copy /Users/mohammadfarhan/Library/Developer/Xcode/DerivedData/CashCom-eioijvgdnlelsxazeopoprxoqntz/Build/Intermediates.noindex/ArchiveIntermediates/CashCom\ -\ Staging/BuildProductsPath/Staging-iphoneos/CashCom.swiftmodule/arm64-apple-ios.swiftmodule /Users/mohammadfarhan/Library/Developer/Xcode/DerivedData/CashCom-eioijvgdnlelsxazeopoprxoqntz/Build/Intermediates.noindex/ArchiveIntermediates/CashCom\ -\ Staging/IntermediateBuildFilesPath/CashCom.build/Staging-iphoneos/CashCom.build/Objects-normal/arm64/CashCom.swiftmodule (in target 'CashCom' from project 'CashCom')
	Copy /Users/mohammadfarhan/Library/Developer/Xcode/DerivedData/CashCom-eioijvgdnlelsxazeopoprxoqntz/Build/Intermediates.noindex/ArchiveIntermediates/CashCom\ -\ Staging/BuildProductsPath/Staging-iphoneos/CashCom.swiftmodule/arm64-apple-ios.abi.json /Users/mohammadfarhan/Library/Developer/Xcode/DerivedData/CashCom-eioijvgdnlelsxazeopoprxoqntz/Build/Intermediates.noindex/ArchiveIntermediates/CashCom\ -\ Staging/IntermediateBuildFilesPath/CashCom.build/Staging-iphoneos/CashCom.build/Objects-normal/arm64/CashCom.abi.json (in target 'CashCom' from project 'CashCom')
(69 failures)
[17:12:21]: Exit status: 65

@lacostej
Copy link
Collaborator

Hello, thanks for submitting your issue. It seems that your project does not compile. That's most probably not an error within fastlane. Have you checked if all your code is available in your source control? Closing this for now.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants