Skip to content

Commit c359164

Browse files
authored
Merge pull request #6 from isoguzay/task/update-readme
task/update-readme
2 parents 41f8b53 + 4e12869 commit c359164

File tree

10 files changed

+97
-3
lines changed

10 files changed

+97
-3
lines changed

β€ŽREADME.mdβ€Ž

Lines changed: 97 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,99 @@
1-
# Adyen Android Assignment
1+
# Adyen Android Assignment - Ismail Oguzhan Ay
2+
3+
![Latest Version](https://img.shields.io/badge/latestVersion-1.0-yellow) ![Kotlin](https://img.shields.io/badge/language-kotlin-blue) ![Minimum SDK Version](https://img.shields.io/badge/minSDK-21-orange) ![Android Gradle Version](https://img.shields.io/badge/androidGradleVersion-7.1.1-green) ![Gradle Version](https://img.shields.io/badge/gradleVersion-7.0.4-informational)
4+
5+
An android assignment project with Jetpack Compose, Coroutines, ViewModel, LiveData, Retrofit, Hilt and based on MVVM by using FourSquare Place API and Google Maps Compose.
6+
7+
## β„Ή Introduction
8+
9+
It is about a demonstration application with FourSquare Place API. You get places(venues) information from FourSquare Place API service, then shows them on Google Maps. When you click on a place(marker on map), get details about the place. It starts with Adyen location, if you want see your current location places, you can click my location button and get them.
10+
11+
## What You Will Need
12+
13+
**Hardware Requirements**
14+
- A computer that can run Android Studio.
15+
- An Android phone for debugging.
16+
17+
**Software Requirements**
18+
- Android SDK package
19+
- Android Studio 4.X
20+
21+
## πŸ›  Features
22+
23+
- Get location permissions
24+
- Get user current location
25+
- Show nearby places on Google Map
26+
- Show places information on Google Map
27+
28+
## πŸ“± Screenshots
29+
30+
<p align="center">
31+
<img src="docs/1.png" width="32%"/>
32+
<img src="docs/2.png" width="32%"/>
33+
<img src="docs/3.png" width="32%"/>
34+
</p>
35+
36+
<p align="center">
37+
<img src="docs/4.png" width="32%"/>
38+
<img src="docs/5.png" width="32%"/>
39+
<img src="docs/6.png" width="32%"/>
40+
</p>
41+
42+
<p align="center">
43+
<img src="docs/7.png" width="32%"/>
44+
<img src="docs/8.png" width="32%"/>
45+
<img src="docs/9.png" width="32%"/>
46+
</p>
47+
48+
## πŸ“² Download
49+
50+
Go to the [Releases](https://github.com/isoguzay/FoursquareApiCompose/releases) to download the latest APK.
51+
52+
## πŸ— Tech Stack
53+
54+
### Architecture
55+
56+
- 100% Kotlin based, including Gradle files
57+
- MVVM Clean & Single-Based Architecture
58+
- Repository Pattern
59+
60+
### Libraries
61+
62+
- Minimum SDK level 21 + based on [Kotlin](https://kotlinlang.org/)
63+
64+
- [Coroutines](https://github.com/Kotlin/kotlinx.coroutines) & [Flow](https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines.flow/) - Perform asynchronous operations
65+
66+
- [Hilt](https://dagger.dev/hilt/) - for dependency injection
67+
68+
- Jetpack Libraries
69+
- [Compose](https://developer.android.com/jetpack/compose/documentation) - Build modern declarative Android UI
70+
- [Lifecycle](https://developer.android.com/jetpack/compose/lifecycle) - Observe lifecycle state changes
71+
- [ViewModel](https://developer.android.com/topic/libraries/architecture/viewmodel) - Store UI related data
72+
73+
- [Retrofit Client](https://square.github.io/retrofit/) - Execute network service calls
74+
- [Splash API](https://developer.android.com/guide/topics/ui/splash-screen) - Customize your Splash without effort
75+
- [Timber](https://github.com/JakeWharton/timber) - Log your messages
76+
77+
### Services
78+
79+
- [FourSquare API Service](https://developer.foursquare.com/docs/places-api-getting-started) - FourSquare API πŸ—ΊπŸ“
80+
- [Google Maps Compose](https://developers.google.com/maps/documentation/android-sdk/maps-compose) - Google Maps with Jetpack Compose 🌍
81+
82+
## πŸ“ How to get the Foursquare API key?
83+
84+
Register [here](https://developer.foursquare.com/docs/manage-api-keys) and get your own Foursquare API key for your builds. You should add your API key to local.gradle.
85+
86+
## 🌍 How to get the Google MAPS API key?
87+
88+
Register [here](https://developers.google.com/maps/documentation/android-sdk/maps-compose) and get your own Google Maps API key for your builds. You should add your API key to as a meta-data under the AndroidManifest.xml file.
89+
90+
91+
92+
# πŸ’³ Cash Register
93+
94+
95+
96+
# Adyen Android Assignment - Requirements
297

398
This repository contains the coding challenge for candidates applying for a Senior Android role at Adyen.
499
It consists of two unrelated parts:
@@ -25,5 +120,4 @@ You are free to add any feature or code you want, but we also value quality over
25120

26121
### Setup
27122
Add your Foursquare client ID and secret to `local.gradle`. See `local.gradle.example` for details.
28-
Tip: You can verify your credentials with `src/test/java/com/adyen/android/assignment/PlacesUnitTest.kt`# FoursquareApiCompose
29-
# FoursquareApiCompose
123+
Tip: You can verify your credentials with `src/test/java/com/adyen/android/assignment/PlacesUnitTest.kt`# FoursquareApiCompose

β€Ždocs/1.pngβ€Ž

28.9 KB
Loading

β€Ždocs/2.pngβ€Ž

65.7 KB
Loading

β€Ždocs/3.pngβ€Ž

62.1 KB
Loading

β€Ždocs/4.pngβ€Ž

61.9 KB
Loading

β€Ždocs/5.pngβ€Ž

321 KB
Loading

β€Ždocs/6.pngβ€Ž

318 KB
Loading

β€Ždocs/7.pngβ€Ž

358 KB
Loading

β€Ždocs/8.pngβ€Ž

527 KB
Loading

β€Ždocs/9.pngβ€Ž

551 KB
Loading

0 commit comments

Comments
Β (0)