From e2337a233dca6cff8f6684c1ace228b4ef1ca517 Mon Sep 17 00:00:00 2001 From: jstorm31 Date: Wed, 2 Oct 2019 21:40:20 +0200 Subject: [PATCH] fix embeded framework --- Cartfile | 1 - Grades.xcodeproj/project.pbxproj | 2 -- Grades/View/Cell/DynamicValueCell.swift | 1 - Grades/ViewModel/SettingsViewModel.swift | 1 - 4 files changed, 5 deletions(-) diff --git a/Cartfile b/Cartfile index 216b8d8..a2957b8 100644 --- a/Cartfile +++ b/Cartfile @@ -1,6 +1,5 @@ github "SnapKit/SnapKit" ~> 5.0.1 github "OAuthSwift/OAuthSwift" ~> 1.2.0 -github "ReactiveX/RxSwift" ~> 5.0.0 github "RxSwiftCommunity/RxDataSources" ~> 4.0.1 github "RxSwiftCommunity/Action" ~> 4.0.1 github "RxSwiftCommunity/RxBiBinding" diff --git a/Grades.xcodeproj/project.pbxproj b/Grades.xcodeproj/project.pbxproj index 6639360..df37706 100644 --- a/Grades.xcodeproj/project.pbxproj +++ b/Grades.xcodeproj/project.pbxproj @@ -424,7 +424,6 @@ 96C61EE3233CB9E200EA0FB2 /* SwitchCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SwitchCell.swift; sourceTree = ""; }; 96C61EE5233CBB7E00EA0FB2 /* UIPrimarySwitch.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UIPrimarySwitch.swift; sourceTree = ""; }; 96C61EE7233CBD8E00EA0FB2 /* PickerCellViewModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PickerCellViewModel.swift; sourceTree = ""; }; - 96C61EEF233CE9E600EA0FB2 /* RxBiBinding.framework.dSYM */ = {isa = PBXFileReference; lastKnownFileType = wrapper.dsym; name = RxBiBinding.framework.dSYM; path = Carthage/Build/iOS/RxBiBinding.framework.dSYM; sourceTree = ""; }; 96C61EF1233CE9F800EA0FB2 /* RxBiBinding.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = RxBiBinding.framework; path = Carthage/Build/iOS/RxBiBinding.framework; sourceTree = ""; }; 96C61EF3233CEA9E00EA0FB2 /* SwitchCellViewModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SwitchCellViewModel.swift; sourceTree = ""; }; 96C61EF5233CF3C800EA0FB2 /* RxRelay.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = RxRelay.framework; path = Carthage/Build/iOS/RxRelay.framework; sourceTree = ""; }; @@ -689,7 +688,6 @@ children = ( 96C61EF5233CF3C800EA0FB2 /* RxRelay.framework */, 96C61EF1233CE9F800EA0FB2 /* RxBiBinding.framework */, - 96C61EEF233CE9E600EA0FB2 /* RxBiBinding.framework.dSYM */, 962A67A3229521B9008CF643 /* Sentry.framework */, 968EC1D22282DC1100241F51 /* SwiftKeychainWrapper.framework */, 96F220DE227B67670078AD2A /* Swifter.framework */, diff --git a/Grades/View/Cell/DynamicValueCell.swift b/Grades/View/Cell/DynamicValueCell.swift index d012823..f46cd4c 100644 --- a/Grades/View/Cell/DynamicValueCell.swift +++ b/Grades/View/Cell/DynamicValueCell.swift @@ -68,7 +68,6 @@ final class DynamicValueCell: BasicCell, ConfigurableCell { private func bindOutput() { valueTextField.rx.text - .debug() .skip(1) .unwrap() .debounce(.seconds(1), scheduler: MainScheduler.instance) diff --git a/Grades/ViewModel/SettingsViewModel.swift b/Grades/ViewModel/SettingsViewModel.swift index f047ea8..a268ba2 100644 --- a/Grades/ViewModel/SettingsViewModel.swift +++ b/Grades/ViewModel/SettingsViewModel.swift @@ -51,7 +51,6 @@ final class SettingsViewModel: TablePickerViewModel { UserDefaults.standard.removeObject(forKey: Constants.courseFilters) return self.dependencies.pushNotificationsService.unregisterUserFromDevice() - .debug() .do(onNext: { [weak self] in self?.dependencies.coordinator.popToRoot(animated: true) }, onError: { [weak self] error in