Skip to content

Commit c7b7102

Browse files
committed
Realm DB for storing the workouts
1 parent 4a24c54 commit c7b7102

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+3131
-0
lines changed

.DS_Store

6 KB
Binary file not shown.

Podfile

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Uncomment the next line to define a global platform for your project
2+
# platform :ios, '9.0'
3+
4+
target 'WatchInterface (iOS)' do
5+
# Comment the next line if you don't want to use dynamic frameworks
6+
use_frameworks!
7+
8+
# Pods for WatchInterface (iOS)
9+
10+
end
11+
12+
target 'WIApp' do
13+
# Comment the next line if you don't want to use dynamic frameworks
14+
use_frameworks!
15+
16+
# Pods for WIApp
17+
18+
end
19+
20+
target 'WIApp Extension' do
21+
# Comment the next line if you don't want to use dynamic frameworks
22+
use_frameworks!
23+
pod 'RealmSwift'
24+
25+
# Pods for WIApp Extension
26+
27+
28+
end

Podfile.lock

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
PODS:
2+
- Realm (10.10.0):
3+
- Realm/Headers (= 10.10.0)
4+
- Realm/Headers (10.10.0)
5+
- RealmSwift (10.10.0):
6+
- Realm (= 10.10.0)
7+
8+
DEPENDENCIES:
9+
- RealmSwift
10+
11+
SPEC REPOS:
12+
trunk:
13+
- Realm
14+
- RealmSwift
15+
16+
SPEC CHECKSUMS:
17+
Realm: f501df41a4222c67850c77cf135d472192ecf294
18+
RealmSwift: c69aadfc7db0d60075178d037c2f34ada73d5201
19+
20+
PODFILE CHECKSUM: c2c15cc3c4b42d33994956f059ae72063d160ed4
21+
22+
COCOAPODS: 1.10.1

Shared/Assets.xcassets/.DS_Store

6 KB
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"colors" : [
3+
{
4+
"idiom" : "universal"
5+
}
6+
],
7+
"info" : {
8+
"author" : "xcode",
9+
"version" : 1
10+
}
11+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,148 @@
1+
{
2+
"images" : [
3+
{
4+
"idiom" : "iphone",
5+
"scale" : "2x",
6+
"size" : "20x20"
7+
},
8+
{
9+
"idiom" : "iphone",
10+
"scale" : "3x",
11+
"size" : "20x20"
12+
},
13+
{
14+
"idiom" : "iphone",
15+
"scale" : "2x",
16+
"size" : "29x29"
17+
},
18+
{
19+
"idiom" : "iphone",
20+
"scale" : "3x",
21+
"size" : "29x29"
22+
},
23+
{
24+
"idiom" : "iphone",
25+
"scale" : "2x",
26+
"size" : "40x40"
27+
},
28+
{
29+
"idiom" : "iphone",
30+
"scale" : "3x",
31+
"size" : "40x40"
32+
},
33+
{
34+
"idiom" : "iphone",
35+
"scale" : "2x",
36+
"size" : "60x60"
37+
},
38+
{
39+
"idiom" : "iphone",
40+
"scale" : "3x",
41+
"size" : "60x60"
42+
},
43+
{
44+
"idiom" : "ipad",
45+
"scale" : "1x",
46+
"size" : "20x20"
47+
},
48+
{
49+
"idiom" : "ipad",
50+
"scale" : "2x",
51+
"size" : "20x20"
52+
},
53+
{
54+
"idiom" : "ipad",
55+
"scale" : "1x",
56+
"size" : "29x29"
57+
},
58+
{
59+
"idiom" : "ipad",
60+
"scale" : "2x",
61+
"size" : "29x29"
62+
},
63+
{
64+
"idiom" : "ipad",
65+
"scale" : "1x",
66+
"size" : "40x40"
67+
},
68+
{
69+
"idiom" : "ipad",
70+
"scale" : "2x",
71+
"size" : "40x40"
72+
},
73+
{
74+
"idiom" : "ipad",
75+
"scale" : "1x",
76+
"size" : "76x76"
77+
},
78+
{
79+
"idiom" : "ipad",
80+
"scale" : "2x",
81+
"size" : "76x76"
82+
},
83+
{
84+
"idiom" : "ipad",
85+
"scale" : "2x",
86+
"size" : "83.5x83.5"
87+
},
88+
{
89+
"idiom" : "ios-marketing",
90+
"scale" : "1x",
91+
"size" : "1024x1024"
92+
},
93+
{
94+
"idiom" : "mac",
95+
"scale" : "1x",
96+
"size" : "16x16"
97+
},
98+
{
99+
"idiom" : "mac",
100+
"scale" : "2x",
101+
"size" : "16x16"
102+
},
103+
{
104+
"idiom" : "mac",
105+
"scale" : "1x",
106+
"size" : "32x32"
107+
},
108+
{
109+
"idiom" : "mac",
110+
"scale" : "2x",
111+
"size" : "32x32"
112+
},
113+
{
114+
"idiom" : "mac",
115+
"scale" : "1x",
116+
"size" : "128x128"
117+
},
118+
{
119+
"idiom" : "mac",
120+
"scale" : "2x",
121+
"size" : "128x128"
122+
},
123+
{
124+
"idiom" : "mac",
125+
"scale" : "1x",
126+
"size" : "256x256"
127+
},
128+
{
129+
"idiom" : "mac",
130+
"scale" : "2x",
131+
"size" : "256x256"
132+
},
133+
{
134+
"idiom" : "mac",
135+
"scale" : "1x",
136+
"size" : "512x512"
137+
},
138+
{
139+
"idiom" : "mac",
140+
"scale" : "2x",
141+
"size" : "512x512"
142+
}
143+
],
144+
"info" : {
145+
"author" : "xcode",
146+
"version" : 1
147+
}
148+
}

