Showing
4 changed files
with
16 additions
and
16 deletions
| ... | @@ -15,7 +15,7 @@ Pod::Spec.new do |spec| | ... | @@ -15,7 +15,7 @@ Pod::Spec.new do |spec| |
| 15 | 15 | ||
| 16 | spec.author = { "billy" => "skourasbl@gmail.com" } | 16 | spec.author = { "billy" => "skourasbl@gmail.com" } |
| 17 | 17 | ||
| 18 | - spec.platform = :ios, "13.0" | 18 | + spec.platform = :ios, "11.0" |
| 19 | 19 | ||
| 20 | spec.source = { :git => "https://git.warp.ly/open-source/warply_sdk_framework.git", :tag => "0.2.50" } | 20 | spec.source = { :git => "https://git.warp.ly/open-source/warply_sdk_framework.git", :tag => "0.2.50" } |
| 21 | # spec.public_header_files = "SwiftWarplyFramework.framework/Headers/*.h" | 21 | # spec.public_header_files = "SwiftWarplyFramework.framework/Headers/*.h" | ... | ... |
| ... | @@ -1238,7 +1238,7 @@ | ... | @@ -1238,7 +1238,7 @@ |
| 1238 | INFOPLIST_KEY_NSHumanReadableCopyright = ""; | 1238 | INFOPLIST_KEY_NSHumanReadableCopyright = ""; |
| 1239 | INFOPLIST_KEY_NSMotionUsageDescription = "We are using motion usage in order to track your step count."; | 1239 | INFOPLIST_KEY_NSMotionUsageDescription = "We are using motion usage in order to track your step count."; |
| 1240 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; | 1240 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; |
| 1241 | - IPHONEOS_DEPLOYMENT_TARGET = 13.0; | 1241 | + IPHONEOS_DEPLOYMENT_TARGET = 11.0; |
| 1242 | LD_RUNPATH_SEARCH_PATHS = ( | 1242 | LD_RUNPATH_SEARCH_PATHS = ( |
| 1243 | "$(inherited)", | 1243 | "$(inherited)", |
| 1244 | "@executable_path/Frameworks", | 1244 | "@executable_path/Frameworks", |
| ... | @@ -1276,7 +1276,7 @@ | ... | @@ -1276,7 +1276,7 @@ |
| 1276 | INFOPLIST_KEY_NSHumanReadableCopyright = ""; | 1276 | INFOPLIST_KEY_NSHumanReadableCopyright = ""; |
| 1277 | INFOPLIST_KEY_NSMotionUsageDescription = "We are using motion usage in order to track your step count."; | 1277 | INFOPLIST_KEY_NSMotionUsageDescription = "We are using motion usage in order to track your step count."; |
| 1278 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; | 1278 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; |
| 1279 | - IPHONEOS_DEPLOYMENT_TARGET = 13.0; | 1279 | + IPHONEOS_DEPLOYMENT_TARGET = 11.0; |
| 1280 | LD_RUNPATH_SEARCH_PATHS = ( | 1280 | LD_RUNPATH_SEARCH_PATHS = ( |
| 1281 | "$(inherited)", | 1281 | "$(inherited)", |
| 1282 | "@executable_path/Frameworks", | 1282 | "@executable_path/Frameworks", | ... | ... |
No preview for this file type
| ... | @@ -25,19 +25,19 @@ import UIKit | ... | @@ -25,19 +25,19 @@ import UIKit |
| 25 | 25 | ||
| 26 | // SwiftEventBus.onBackgroundThread(self, name: "unified_coupons_fetched") { result in | 26 | // SwiftEventBus.onBackgroundThread(self, name: "unified_coupons_fetched") { result in |
| 27 | 27 | ||
| 28 | - DispatchQueue.main.async { | 28 | + // DispatchQueue.main.async { |
| 29 | - self.unifiedCoupons = swiftApi().getUnifiedCouponList() | 29 | + // self.unifiedCoupons = swiftApi().getUnifiedCouponList() |
| 30 | - self.tableView.reloadData() | 30 | + // self.tableView.reloadData() |
| 31 | - | 31 | + |
| 32 | - if (self.unifiedCoupons.count == 0) { | 32 | + // if (self.unifiedCoupons.count == 0) { |
| 33 | - self.emptyView.isHidden = false | 33 | + // self.emptyView.isHidden = false |
| 34 | - self.emptyViewHeight.constant = self.emptyView.intrinsicContentSize.height | 34 | + // self.emptyViewHeight.constant = self.emptyView.intrinsicContentSize.height |
| 35 | - } else { | 35 | + // } else { |
| 36 | - self.emptyView.isHidden = true | 36 | + // self.emptyView.isHidden = true |
| 37 | - self.emptyViewHeight.constant = 0 | 37 | + // self.emptyViewHeight.constant = 0 |
| 38 | - } | 38 | + // } |
| 39 | - } | 39 | + // } |
| 40 | - } | 40 | + // } |
| 41 | 41 | ||
| 42 | setBackButton() | 42 | setBackButton() |
| 43 | setNavigationTitle("SUPERMARKET DEALS") | 43 | setNavigationTitle("SUPERMARKET DEALS") | ... | ... |
-
Please register or login to post a comment