-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathindex.html
1364 lines (1276 loc) · 68.7 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<title>You Download the App and it Doesn't Work</title>
<link href="https://unpkg.com/tailwindcss@^1.0/dist/tailwind.min.css" rel="stylesheet" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no, viewport-fit=cover, user-scalable=no, maximum-scale=1.0" />
<meta name="twitter:card" content="summary_large_image" />
<meta property="og:title" content="You Download the App and it Doesn't Work" />
<meta property="og:description" content="Examples of capriciousness in App Store policymaking." />
<meta property="og:image" content="https://www.youdownloadtheappanditdoesntwork.com/assets/netflix_quote_card.png" />
</head>
<body class="bg-gray-100">
<section class="py-12 bg-white overflow-hidden md:py-20 lg:py-24">
<div class="relative max-w-screen-xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="relative">
<blockquote class="mt-8">
<div class="max-w-3xl mx-auto text-left text-2xl leading-9 font-medium text-gray-900">
<p class="mb-4">
“There are many things that they could do to make the app work within the rules that we have. We would love for them to do that.
</p>
<p>
“You download the app and it doesn’t work, that’s not what we want on the store.”
</p>
</div>
<footer class="mt-8">
<div class="md:flex md:items-center md:justify-center">
<div class="mt-3 text-center md:mt-0 md:ml-4 md:items-center">
<div class="text-base leading-6 font-medium text-gray-900">Phil Schiller
</div>
<div class="text-base leading-6 font-medium text-gray-700">Apple Vice President of Worldwide Marketing <a href="https://techcrunch.com/2020/06/18/interview-apples-schiller-says-position-on-hey-app-is-unchanged-and-no-rules-changes-are-imminent/" class="text-purple-500">to Matthew Panzarino of TechCrunch</a>
</div>
</div>
</div>
</footer>
</blockquote>
</div>
</div>
</section>
<div class="py-16 overflow-hidden lg:py-24">
<section class="relative max-w-xl mx-auto px-4 sm:px-6 lg:px-8 lg:max-w-screen-xl">
<div class="relative mt-12 lg:mt-24 lg:grid lg:grid-cols-2 lg:gap-8 lg:items-start">
<div class="relative">
<h4 class="text-2xl text-center leading-8 font-extrabold text-gray-900 tracking-tight sm:text-3xl sm:leading-9">
Hey
</h4>
<div class="overflow-hidden">
<div class="px-4 py-5 sm:p-0">
<dl>
<div class="sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6 sm:py-5">
<dt class="text-sm leading-5 font-medium text-gray-700">
Status
</dt>
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2 font-bold text-red-500">
Rejected
</dd>
</div>
<div class="mt-8 sm:mt-0 sm:grid sm:grid-cols-3 sm:gap-4 sm:border-t sm:border-gray-200 sm:px-6 sm:py-5">
<dt class="text-sm leading-5 font-medium text-gray-700">
Allows in-app sign-up?
</dt>
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2">
"You can't sign up for HEY in the app. We know that's a pain. After you've created an account, you'll be able to use the app."
</dd>
</div>
<div class="mt-8 sm:mt-0 sm:grid sm:grid-cols-3 sm:gap-4 sm:border-t sm:border-gray-200 sm:px-6 sm:py-5">
<dt class="text-sm leading-5 font-medium text-gray-700">
Purchases possible without Apple?
</dt>
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2">
$99/year email service, of which Apple is rent-seeking $30
</dd>
</div>
</dl>
</div>
</div>
</div>
<div class="mt-10 -mx-4 relative lg:mt-0">
<img class="shadow-lg relative mx-auto rounded-lg w-auto" width="490" style="height: 32rem;" src="hey.png" alt="" />
</div>
</div>
</section>
<div class="text-base leading-6 font-medium text-gray-700 text-center mt-12">
<a href="#qa" class="text-blue-500 text-italic">
Q&A: The conflict between Hey.com and Apple
</a>
</div>
<section class="relative max-w-xl mx-auto px-4 sm:px-6 lg:px-8 lg:max-w-screen-xl">
<div class="relative mt-24 lg:mt-24 lg:grid lg:grid-cols-2 lg:gap-8 lg:items-start">
<div class="relative">
<h4 class="text-2xl text-center leading-8 font-extrabold text-gray-900 tracking-tight sm:text-3xl sm:leading-9">
Netflix
</h4>
<div class="overflow-hidden">
<div class="px-4 py-5 sm:p-0">
<dl>
<div class="sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6 sm:py-5">
<dt class="text-sm leading-5 font-medium text-gray-700">
Status
</dt>
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2">
<span class="font-bold text-blue-500">Accepted</span> as of June 15, 2020
</dd>
</div>
<div class="mt-8 sm:mt-0 sm:grid sm:grid-cols-3 sm:gap-4 sm:border-t sm:border-gray-200 sm:px-6 sm:py-5">
<dt class="text-sm leading-5 font-medium text-gray-700">
Allows in-app sign-up?
</dt>
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2">
"You can't sign up for Netflix in the app. We know it's a hassle. After you're a member, you can start watching in the app."
</dd>
</div>
<div class="mt-8 sm:mt-0 sm:grid sm:grid-cols-3 sm:gap-4 sm:border-t sm:border-gray-200 sm:px-6 sm:py-5">
<dt class="text-sm leading-5 font-medium text-gray-700">
Purchases possible without Apple?
</dt>
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2">
Monthly subscriptions starting at $8.99 / month
</dd>
</div>
</dl>
</div>
</div>
</div>
<div class="mt-10 -mx-4 relative lg:mt-0">
<img class="shadow-lg relative mx-auto rounded-lg w-auto" width="490" style="height: 32rem;" src="netflix.png" alt="" />
</div>
</div>
</section>
<section class="relative max-w-xl mx-auto px-4 sm:px-6 lg:px-8 lg:max-w-screen-xl">
<div class="relative mt-24 lg:mt-24 lg:grid lg:grid-cols-2 lg:gap-8 lg:items-start">
<div class="relative">
<h4 class="text-2xl text-center leading-8 font-extrabold text-gray-900 tracking-tight sm:text-3xl sm:leading-9">
GitHub
</h4>
<div class="overflow-hidden">
<div class="px-4 py-5 sm:p-0">
<dl>
<div class="sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6 sm:py-5">
<dt class="text-sm leading-5 font-medium text-gray-700">
Status
</dt>
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2">
<span class="font-bold text-blue-500">Accepted</span> as of June 15, 2020
</dd>
</div>
<div class="mt-8 sm:mt-0 sm:grid sm:grid-cols-3 sm:gap-4 sm:border-t sm:border-gray-200 sm:px-6 sm:py-5">
<dt class="text-sm leading-5 font-medium text-gray-700">
Allows in-app sign-up?
</dt>
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2">
"Sign in to GitHub to continue to GitHub iOS."
</dd>
</div>
<div class="mt-8 sm:mt-0 sm:grid sm:grid-cols-3 sm:gap-4 sm:border-t sm:border-gray-200 sm:px-6 sm:py-5">
<dt class="text-sm leading-5 font-medium text-gray-700">
Purchases possible without Apple?
</dt>
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2">
Free tier, followed by subscriptions from $4 to $21 per user per month
</dd>
</div>
</dl>
</div>
</div>
</div>
<div class="mt-10 -mx-4 relative lg:mt-0">
<img class="shadow-lg relative mx-auto rounded-lg w-auto" width="490" style="height: 32rem;" src="github.png" alt="" />
</div>
</div>
</section>
<section class="relative max-w-xl mx-auto px-4 sm:px-6 lg:px-8 lg:max-w-screen-xl">
<div class="relative mt-24 lg:mt-24 lg:grid lg:grid-cols-2 lg:gap-8 lg:items-start">
<div class="relative">
<h4 class="text-2xl text-center leading-8 font-extrabold text-gray-900 tracking-tight sm:text-3xl sm:leading-9">
Google Docs
</h4>
<div class="overflow-hidden">
<div class="px-4 py-5 sm:p-0">
<dl>
<div class="sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6 sm:py-5">
<dt class="text-sm leading-5 font-medium text-gray-700">
Status
</dt>
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2">
<span class="font-bold text-blue-500">Accepted</span> as of June 18, 2020
</dd>
</div>
<div class="mt-8 sm:mt-0 sm:grid sm:grid-cols-3 sm:gap-4 sm:border-t sm:border-gray-200 sm:px-6 sm:py-5">
<dt class="text-sm leading-5 font-medium text-gray-700">
Allows in-app sign-up?
</dt>
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2"> "Sign In"
</dd>
</div>
<div class="mt-8 sm:mt-0 sm:grid sm:grid-cols-3 sm:gap-4 sm:border-t sm:border-gray-200 sm:px-6 sm:py-5">
<dt class="text-sm leading-5 font-medium text-gray-700">
Purchases possible without Apple?
</dt>
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2">
Free tier, paid memberships are available on the G Suite website. No in-app purchases. </dd>
</div>
<div class="mt-8 sm:mt-0 sm:grid sm:grid-cols-3 sm:gap-4 sm:border-t sm:border-gray-200 sm:px-6 sm:py-5">
<dt class="text-sm leading-5 font-medium text-gray-700">
Found by
</dt>
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2">
<a class="text-purple-500" href="https://github.com/lperiodbose/youdownloadtheappanditdoesntwork/pull/2">brunophilipe on GitHub</a>
</dd>
</div>
</dl>
</div>
</div>
</div>
<div class="mt-10 -mx-4 relative lg:mt-0">
<img class="shadow-lg relative mx-auto rounded-lg w-auto" width="490" style="height: 32rem;" src="gdocs.jpg" alt="">
</div>
</div>
</section>
<section class="relative max-w-xl mx-auto px-4 sm:px-6 lg:px-8 lg:max-w-screen-xl">
<div class="relative mt-24 lg:mt-24 lg:grid lg:grid-cols-2 lg:gap-8 lg:items-start">
<div class="relative">
<h4 class="text-2xl text-center leading-8 font-extrabold text-gray-900 tracking-tight sm:text-3xl sm:leading-9">
<a name="fastmail">Fastmail</a>
</h4>
<div class="overflow-hidden">
<div class="px-4 py-5 sm:p-0">
<dl>
<div class="sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6 sm:py-5">
<dt class="text-sm leading-5 font-medium text-gray-700">
Status
</dt>
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2">
<span class="font-bold text-orange-500">Required to pay IAP fees</span> as of June 19, 2020
<br>
Most recently <span class="font-bold text-blue-500">Accepted</span> on May 30, 2020
</dd>
</div>
<div class="mt-8 sm:mt-0 sm:grid sm:grid-cols-3 sm:gap-4 sm:border-t sm:border-gray-200 sm:px-6 sm:py-5">
<dt class="text-sm leading-5 font-medium text-gray-700">
Allows in-app sign-up?
</dt>
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2">
No
</dd>
</div>
<div class="mt-8 sm:mt-0 sm:grid sm:grid-cols-3 sm:gap-4 sm:border-t sm:border-gray-200 sm:px-6 sm:py-5">
<dt class="text-sm leading-5 font-medium text-gray-700">
Purchases possible without Apple?
</dt>
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2">
Plans start at $3 per month
<br>
<a class="text-purple-500" href="https://twitter.com/Fastmail/status/1273800222989324288">Update from @fastmail</a>: "Apple asked us recently to add IAP. We agreed to add it, and it was already on our longer term roadmap. We have always believed in meeting our users where they want to be, and more and more people are going mobile-only. It’s expected in our next major release."
</dd>
</div>
</dl>
</div>
</div>
</div>
<div class="mt-10 -mx-4 relative lg:mt-0">
<img class="shadow-lg relative mx-auto rounded-lg w-auto" width="490" style="height: 32rem;" src="fastmail.png" alt="" />
</div>
</div>
</section>
<section class="bg-white overflow-hidden mt-24">
<div class="relative max-w-screen-xl mx-auto pt-20 pb-12 px-4 sm:px-6 lg:px-8 lg:py-20">
<div class="relative lg:flex lg:items-center">
<div class="relative lg:ml-10">
<blockquote class="relative">
<div class="text-2xl leading-9 font-medium text-gray-900">
<p>
“The issue exemplified by Hey is that there are cross-platform apps/services that don’t want to use Apple’s system, period, full stop. [...]
</p>
<p class="mt-4">
“They’re not trying to collect money from users within their apps by circumventing Apple’s IAP APIs with their own payment processing — they’re simply willing to forgo in-app commerce completely and sign up all their users on their own, outside their app.”
</p>
</div>
<footer class="mt-8">
<div class="flex">
<div class="ml-4 lg:ml-0">
<div class="text-base leading-6 font-medium text-gray-900">John Gruber
</div>
<div class="text-base leading-6 font-medium">
<a class="text-indigo-600" href="https://daringfireball.net/2020/06/hey_app_store_rejection_flimsiness">
Daring Fireball
<br>
"The Flimsiness of ‘Business vs. Consumer’ as a Justification for Apple’s Rejection of Hey From the App Store for Not Using In-App Purchases"
</a>
</div>
</div>
</div>
</footer>
</blockquote>
</div>
</div>
</div>
</section>
<section class="relative max-w-xl mx-auto px-4 sm:px-6 lg:px-8 lg:max-w-screen-xl">
<div class="relative mt-24 lg:mt-24 lg:grid lg:grid-cols-2 lg:gap-8 lg:items-start">
<div class="relative">
<h4 class="text-2xl text-center leading-8 font-extrabold text-gray-900 tracking-tight sm:text-3xl sm:leading-9">
App Store Connect
</h4>
<div class="overflow-hidden">
<div class="px-4 py-5 sm:p-0">
<dl>
<div class="sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6 sm:py-5">
<dt class="text-sm leading-5 font-medium text-gray-700">
Status
</dt>
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2">
<span class="font-bold text-blue-500">Created by Apple</span>
</dd>
</div>
<div class="mt-8 sm:mt-0 sm:grid sm:grid-cols-3 sm:gap-4 sm:border-t sm:border-gray-200 sm:px-6 sm:py-5">
<dt class="text-sm leading-5 font-medium text-gray-700">
Allows in-app sign-up?
</dt>
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2">
No
</dd>
</div>
<div class="mt-8 sm:mt-0 sm:grid sm:grid-cols-3 sm:gap-4 sm:border-t sm:border-gray-200 sm:px-6 sm:py-5">
<dt class="text-sm leading-5 font-medium text-gray-700">
Purchases possible without Apple?
</dt>
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2">
Apple developer accounts cost $100/year, not collected in-app
</dd>
</div>
</dl>
</div>
</div>
</div>
<div class="mt-10 -mx-4 relative lg:mt-0">
<img class="shadow-lg relative mx-auto rounded-lg w-auto" width="490" style="height: 32rem;" src="app_store_connect.png" alt="" />
</div>
</div>
</section>
<section class="relative max-w-xl mx-auto px-4 sm:px-6 lg:px-8 lg:max-w-screen-xl">
<div class="relative mt-24 lg:mt-24 lg:grid lg:grid-cols-2 lg:gap-8 lg:items-start">
<div class="relative">
<h4 class="text-2xl text-center leading-8 font-extrabold text-gray-900 tracking-tight sm:text-3xl sm:leading-9">
Dropbox Passwords
</h4>
<div class="overflow-hidden">
<div class="px-4 py-5 sm:p-0">
<dl>
<div class="sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6 sm:py-5">
<dt class="text-sm leading-5 font-medium text-gray-700">
Status
</dt>
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2">
<span class="font-bold text-blue-500">Accepted</span> as of June 12, 2020
</dd>
</div>
<div class="mt-8 sm:mt-0 sm:grid sm:grid-cols-3 sm:gap-4 sm:border-t sm:border-gray-200 sm:px-6 sm:py-5">
<dt class="text-sm leading-5 font-medium text-gray-700">
Allows in-app sign-up?
</dt>
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2">
"Dropbox Plus or Professional is required to use Passwords."
</dd>
</div>
<div class="mt-8 sm:mt-0 sm:grid sm:grid-cols-3 sm:gap-4 sm:border-t sm:border-gray-200 sm:px-6 sm:py-5">
<dt class="text-sm leading-5 font-medium text-gray-700">
Purchases possible without Apple?
</dt>
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2">
Dropbox Plus subscriptions are available in-app from the core Dropbox app. They are not available from the Dropbox Passwords app.
</dd>
</div>
<div class="mt-8 sm:mt-0 sm:grid sm:grid-cols-3 sm:gap-4 sm:border-t sm:border-gray-200 sm:px-6 sm:py-5">
<dt class="text-sm leading-5 font-medium text-gray-700">
Found by
</dt>
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2">
<a class="text-purple-500" href="https://twitter.com/hvaoc/status/1274102007729659906">@hvaoc on Twitter</a>
</dd>
</div>
</dl>
</div>
</div>
</div>
<div class="mt-10 -mx-4 relative lg:mt-0">
<img class="shadow-lg relative mx-auto rounded-lg w-auto" width="490" style="height: 32rem;" src="dropbox_passwords.png" alt="" />
</div>
</div>
</section>
<section class="relative max-w-xl mx-auto px-4 sm:px-6 lg:px-8 lg:max-w-screen-xl">
<div class="relative mt-24 lg:mt-24 lg:grid lg:grid-cols-2 lg:gap-8 lg:items-start">
<div class="relative">
<h4 class="text-2xl text-center leading-8 font-extrabold text-gray-900 tracking-tight sm:text-3xl sm:leading-9">
Tesla
</h4>
<div class="overflow-hidden">
<div class="px-4 py-5 sm:p-0">
<dl>
<div class="sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6 sm:py-5">
<dt class="text-sm leading-5 font-medium text-gray-700">
Status
</dt>
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2">
<span class="font-bold text-blue-500">Accepted</span> as of June 12, 2020
</dd>
</div>
<div class="mt-8 sm:mt-0 sm:grid sm:grid-cols-3 sm:gap-4 sm:border-t sm:border-gray-200 sm:px-6 sm:py-5">
<dt class="text-sm leading-5 font-medium text-gray-700">
Allows in-app sign-up?
</dt>
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2">
No
</dd>
</div>
<div class="mt-8 sm:mt-0 sm:grid sm:grid-cols-3 sm:gap-4 sm:border-t sm:border-gray-200 sm:px-6 sm:py-5">
<dt class="text-sm leading-5 font-medium text-gray-700">
Purchases possible without Apple?
</dt>
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2">
A 2020 Model 3 starts at $37,000 that I presume Elon isn't keen on splitting
</dd>
</div>
</dl>
</div>
</div>
</div>
<div class="mt-10 -mx-4 relative lg:mt-0">
<img class="shadow-lg relative mx-auto rounded-lg w-auto" width="490" style="height: 32rem;" src="tesla.png" alt="" />
</div>
</div>
</section>
<section class="relative max-w-xl mx-auto px-4 sm:px-6 lg:px-8 lg:max-w-screen-xl">
<div class="relative mt-24 lg:mt-24 lg:grid lg:grid-cols-2 lg:gap-8 lg:items-start">
<div class="relative">
<h4 class="text-2xl text-center leading-8 font-extrabold text-gray-900 tracking-tight sm:text-3xl sm:leading-9">
Soho House
</h4>
<div class="overflow-hidden">
<div class="px-4 py-5 sm:p-0">
<dl>
<div class="sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6 sm:py-5">
<dt class="text-sm leading-5 font-medium text-gray-700">
Status
</dt>
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2">
<span class="font-bold text-blue-500">Accepted</span> as of June 18, 2020
</dd>
</div>
<div class="mt-8 sm:mt-0 sm:grid sm:grid-cols-3 sm:gap-4 sm:border-t sm:border-gray-200 sm:px-6 sm:py-5">
<dt class="text-sm leading-5 font-medium text-gray-700">
Allows in-app sign-up?
</dt>
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2">
No, but you can watch a montage of someone making an old fashioned, a guy carrying a guitar up the stairs, and a woman swimming
</dd>
</div>
<div class="mt-8 sm:mt-0 sm:grid sm:grid-cols-3 sm:gap-4 sm:border-t sm:border-gray-200 sm:px-6 sm:py-5">
<dt class="text-sm leading-5 font-medium text-gray-700">
Purchases possible without Apple?
</dt>
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2">
Memberships cost $2,100 yearly
</dd>
</div>
</dl>
</div>
</div>
</div>
<div class="mt-10 -mx-4 relative lg:mt-0">
<img class="shadow-lg relative mx-auto rounded-lg w-auto" width="490" style="height: 32rem;" src="soho_house.png" alt="" />
</div>
</div>
</section>
<section class="bg-white overflow-hidden mt-24">
<div class="relative max-w-screen-xl mx-auto pt-20 pb-12 px-4 sm:px-6 lg:px-8 lg:py-20">
<div class="relative lg:flex lg:items-center">
<div class="relative lg:ml-10">
<blockquote class="relative">
<div class="text-2xl leading-9 font-medium text-gray-900">
<p>
“Apple didn’t change their rules. What happened is Apple changed their interpretation of the rule [...]
</p>
<p class="mt-4">
“It’s corrosive. It’s bad for the platform. It’s bad for the culture [...] It’s quite blatantly Apple taking money because they can. Apple didn’t build that. They didn’t build an email service. Apple can be a gatekeeper and they can extract it.”
</p>
</div>
<footer class="mt-8">
<div class="flex">
<div class="ml-4 lg:ml-0">
<div class="text-base leading-6 font-medium text-gray-900">Ben Thompson
</div>
<div class="text-base leading-6 font-medium text-indigo-600">
<div class="text-base leading-6 font-medium">
<a class="text-indigo-600" href="https://dithering.fm">
Dithering
<br>
"Hey Apple, Cut It Out"
</a>
</div>
</div>
</div>
</div>
</footer>
</blockquote>
</div>
</div>
</div>
</section>
<section class="relative max-w-xl mx-auto px-4 sm:px-6 lg:px-8 lg:max-w-screen-xl">
<div class="relative mt-24 lg:mt-24 lg:grid lg:grid-cols-2 lg:gap-8 lg:items-start">
<div class="relative">
<h4 class="text-2xl text-center leading-8 font-extrabold text-gray-900 tracking-tight sm:text-3xl sm:leading-9">
Wells Fargo
</h4>
<div class="overflow-hidden">
<div class="px-4 py-5 sm:p-0">
<dl>
<div class="sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6 sm:py-5">
<dt class="text-sm leading-5 font-medium text-gray-700">
Status
</dt>
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2">
<span class="font-bold text-blue-500">Accepted</span> as of June 5, 2020
</dd>
</div>
<div class="mt-8 sm:mt-0 sm:grid sm:grid-cols-3 sm:gap-4 sm:border-t sm:border-gray-200 sm:px-6 sm:py-5">
<dt class="text-sm leading-5 font-medium text-gray-700">
Allows in-app sign-up?
</dt>
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2">
Clicking "Open a checking account" from the home screen opens wellsfargo.com directly in Safari
</dd>
</div>
<div class="mt-8 sm:mt-0 sm:grid sm:grid-cols-3 sm:gap-4 sm:border-t sm:border-gray-200 sm:px-6 sm:py-5">
<dt class="text-sm leading-5 font-medium text-gray-700">
Purchases possible without Apple?
</dt>
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2">
Yes, you can obtain banking and class action settlement claims all outside the Apple ecosystem.
</dd>
</div>
</dl>
</div>
</div>
</div>
<div class="mt-10 -mx-4 relative lg:mt-0">
<img class="shadow-lg relative mx-auto rounded-lg w-auto" width="490" style="height: 32rem;" src="wells_fargo.png" alt="" />
</div>
</div>
</section>
<section class="relative max-w-xl mx-auto px-4 sm:px-6 lg:px-8 lg:max-w-screen-xl">
<div class="relative mt-24 lg:mt-24 lg:grid lg:grid-cols-2 lg:gap-8 lg:items-start">
<div class="relative">
<h4 class="text-2xl text-center leading-8 font-extrabold text-gray-900 tracking-tight sm:text-3xl sm:leading-9">
Bloomberg Terminal
</h4>
<div class="overflow-hidden">
<div class="px-4 py-5 sm:p-0">
<dl>
<div class="sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6 sm:py-5">
<dt class="text-sm leading-5 font-medium text-gray-700">
Status
</dt>
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2">
<span class="font-bold text-blue-500">Accepted</span> as of June 18, 2020
</dd>
</div>
<div class="mt-8 sm:mt-0 sm:grid sm:grid-cols-3 sm:gap-4 sm:border-t sm:border-gray-200 sm:px-6 sm:py-5">
<dt class="text-sm leading-5 font-medium text-gray-700">
Allows in-app sign-up?
</dt>
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2">
No
</dd>
</div>
<div class="mt-8 sm:mt-0 sm:grid sm:grid-cols-3 sm:gap-4 sm:border-t sm:border-gray-200 sm:px-6 sm:py-5">
<dt class="text-sm leading-5 font-medium text-gray-700">
Purchases possible without Apple?
</dt>
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2">
$24,000 per year per seat
</dd>
</div>
</dl>
</div>
</div>
</div>
<div class="mt-10 -mx-4 relative lg:mt-0">
<img class="shadow-lg relative mx-auto rounded-lg w-auto" width="490" style="height: 32rem;" src="bloomberg.png" alt="" />
</div>
</div>
</section>
<section class="relative max-w-xl mx-auto px-4 sm:px-6 lg:px-8 lg:max-w-screen-xl">
<div class="relative mt-24 lg:mt-24 lg:grid lg:grid-cols-2 lg:gap-8 lg:items-start">
<div class="relative">
<h4 class="text-2xl text-center leading-8 font-extrabold text-gray-900 tracking-tight sm:text-3xl sm:leading-9">
Blue Cross / Blue Shield of Texas
</h4>
<div class="overflow-hidden">
<div class="px-4 py-5 sm:p-0">
<dl>
<div class="sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6 sm:py-5">
<dt class="text-sm leading-5 font-medium text-gray-700">
Status
</dt>
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2">
<span class="font-bold text-blue-500">Accepted</span> as of June 18, 2020
</dd>
</div>
<div class="mt-8 sm:mt-0 sm:grid sm:grid-cols-3 sm:gap-4 sm:border-t sm:border-gray-200 sm:px-6 sm:py-5">
<dt class="text-sm leading-5 font-medium text-gray-700">
Allows in-app sign-up?
</dt>
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2">
No. The "Register an Account" button requires scanning the barcode of already-active insurance card.
</dd>
</div>
<div class="mt-8 sm:mt-0 sm:grid sm:grid-cols-3 sm:gap-4 sm:border-t sm:border-gray-200 sm:px-6 sm:py-5">
<dt class="text-sm leading-5 font-medium text-gray-700">
Purchases possible without Apple?
</dt>
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2">
Yes.
</dd>
</div>
</dl>
</div>
</div>
</div>
<div class="mt-10 -mx-4 relative lg:mt-0">
<img class="shadow-lg relative mx-auto rounded-lg w-auto" width="490" style="height: 32rem;" src="blue_cross.png" alt="" />
</div>
</div>
</section>
<section class="bg-white overflow-hidden mt-24">
<div class="relative max-w-screen-xl mx-auto pt-20 pb-12 px-4 sm:px-6 lg:px-8 lg:py-20">
<div class="relative lg:flex lg:items-center">
<div class="relative lg:ml-10">
<blockquote class="relative">
<div class="text-2xl leading-9 font-medium text-gray-900">
<p >
“By making these rules, and thinking if we make these rules, we will have enough power to force this to happen. History has shown it just doesn't happen. No one is going to give you that money. And so all it does is make apps worse in the app store, apps that are inexplicably worse [...]
</p>
<p class="mt-4">
“This is not a situation where interests and incentives are correctly aligned to make better and better apps. Everything is aligned to be oppositional and to result in us getting worse apps. Us getting worse apps, in the end, reflects poorly back on Apple [...]
</p>
<p class="mt-4">
“Stop trying to make fetch happen.”
</p>
</div>
<footer class="mt-8">
<div class="flex">
<div class="ml-4 lg:ml-0">
<div class="text-base leading-6 font-medium text-gray-900">John Siracusa
</div>
<div class="text-base leading-6 font-medium text-indigo-600">
<div class="text-base leading-6 font-medium">
<a class="text-indigo-600" href="https://atp.fm/383">
Accidental Tech Podcast
<br>
"Demand-Paged Outrage"
</a>
</div>
</div>
</div>
</div>
</footer>
</blockquote>
</div>
</div>
</div>
</section>
<section class="relative max-w-xl mx-auto px-4 sm:px-6 lg:px-8 lg:max-w-screen-xl">
<div class="relative mt-24 lg:mt-24 lg:grid lg:grid-cols-2 lg:gap-8 lg:items-start">
<div class="relative">
<h4 class="text-2xl text-center leading-8 font-extrabold text-gray-900 tracking-tight sm:text-3xl sm:leading-9">
WeWork
</h4>
<div class="overflow-hidden">
<div class="px-4 py-5 sm:p-0">
<dl>
<div class="sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6 sm:py-5">
<dt class="text-sm leading-5 font-medium text-gray-700">
Status
</dt>
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2">
<span class="font-bold text-blue-500">Accepted</span> as of June 12, 2020
</dd>
</div>
<div class="mt-8 sm:mt-0 sm:grid sm:grid-cols-3 sm:gap-4 sm:border-t sm:border-gray-200 sm:px-6 sm:py-5">
<dt class="text-sm leading-5 font-medium text-gray-700">
Allows in-app sign-up?
</dt>
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2">
No, but you can view slow tracking shots of change-agents and disruptors.
</dd>
</div>
<div class="mt-8 sm:mt-0 sm:grid sm:grid-cols-3 sm:gap-4 sm:border-t sm:border-gray-200 sm:px-6 sm:py-5">
<dt class="text-sm leading-5 font-medium text-gray-700">
Purchases possible without Apple?
</dt>
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2">
Memberships starting at $45/month
</dd>
</div>
</dl>
</div>
</div>
</div>
<div class="mt-10 -mx-4 relative lg:mt-0">
<img class="shadow-lg relative mx-auto rounded-lg w-auto" width="490" style="height: 32rem;" src="wework.png" alt="" />
</div>
</div>
</section>
<section class="relative max-w-xl mx-auto px-4 sm:px-6 lg:px-8 lg:max-w-screen-xl">
<div class="relative mt-24 lg:mt-24 lg:grid lg:grid-cols-2 lg:gap-8 lg:items-start">
<div class="relative">
<h4 class="text-2xl text-center leading-8 font-extrabold text-gray-900 tracking-tight sm:text-3xl sm:leading-9">
Salesforce
</h4>
<div class="overflow-hidden">
<div class="px-4 py-5 sm:p-0">
<dl>
<div class="sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6 sm:py-5">
<dt class="text-sm leading-5 font-medium text-gray-700">
Status
</dt>
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2">
<span class="font-bold text-blue-500">Accepted</span> as of June 12, 2020
</dd>
</div>
<div class="mt-8 sm:mt-0 sm:grid sm:grid-cols-3 sm:gap-4 sm:border-t sm:border-gray-200 sm:px-6 sm:py-5">
<dt class="text-sm leading-5 font-medium text-gray-700">
Allows in-app sign-up?
</dt>
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2">
No
</dd>
</div>
<div class="mt-8 sm:mt-0 sm:grid sm:grid-cols-3 sm:gap-4 sm:border-t sm:border-gray-200 sm:px-6 sm:py-5">
<dt class="text-sm leading-5 font-medium text-gray-700">
Purchases possible without Apple?
</dt>
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2">
Small business memberships starting at $25/month
</dd>
</div>
</dl>
</div>
</div>
</div>
<div class="mt-10 -mx-4 relative lg:mt-0">
<img class="shadow-lg relative mx-auto rounded-lg w-auto" width="490" style="height: 32rem;" src="salesforce.png" alt="" />
</div>
</div>
</section>
<section class="relative max-w-xl mx-auto px-4 sm:px-6 lg:px-8 lg:max-w-screen-xl">
<div class="relative mt-24 lg:mt-24 lg:grid lg:grid-cols-2 lg:gap-8 lg:items-start">
<div class="relative">
<h4 class="text-2xl text-center leading-8 font-extrabold text-gray-900 tracking-tight sm:text-3xl sm:leading-9">
Spark Sport
</h4>
<div class="overflow-hidden">
<div class="px-4 py-5 sm:p-0">
<dl>
<div class="sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6 sm:py-5">
<dt class="text-sm leading-5 font-medium text-gray-700">
Status
</dt>
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2">
<span class="font-bold text-blue-500">Accepted</span> as of June 5, 2020
</dd>
</div>
<div class="mt-8 sm:mt-0 sm:grid sm:grid-cols-3 sm:gap-4 sm:border-t sm:border-gray-200 sm:px-6 sm:py-5">
<dt class="text-sm leading-5 font-medium text-gray-700">
Allows in-app sign-up?
</dt>
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2">
No
</dd>
</div>
<div class="mt-8 sm:mt-0 sm:grid sm:grid-cols-3 sm:gap-4 sm:border-t sm:border-gray-200 sm:px-6 sm:py-5">
<dt class="text-sm leading-5 font-medium text-gray-700">
Purchases possible without Apple?
</dt>
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2">
"Spark Sport here in NZ. App is just a log in form, doesn’t advise anywhere how to subscribe or pay. Have to go to web to enter payment info & subscribe."
</dd>
</div>
<div class="mt-8 sm:mt-0 sm:grid sm:grid-cols-3 sm:gap-4 sm:border-t sm:border-gray-200 sm:px-6 sm:py-5">
<dt class="text-sm leading-5 font-medium text-gray-700">
Found by
</dt>
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2">
<a class="text-purple-500" href="https://twitter.com/philmetcalfe/status/1274123333764648962">@philmetcalfe on Twitter</a>
</dd>
</div>
</dl>
</div>
</div>
</div>
<div class="mt-10 -mx-4 relative lg:mt-0">
<img class="shadow-lg relative mx-auto rounded-lg w-auto" width="490" style="height: 32rem;" src="spark_sport.jpg" alt="" />
</div>
</div>
</section>
<section class="bg-white overflow-hidden mt-24">
<div class="relative max-w-screen-xl mx-auto pt-20 pb-12 px-4 sm:px-6 lg:px-8 lg:py-20">
<div class="relative lg:flex lg:items-center">
<div class="relative lg:ml-10">
<blockquote class="relative">
<div class="text-2xl leading-9 font-medium text-gray-900">
<p>
“Apple has made exceptions for some services that fall into what it calls a 'reader' category and has given other services a pass for a variety of reasons; it has even struck individual deals to bypass grabbing a cut. Still, Apple has decided thus far that Hey.com does not merit special treatment, even though there are also some subscription email apps that don’t offer in-app purchase technology and are allowed to operate on Apple’s platform (for now).”
</p>
</div>
<footer class="mt-8">
<div class="flex">
<div class="ml-4 lg:ml-0">
<div class="text-base leading-6 font-medium text-gray-900">Kara Swisher
</div>
<div class="text-base leading-6 font-medium">
<a class="text-indigo-600" href="https://www.nytimes.com/2020/06/19/opinion/apple-app-store-hey.html">
The New York Times
<br>
"Is It Finally Hammer Time for Apple and Its App Store?"
</a>
</div>
</div>
</div>
</footer>
</blockquote>
</div>
</div>
</div>
</section>
<section class="relative max-w-xl mx-auto px-4 sm:px-6 lg:px-8 lg:max-w-screen-xl">
<div class="relative mt-24 lg:mt-24 lg:grid lg:grid-cols-2 lg:gap-8 lg:items-start">
<div class="relative">
<h4 class="text-2xl text-center leading-8 font-extrabold text-gray-900 tracking-tight sm:text-3xl sm:leading-9">
AT&T U-Verse
</h4>
<div class="overflow-hidden">
<div class="px-4 py-5 sm:p-0">
<dl>
<div class="sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6 sm:py-5">
<dt class="text-sm leading-5 font-medium text-gray-700">
Status
</dt>
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2">
<span class="font-bold text-blue-500">Accepted</span> as of May 21, 2020
</dd>
</div>
<div class="mt-8 sm:mt-0 sm:grid sm:grid-cols-3 sm:gap-4 sm:border-t sm:border-gray-200 sm:px-6 sm:py-5">
<dt class="text-sm leading-5 font-medium text-gray-700">
Allows in-app sign-up?
</dt>
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2">
No
</dd>
</div>
<div class="mt-8 sm:mt-0 sm:grid sm:grid-cols-3 sm:gap-4 sm:border-t sm:border-gray-200 sm:px-6 sm:py-5">
<dt class="text-sm leading-5 font-medium text-gray-700">
Purchases possible without Apple?
</dt>
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2">
Yes, the technician will be there sometime between 6am and 9pm to install it.
</dd>
</div>
<div class="mt-8 sm:mt-0 sm:grid sm:grid-cols-3 sm:gap-4 sm:border-t sm:border-gray-200 sm:px-6 sm:py-5">
<dt class="text-sm leading-5 font-medium text-gray-700">
Found by
</dt>
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2">
<a class="text-purple-500" href="https://github.com/lperiodbose/youdownloadtheappanditdoesntwork/pull/4">MaxPower9 on GitHub</a>
</dd>
</div>
</dl>
</div>
</div>
</div>
<div class="mt-10 -mx-4 relative lg:mt-0">
<img class="shadow-lg relative mx-auto rounded-lg w-auto" width="490" style="height: 32rem;" src="att_uverse.png" alt="" />
</div>
</div>
</section>
<section class="relative max-w-xl mx-auto px-4 sm:px-6 lg:px-8 lg:max-w-screen-xl">
<div class="relative mt-24 lg:mt-24 lg:grid lg:grid-cols-2 lg:gap-8 lg:items-start">
<div class="relative">
<h4 class="text-2xl text-center leading-8 font-extrabold text-gray-900 tracking-tight sm:text-3xl sm:leading-9">
Green Employee
</h4>
<div class="overflow-hidden">
<div class="px-4 py-5 sm:p-0">
<dl>
<div class="sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6 sm:py-5">
<dt class="text-sm leading-5 font-medium text-gray-700">
Status
</dt>
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2">
<span class="font-bold text-blue-500">Accepted</span> as of January 21, 2020
</dd>
</div>
<div class="mt-8 sm:mt-0 sm:grid sm:grid-cols-3 sm:gap-4 sm:border-t sm:border-gray-200 sm:px-6 sm:py-5">
<dt class="text-sm leading-5 font-medium text-gray-700">
Allows in-app sign-up?
</dt>
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2">
No. The "Create Account" button requires joining the workspace of an already-active employer account.
</dd>
</div>
<div class="mt-8 sm:mt-0 sm:grid sm:grid-cols-3 sm:gap-4 sm:border-t sm:border-gray-200 sm:px-6 sm:py-5">
<dt class="text-sm leading-5 font-medium text-gray-700">
Purchases possible without Apple?
</dt>
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2">
Yes.
</dd>
</div>
<div class="mt-8 sm:mt-0 sm:grid sm:grid-cols-3 sm:gap-4 sm:border-t sm:border-gray-200 sm:px-6 sm:py-5">
<dt class="text-sm leading-5 font-medium text-gray-700">
Found by
</dt>
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2">
<a class="text-purple-500" href="https://github.com/lperiodbose/youdownloadtheappanditdoesntwork/pull/3">bennett-elder on GitHub</a>
</dd>
</div>
</dl>
</div>
</div>
</div>
<div class="mt-10 -mx-4 relative lg:mt-0">
<img class="shadow-lg relative mx-auto rounded-lg w-auto" width="490" style="height: 32rem;" src="greenemployee.png" alt="Green Employee iOS app" />
</div>