diff --git a/SynchronyFinancial/SynchronyFinancial WatchKit App/Base.lproj/Interface.storyboard b/SynchronyFinancial/SynchronyFinancial WatchKit App/Base.lproj/Interface.storyboard
index 53fc2af..7278bab 100644
--- a/SynchronyFinancial/SynchronyFinancial WatchKit App/Base.lproj/Interface.storyboard
+++ b/SynchronyFinancial/SynchronyFinancial WatchKit App/Base.lproj/Interface.storyboard
@@ -52,12 +52,38 @@
-
+
+
+
+
+
+
+
+
+
+
+
+
@@ -90,13 +116,95 @@
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/SynchronyFinancial/SynchronyFinancial WatchKit Extension/AccPayEndInterfaceController.swift b/SynchronyFinancial/SynchronyFinancial WatchKit Extension/AccPayEndInterfaceController.swift
new file mode 100644
index 0000000..2170e44
--- /dev/null
+++ b/SynchronyFinancial/SynchronyFinancial WatchKit Extension/AccPayEndInterfaceController.swift
@@ -0,0 +1,25 @@
+//
+// AccPayEndInterfaceController.swift
+// SynchronyFinancial
+//
+// Created by Monday on 2019/02/27.
+// Copyright © 2019 Alan Maynard. All rights reserved.
+//
+
+import Foundation
+import WatchKit
+class AccPayEndInterfaceController: WKInterfaceController {
+
+ @IBAction func returnButton() {
+ }
+ override func willActivate() {
+ // This method is called when watch view controller is about to be visible to user
+ super.willActivate()
+ }
+
+ override func didDeactivate() {
+ // This method is called when watch view controller is no longer visible
+ super.didDeactivate()
+ }
+
+}
diff --git a/SynchronyFinancial/SynchronyFinancial WatchKit Extension/AccPaym1InterfaceController.swift b/SynchronyFinancial/SynchronyFinancial WatchKit Extension/AccPaym1InterfaceController.swift
new file mode 100644
index 0000000..6b4836c
--- /dev/null
+++ b/SynchronyFinancial/SynchronyFinancial WatchKit Extension/AccPaym1InterfaceController.swift
@@ -0,0 +1,23 @@
+//
+// AccPaym1InterfaceController.swift
+// SynchronyFinancial
+//
+// Created by Monday on 2019/02/27.
+// Copyright © 2019 Alan Maynard. All rights reserved.
+//
+
+import Foundation
+import WatchKit
+class AccPaym1InterfaceController: WKInterfaceController {
+
+ override func willActivate() {
+ // This method is called when watch view controller is about to be visible to user
+ super.willActivate()
+ }
+
+ override func didDeactivate() {
+ // This method is called when watch view controller is no longer visible
+ super.didDeactivate()
+ }
+
+}
diff --git a/SynchronyFinancial/SynchronyFinancial WatchKit Extension/AccPaym2InterfaceController.swift b/SynchronyFinancial/SynchronyFinancial WatchKit Extension/AccPaym2InterfaceController.swift
new file mode 100644
index 0000000..a1018f3
--- /dev/null
+++ b/SynchronyFinancial/SynchronyFinancial WatchKit Extension/AccPaym2InterfaceController.swift
@@ -0,0 +1,27 @@
+//
+// AccPaym2InterfaceController.swift
+// SynchronyFinancial WatchKit Extension
+//
+// Created by Monday on 2019/02/27.
+// Copyright © 2019 Alan Maynard. All rights reserved.
+//
+
+import Foundation
+import WatchKit
+class AccPaym2InterfaceController: WKInterfaceController {
+
+ @IBOutlet weak var acctName: WKInterfaceLabel!
+ @IBOutlet weak var datePay: WKInterfaceLabel!
+ @IBAction func paymentButton2() {
+ }
+ override func willActivate() {
+ // This method is called when watch view controller is about to be visible to user
+ super.willActivate()
+ }
+
+ override func didDeactivate() {
+ // This method is called when watch view controller is no longer visible
+ super.didDeactivate()
+ }
+
+}
diff --git a/SynchronyFinancial/SynchronyFinancial WatchKit Extension/AccountDetailCell.swift b/SynchronyFinancial/SynchronyFinancial WatchKit Extension/AccountDetailCell.swift
new file mode 100644
index 0000000..e4a7ec3
--- /dev/null
+++ b/SynchronyFinancial/SynchronyFinancial WatchKit Extension/AccountDetailCell.swift
@@ -0,0 +1,16 @@
+//
+// AccountDetailCell.swift
+// SynchronyFinancial WatchKit Extension
+//
+// Created by Monday on 2019/02/19.
+// Copyright © 2019 Alan Maynard. All rights reserved.
+//
+import WatchKit
+import Foundation
+class AccountDetailCell: NSObject {
+ @IBOutlet weak var Label: WKInterfaceLabel!
+
+ @IBOutlet weak var payNowButton: WKInterfaceButton!
+
+
+}
diff --git a/SynchronyFinancial/SynchronyFinancial WatchKit Extension/AccountPaymentInterfaceController.swift b/SynchronyFinancial/SynchronyFinancial WatchKit Extension/AccountPaymentInterfaceController.swift
new file mode 100644
index 0000000..a8d3dfb
--- /dev/null
+++ b/SynchronyFinancial/SynchronyFinancial WatchKit Extension/AccountPaymentInterfaceController.swift
@@ -0,0 +1,31 @@
+//
+// AccountPaymentInterfaceController.swift
+// SynchronyFinancial WatchKit Extension
+//
+// Created by Monday on 2019/02/27.
+// Copyright © 2019 Alan Maynard. All rights reserved.
+//
+
+import Foundation
+import WatchKit
+class AccountPaymentInterfaceController: WKInterfaceController {
+
+
+ @IBOutlet weak var pay1label: WKInterfaceLabel!
+
+ @IBAction func payButton() {
+
+ }
+
+ override func willActivate() {
+ // This method is called when watch view controller is about to be visible to user
+ super.willActivate()
+ }
+
+ override func didDeactivate() {
+ // This method is called when watch view controller is no longer visible
+ super.didDeactivate()
+ }
+
+}
+
diff --git a/SynchronyFinancial/SynchronyFinancial WatchKit Extension/AccountTableInterfaceController.swift b/SynchronyFinancial/SynchronyFinancial WatchKit Extension/AccountTableInterfaceController.swift
index 5aff266..a30fa7b 100644
--- a/SynchronyFinancial/SynchronyFinancial WatchKit Extension/AccountTableInterfaceController.swift
+++ b/SynchronyFinancial/SynchronyFinancial WatchKit Extension/AccountTableInterfaceController.swift
@@ -18,7 +18,8 @@ class AccountTableInterfaceController: WKInterfaceController {
accountTable.setNumberOfRows(5, withRowType: "account")
// Configure interface objects here.
}
-
+
+
override func willActivate() {
// This method is called when watch view controller is about to be visible to user
super.willActivate()
diff --git a/SynchronyFinancial/SynchronyFinancial WatchKit Extension/Assets.xcassets/Complication.complicationset/Circular.imageset/Contents.json b/SynchronyFinancial/SynchronyFinancial WatchKit Extension/Assets.xcassets/Complication.complicationset/Circular.imageset/Contents.json
index f84499b..aefef29 100644
--- a/SynchronyFinancial/SynchronyFinancial WatchKit Extension/Assets.xcassets/Complication.complicationset/Circular.imageset/Contents.json
+++ b/SynchronyFinancial/SynchronyFinancial WatchKit Extension/Assets.xcassets/Complication.complicationset/Circular.imageset/Contents.json
@@ -5,10 +5,20 @@
"scale" : "2x",
"screen-width" : "<=145"
},
+ {
+ "idiom" : "watch",
+ "scale" : "2x",
+ "screen-width" : ">161"
+ },
{
"idiom" : "watch",
"scale" : "2x",
"screen-width" : ">145"
+ },
+ {
+ "idiom" : "watch",
+ "scale" : "2x",
+ "screen-width" : ">183"
}
],
"info" : {
diff --git a/SynchronyFinancial/SynchronyFinancial WatchKit Extension/Assets.xcassets/Complication.complicationset/Extra Large.imageset/Contents.json b/SynchronyFinancial/SynchronyFinancial WatchKit Extension/Assets.xcassets/Complication.complicationset/Extra Large.imageset/Contents.json
index f84499b..aefef29 100644
--- a/SynchronyFinancial/SynchronyFinancial WatchKit Extension/Assets.xcassets/Complication.complicationset/Extra Large.imageset/Contents.json
+++ b/SynchronyFinancial/SynchronyFinancial WatchKit Extension/Assets.xcassets/Complication.complicationset/Extra Large.imageset/Contents.json
@@ -5,10 +5,20 @@
"scale" : "2x",
"screen-width" : "<=145"
},
+ {
+ "idiom" : "watch",
+ "scale" : "2x",
+ "screen-width" : ">161"
+ },
{
"idiom" : "watch",
"scale" : "2x",
"screen-width" : ">145"
+ },
+ {
+ "idiom" : "watch",
+ "scale" : "2x",
+ "screen-width" : ">183"
}
],
"info" : {
diff --git a/SynchronyFinancial/SynchronyFinancial WatchKit Extension/Assets.xcassets/Complication.complicationset/Graphic Bezel.imageset/Contents.json b/SynchronyFinancial/SynchronyFinancial WatchKit Extension/Assets.xcassets/Complication.complicationset/Graphic Bezel.imageset/Contents.json
index f84499b..aefef29 100644
--- a/SynchronyFinancial/SynchronyFinancial WatchKit Extension/Assets.xcassets/Complication.complicationset/Graphic Bezel.imageset/Contents.json
+++ b/SynchronyFinancial/SynchronyFinancial WatchKit Extension/Assets.xcassets/Complication.complicationset/Graphic Bezel.imageset/Contents.json
@@ -5,10 +5,20 @@
"scale" : "2x",
"screen-width" : "<=145"
},
+ {
+ "idiom" : "watch",
+ "scale" : "2x",
+ "screen-width" : ">161"
+ },
{
"idiom" : "watch",
"scale" : "2x",
"screen-width" : ">145"
+ },
+ {
+ "idiom" : "watch",
+ "scale" : "2x",
+ "screen-width" : ">183"
}
],
"info" : {
diff --git a/SynchronyFinancial/SynchronyFinancial WatchKit Extension/Assets.xcassets/Complication.complicationset/Graphic Circular.imageset/Contents.json b/SynchronyFinancial/SynchronyFinancial WatchKit Extension/Assets.xcassets/Complication.complicationset/Graphic Circular.imageset/Contents.json
index f84499b..aefef29 100644
--- a/SynchronyFinancial/SynchronyFinancial WatchKit Extension/Assets.xcassets/Complication.complicationset/Graphic Circular.imageset/Contents.json
+++ b/SynchronyFinancial/SynchronyFinancial WatchKit Extension/Assets.xcassets/Complication.complicationset/Graphic Circular.imageset/Contents.json
@@ -5,10 +5,20 @@
"scale" : "2x",
"screen-width" : "<=145"
},
+ {
+ "idiom" : "watch",
+ "scale" : "2x",
+ "screen-width" : ">161"
+ },
{
"idiom" : "watch",
"scale" : "2x",
"screen-width" : ">145"
+ },
+ {
+ "idiom" : "watch",
+ "scale" : "2x",
+ "screen-width" : ">183"
}
],
"info" : {
diff --git a/SynchronyFinancial/SynchronyFinancial WatchKit Extension/Assets.xcassets/Complication.complicationset/Graphic Corner.imageset/Contents.json b/SynchronyFinancial/SynchronyFinancial WatchKit Extension/Assets.xcassets/Complication.complicationset/Graphic Corner.imageset/Contents.json
index f84499b..aefef29 100644
--- a/SynchronyFinancial/SynchronyFinancial WatchKit Extension/Assets.xcassets/Complication.complicationset/Graphic Corner.imageset/Contents.json
+++ b/SynchronyFinancial/SynchronyFinancial WatchKit Extension/Assets.xcassets/Complication.complicationset/Graphic Corner.imageset/Contents.json
@@ -5,10 +5,20 @@
"scale" : "2x",
"screen-width" : "<=145"
},
+ {
+ "idiom" : "watch",
+ "scale" : "2x",
+ "screen-width" : ">161"
+ },
{
"idiom" : "watch",
"scale" : "2x",
"screen-width" : ">145"
+ },
+ {
+ "idiom" : "watch",
+ "scale" : "2x",
+ "screen-width" : ">183"
}
],
"info" : {
diff --git a/SynchronyFinancial/SynchronyFinancial WatchKit Extension/Assets.xcassets/Complication.complicationset/Graphic Large Rectangular.imageset/Contents.json b/SynchronyFinancial/SynchronyFinancial WatchKit Extension/Assets.xcassets/Complication.complicationset/Graphic Large Rectangular.imageset/Contents.json
index f84499b..aefef29 100644
--- a/SynchronyFinancial/SynchronyFinancial WatchKit Extension/Assets.xcassets/Complication.complicationset/Graphic Large Rectangular.imageset/Contents.json
+++ b/SynchronyFinancial/SynchronyFinancial WatchKit Extension/Assets.xcassets/Complication.complicationset/Graphic Large Rectangular.imageset/Contents.json
@@ -5,10 +5,20 @@
"scale" : "2x",
"screen-width" : "<=145"
},
+ {
+ "idiom" : "watch",
+ "scale" : "2x",
+ "screen-width" : ">161"
+ },
{
"idiom" : "watch",
"scale" : "2x",
"screen-width" : ">145"
+ },
+ {
+ "idiom" : "watch",
+ "scale" : "2x",
+ "screen-width" : ">183"
}
],
"info" : {
diff --git a/SynchronyFinancial/SynchronyFinancial WatchKit Extension/Assets.xcassets/Complication.complicationset/Modular.imageset/Contents.json b/SynchronyFinancial/SynchronyFinancial WatchKit Extension/Assets.xcassets/Complication.complicationset/Modular.imageset/Contents.json
index f84499b..aefef29 100644
--- a/SynchronyFinancial/SynchronyFinancial WatchKit Extension/Assets.xcassets/Complication.complicationset/Modular.imageset/Contents.json
+++ b/SynchronyFinancial/SynchronyFinancial WatchKit Extension/Assets.xcassets/Complication.complicationset/Modular.imageset/Contents.json
@@ -5,10 +5,20 @@
"scale" : "2x",
"screen-width" : "<=145"
},
+ {
+ "idiom" : "watch",
+ "scale" : "2x",
+ "screen-width" : ">161"
+ },
{
"idiom" : "watch",
"scale" : "2x",
"screen-width" : ">145"
+ },
+ {
+ "idiom" : "watch",
+ "scale" : "2x",
+ "screen-width" : ">183"
}
],
"info" : {
diff --git a/SynchronyFinancial/SynchronyFinancial WatchKit Extension/Assets.xcassets/Complication.complicationset/Utilitarian.imageset/Contents.json b/SynchronyFinancial/SynchronyFinancial WatchKit Extension/Assets.xcassets/Complication.complicationset/Utilitarian.imageset/Contents.json
index f84499b..aefef29 100644
--- a/SynchronyFinancial/SynchronyFinancial WatchKit Extension/Assets.xcassets/Complication.complicationset/Utilitarian.imageset/Contents.json
+++ b/SynchronyFinancial/SynchronyFinancial WatchKit Extension/Assets.xcassets/Complication.complicationset/Utilitarian.imageset/Contents.json
@@ -5,10 +5,20 @@
"scale" : "2x",
"screen-width" : "<=145"
},
+ {
+ "idiom" : "watch",
+ "scale" : "2x",
+ "screen-width" : ">161"
+ },
{
"idiom" : "watch",
"scale" : "2x",
"screen-width" : ">145"
+ },
+ {
+ "idiom" : "watch",
+ "scale" : "2x",
+ "screen-width" : ">183"
}
],
"info" : {
diff --git a/SynchronyFinancial/SynchronyFinancial WatchKit Extension/PaymentCell.swift b/SynchronyFinancial/SynchronyFinancial WatchKit Extension/PaymentCell.swift
new file mode 100644
index 0000000..235778d
--- /dev/null
+++ b/SynchronyFinancial/SynchronyFinancial WatchKit Extension/PaymentCell.swift
@@ -0,0 +1,13 @@
+//
+// Payment.swift
+// SynchronyFinancial WatchKit Extension
+//
+// Created by Monday on 2019/02/27.
+// Copyright © 2019 Alan Maynard. All rights reserved.
+//
+
+import Foundation
+import WatchKit
+class payment: NSObject {
+
+}
diff --git a/SynchronyFinancial/SynchronyFinancial.xcodeproj/project.pbxproj b/SynchronyFinancial/SynchronyFinancial.xcodeproj/project.pbxproj
index 2ea476f..d8e26c1 100644
--- a/SynchronyFinancial/SynchronyFinancial.xcodeproj/project.pbxproj
+++ b/SynchronyFinancial/SynchronyFinancial.xcodeproj/project.pbxproj
@@ -8,7 +8,17 @@
/* Begin PBXBuildFile section */
281283568A34D3C5D9C7B383 /* libPods-SynchronyFinancial WatchKit Extension.a in Frameworks */ = {isa = PBXBuildFile; fileRef = CAA6D46F907ADAABF49FD409 /* libPods-SynchronyFinancial WatchKit Extension.a */; };
- 48F243052214C58A00B9C894 /* AccountCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 48F243042214C58A00B9C894 /* AccountCell.swift */; };
+ 48CFA6652226758A003B81FB /* PaymentCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 48CFA6642226758A003B81FB /* PaymentCell.swift */; };
+ 48CFA669222679B1003B81FB /* AccountPaymentInterfaceController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 48CFA668222679B1003B81FB /* AccountPaymentInterfaceController.swift */; };
+ 48CFA66A22267A34003B81FB /* AccountPaymentInterfaceController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 48CFA668222679B1003B81FB /* AccountPaymentInterfaceController.swift */; };
+ 48CFA66C22267BCC003B81FB /* AccPaym2InterfaceController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 48CFA66B22267BCC003B81FB /* AccPaym2InterfaceController.swift */; };
+ 48CFA66D22267BF0003B81FB /* AccPaym2InterfaceController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 48CFA66B22267BCC003B81FB /* AccPaym2InterfaceController.swift */; };
+ 48CFA66F22267C4D003B81FB /* AccPayEndInterfaceController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 48CFA66E22267C4D003B81FB /* AccPayEndInterfaceController.swift */; };
+ 48CFA67022267C4D003B81FB /* AccPayEndInterfaceController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 48CFA66E22267C4D003B81FB /* AccPayEndInterfaceController.swift */; };
+ 48CFA67222267CE9003B81FB /* AccPaym1InterfaceController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 48CFA67122267CE9003B81FB /* AccPaym1InterfaceController.swift */; };
+ 48CFA67322267CE9003B81FB /* AccPaym1InterfaceController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 48CFA67122267CE9003B81FB /* AccPaym1InterfaceController.swift */; };
+ 48DA0056221D11020081A500 /* AccountDetailCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 48DA0055221D11020081A500 /* AccountDetailCell.swift */; };
+ 48DA0058221D12E70081A500 /* AccountCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 48DA0057221D12E70081A500 /* AccountCell.swift */; };
48F243072214C98600B9C894 /* AccountTableInterfaceController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 48F243062214C98600B9C894 /* AccountTableInterfaceController.swift */; };
48F243082214CA9600B9C894 /* AccountTableInterfaceController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 48F243062214C98600B9C894 /* AccountTableInterfaceController.swift */; };
48F2430A2214CBA200B9C894 /* Interface.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 67BAC27C219E254800713FEF /* Interface.storyboard */; };
@@ -75,7 +85,13 @@
1BEF4B8BF190D117CA6104E5 /* Pods-SynchronyFinancial WatchKit App.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-SynchronyFinancial WatchKit App.release.xcconfig"; path = "Pods/Target Support Files/Pods-SynchronyFinancial WatchKit App/Pods-SynchronyFinancial WatchKit App.release.xcconfig"; sourceTree = ""; };
250BDAF6AD4E1CCA82995E30 /* Pods-SynchronyFinancial WatchKit Extension.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-SynchronyFinancial WatchKit Extension.release.xcconfig"; path = "Pods/Target Support Files/Pods-SynchronyFinancial WatchKit Extension/Pods-SynchronyFinancial WatchKit Extension.release.xcconfig"; sourceTree = ""; };
396A16E056D05DEC937A07DA /* Pods-SynchronyFinancial.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-SynchronyFinancial.release.xcconfig"; path = "Pods/Target Support Files/Pods-SynchronyFinancial/Pods-SynchronyFinancial.release.xcconfig"; sourceTree = ""; };
- 48F243042214C58A00B9C894 /* AccountCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AccountCell.swift; sourceTree = ""; };
+ 48CFA6642226758A003B81FB /* PaymentCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PaymentCell.swift; sourceTree = ""; };
+ 48CFA668222679B1003B81FB /* AccountPaymentInterfaceController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AccountPaymentInterfaceController.swift; sourceTree = ""; };
+ 48CFA66B22267BCC003B81FB /* AccPaym2InterfaceController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AccPaym2InterfaceController.swift; sourceTree = ""; };
+ 48CFA66E22267C4D003B81FB /* AccPayEndInterfaceController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AccPayEndInterfaceController.swift; sourceTree = ""; };
+ 48CFA67122267CE9003B81FB /* AccPaym1InterfaceController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AccPaym1InterfaceController.swift; sourceTree = ""; };
+ 48DA0055221D11020081A500 /* AccountDetailCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AccountDetailCell.swift; sourceTree = ""; };
+ 48DA0057221D12E70081A500 /* AccountCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AccountCell.swift; sourceTree = ""; };
48F243062214C98600B9C894 /* AccountTableInterfaceController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AccountTableInterfaceController.swift; sourceTree = ""; };
48F2430B2214CBF700B9C894 /* Account.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Account.swift; sourceTree = ""; };
48F2430C2214CBF700B9C894 /* Transaction.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Transaction.swift; sourceTree = ""; };
@@ -181,10 +197,16 @@
children = (
673F396C21A644460051469E /* MainMenuInterfaceController.swift */,
67BAC28D219E254900713FEF /* ExtensionDelegate.swift */,
+ 48F243062214C98600B9C894 /* AccountTableInterfaceController.swift */,
+ 48CFA668222679B1003B81FB /* AccountPaymentInterfaceController.swift */,
+ 48CFA67122267CE9003B81FB /* AccPaym1InterfaceController.swift */,
+ 48CFA66B22267BCC003B81FB /* AccPaym2InterfaceController.swift */,
+ 48CFA66E22267C4D003B81FB /* AccPayEndInterfaceController.swift */,
67BAC291219E254900713FEF /* Assets.xcassets */,
+ 48DA0057221D12E70081A500 /* AccountCell.swift */,
67BAC293219E254900713FEF /* Info.plist */,
- 48F243042214C58A00B9C894 /* AccountCell.swift */,
- 48F243062214C98600B9C894 /* AccountTableInterfaceController.swift */,
+ 48CFA6642226758A003B81FB /* PaymentCell.swift */,
+ 48DA0055221D11020081A500 /* AccountDetailCell.swift */,
);
path = "SynchronyFinancial WatchKit Extension";
sourceTree = "";
@@ -417,8 +439,12 @@
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
+ 48CFA67222267CE9003B81FB /* AccPaym1InterfaceController.swift in Sources */,
48F2430D2214CBF700B9C894 /* Account.swift in Sources */,
+ 48CFA66D22267BF0003B81FB /* AccPaym2InterfaceController.swift in Sources */,
48F2430E2214CBF700B9C894 /* Transaction.swift in Sources */,
+ 48CFA66F22267C4D003B81FB /* AccPayEndInterfaceController.swift in Sources */,
+ 48CFA66A22267A34003B81FB /* AccountPaymentInterfaceController.swift in Sources */,
67BAC269219E254700713FEF /* AppDelegate.swift in Sources */,
48F243082214CA9600B9C894 /* AccountTableInterfaceController.swift in Sources */,
);
@@ -428,11 +454,17 @@
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- 48F243052214C58A00B9C894 /* AccountCell.swift in Sources */,
+ 48DA0056221D11020081A500 /* AccountDetailCell.swift in Sources */,
+ 48CFA66C22267BCC003B81FB /* AccPaym2InterfaceController.swift in Sources */,
67BAC28E219E254900713FEF /* ExtensionDelegate.swift in Sources */,
+ 48CFA669222679B1003B81FB /* AccountPaymentInterfaceController.swift in Sources */,
+ 48CFA6652226758A003B81FB /* PaymentCell.swift in Sources */,
+ 48CFA67322267CE9003B81FB /* AccPaym1InterfaceController.swift in Sources */,
673F396E21A644570051469E /* MainMenuInterfaceController.swift in Sources */,
48F243072214C98600B9C894 /* AccountTableInterfaceController.swift in Sources */,
48F2430F2214CC2200B9C894 /* Transaction.swift in Sources */,
+ 48CFA67022267C4D003B81FB /* AccPayEndInterfaceController.swift in Sources */,
+ 48DA0058221D12E70081A500 /* AccountCell.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};