Shared/Assets.xcassets/Contents.json

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"info" : {
3+
"author" : "xcode",
4+
"version" : 1
5+
}
6+
}

WIApp Extension/.DS_Store

6 KB
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
"images" : [
3+
{
4+
"idiom" : "watch",
5+
"scale" : "2x",
6+
"screen-width" : "<=145"
7+
},
8+
{
9+
"idiom" : "watch",
10+
"scale" : "2x",
11+
"screen-width" : ">161"
12+
},
13+
{
14+
"idiom" : "watch",
15+
"scale" : "2x",
16+
"screen-width" : ">145"
17+
},
18+
{
19+
"idiom" : "watch",
20+
"scale" : "2x",
21+
"screen-width" : ">183"
22+
}
23+
],
24+
"info" : {
25+
"author" : "xcode",
26+
"version" : 1
27+
}
28+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
{
2+
"assets" : [
3+
{
4+
"filename" : "Circular.imageset",
5+
"idiom" : "watch",
6+
"role" : "circular"
7+
},
8+
{
9+
"filename" : "Extra Large.imageset",
10+
"idiom" : "watch",
11+
"role" : "extra-large"
12+
},
13+
{
14+
"filename" : "Graphic Bezel.imageset",
15+
"idiom" : "watch",
16+
"role" : "graphic-bezel"
17+
},
18+
{
19+
"filename" : "Graphic Circular.imageset",
20+
"idiom" : "watch",
21+
"role" : "graphic-circular"
22+
},
23+
{
24+
"filename" : "Graphic Corner.imageset",
25+
"idiom" : "watch",
26+
"role" : "graphic-corner"
27+
},
28+
{
29+
"filename" : "Graphic Extra Large.imageset",
30+
"idiom" : "watch",
31+
"role" : "graphic-extra-large"
32+
},
33+
{
34+
"filename" : "Graphic Large Rectangular.imageset",
35+
"idiom" : "watch",
36+
"role" : "graphic-large-rectangular"
37+
},
38+
{
39+
"filename" : "Modular.imageset",
40+
"idiom" : "watch",
41+
"role" : "modular"
42+
},
43+
{
44+
"filename" : "Utilitarian.imageset",
45+
"idiom" : "watch",
46+
"role" : "utilitarian"
47+
}
48+
],
49+
"info" : {
50+
"author" : "xcode",
51+
"version" : 1
52+
}
53+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
"images" : [
3+
{
4+
"idiom" : "watch",
5+
"scale" : "2x",
6+
"screen-width" : "<=145"
7+
},
8+
{
9+
"idiom" : "watch",
10+
"scale" : "2x",
11+
"screen-width" : ">161"
12+
},
13+
{
14+
"idiom" : "watch",
15+
"scale" : "2x",
16+
"screen-width" : ">145"
17+
},
18+
{
19+
"idiom" : "watch",
20+
"scale" : "2x",
21+
"screen-width" : ">183"
22+
}
23+
],
24+
"info" : {
25+
"author" : "xcode",
26+
"version" : 1
27+
}
28+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"images" : [
3+
{
4+
"idiom" : "watch",
5+
"scale" : "2x",
6+
"screen-width" : ">161"
7+
},
8+
{
9+
"idiom" : "watch",
10+
"scale" : "2x",
11+
"screen-width" : ">183"
12+
}
13+
],
14+
"info" : {
15+
"author" : "xcode",
16+
"version" : 1
17+
}
18+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"images" : [
3+
{
4+
"idiom" : "watch",
5+
"scale" : "2x",
6+
"screen-width" : ">161"
7+
},
8+
{
9+
"idiom" : "watch",
10+
"scale" : "2x",
11+
"screen-width" : ">183"
12+
}
13+
],
14+
"info" : {
15+
"author" : "xcode",
16+
"version" : 1
17+
}
18+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"images" : [
3+
{
4+
"idiom" : "watch",
5+
"scale" : "2x",
6+
"screen-width" : ">161"
7+
},
8+
{
9+
"idiom" : "watch",
10+
"scale" : "2x",
11+
"screen-width" : ">183"
12+
}
13+
],
14+
"info" : {
15+
"author" : "xcode",
16+
"version" : 1
17+
}
18+
}

0 commit comments

Comments
 (0)