-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
91 lines (91 loc) · 2.75 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Mobile App Engineer Coding Challenge</title>
<!--<link rel="stylesheet" href="style.css">-->
<!--<script src="script.js"></script>-->
</head>
<body>
<h1>Mobile App Engineer Coding Challenge</h1>
<h2>iOS</h2>
Create iOS application.<br />
NOTE: Please refrain from releasing it to public so that everyone has equal opportunities.
<h3>Requirements</h3>
<ul>
<li>Deployment target: 13.0 or higher</li>
<li>Using Swift</li>
</ul>
<h3>Details</h3>
<ul>
<li>Draw JSON Data on View</li>
<ul>
<li>Use response from calling actual <a href="https://moneyforwardvietnam.github.io/example-feed/feed.json">API</a></li>
</ul>
<li>You may use any architecture, for example: MVC, MVVM, MVP, Clean Architecture, etc.</li>
<li>You may use OSS libraries.</li>
<li>You have to use UITableView or UICollectionView</li>
</ul>
<pre>
API:
GET https://moneyforwardvietnam.github.io/example-feed/feed.json
Response:
{
“articles”: [
{
“title”: “title1”,
“description”: “description1”,
“image”: “https://xxxxx.xxxx.xxx/image.png”,
“detail”: “detail1”
},
{
“title”: “title2”,
“description”: “description2”,
“image”: “https://xxxxx.xxxx.xxx/image.png”,
“detail”: “detail2”
},
…
</pre>
<h3>Specification</h3>
<img src="images/app-requirement.png" />
<h2>Android</h2>
Create Android application.
<h3>Requirements</h3>
<ul>
<li>API Level 29 (Android 10) or higher</li>
<li>Using Java or Kotlin</li>
</ul>
<h3>Details</h3>
<ul>
<li>Draw JSON Data on View</li>
<ul>
<li>Use response from calling actual <a href="https://moneyforwardvietnam.github.io/example-feed/feed.json">API</a></li>
</ul>
<li>You may use any architecture, for example: MVVM, MVP, Clean Architecture, etc.</li>
<li>You may use OSS libraries.</li>
<li>You have to use RecyclerView</li>
</ul>
<pre>
API:
GET https://moneyforwardvietnam.github.io/example-feed/feed.json
Response:
{
“articles”: [
{
“title”: “title1”,
“description”: “description1”,
“image”: “https://xxxxx.xxxx.xxx/image.png”,
“detail”: “detail1”
},
{
“title”: “title2”,
“description”: “description2”,
“image”: “https://xxxxx.xxxx.xxx/image.png”,
“detail”: “detail2”
},
…
</pre>
<h3>Specification</h3>
<img src="images/app-requirement.png" />
</body>
</html>