Manos Chorianopoulos

test ios min version

......@@ -15,7 +15,7 @@ Pod::Spec.new do |spec|
spec.author = { "billy" => "skourasbl@gmail.com" }
spec.platform = :ios, "13.0"
spec.platform = :ios, "11.0"
spec.source = { :git => "https://git.warp.ly/open-source/warply_sdk_framework.git", :tag => "0.2.50" }
# spec.public_header_files = "SwiftWarplyFramework.framework/Headers/*.h"
......
......@@ -1238,7 +1238,7 @@
INFOPLIST_KEY_NSHumanReadableCopyright = "";
INFOPLIST_KEY_NSMotionUsageDescription = "We are using motion usage in order to track your step count.";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
......@@ -1276,7 +1276,7 @@
INFOPLIST_KEY_NSHumanReadableCopyright = "";
INFOPLIST_KEY_NSMotionUsageDescription = "We are using motion usage in order to track your step count.";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
......
......@@ -25,19 +25,19 @@ import UIKit
// SwiftEventBus.onBackgroundThread(self, name: "unified_coupons_fetched") { result in
DispatchQueue.main.async {
self.unifiedCoupons = swiftApi().getUnifiedCouponList()
self.tableView.reloadData()
// DispatchQueue.main.async {
// self.unifiedCoupons = swiftApi().getUnifiedCouponList()
// self.tableView.reloadData()
if (self.unifiedCoupons.count == 0) {
self.emptyView.isHidden = false
self.emptyViewHeight.constant = self.emptyView.intrinsicContentSize.height
} else {
self.emptyView.isHidden = true
self.emptyViewHeight.constant = 0
}
}
}
// if (self.unifiedCoupons.count == 0) {
// self.emptyView.isHidden = false
// self.emptyViewHeight.constant = self.emptyView.intrinsicContentSize.height
// } else {
// self.emptyView.isHidden = true
// self.emptyViewHeight.constant = 0
// }
// }
// }
setBackButton()
setNavigationTitle("SUPERMARKET DEALS")
......