4ools / Marvelicious

Android application to browse the Marvel catalogue

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Marvelicious

πŸŽ“ App written and maintained to lean latest Android and Kotlin practices

πŸ”¨ Sample implementation for real-world Android use cases.

Marvelicious

is an android app built to learn and see with live example the latest tech provided by the community.

The app consumes the api https://developer.marvel.com/ provided by the good people of Marvel.

πŸš—The application is still a WIP, and contributions, suggestions will be highly appreciated.

πŸ”§ Project Setup

Android studio and gradle magic will do everything for you, so just fork, clone and let android studio do its job. There is one small pre-req of using the app though. Since the app uses the Marvel api, you have to get a couple of keys to be able to consume the API. The direction on how to get the api can be found on the following page.

Since the API Keys should be confidential especially considering marvel has a limited number a call that can be made to the api per day, it is essential that the keys not be checked in. Once you have your keys, you can put them in your local gradle.properies file.``

MARVEL_API_PUBLIC_KEY="xxxxxxxxxxxx"
MARVEL_API_PRIVATE_KEY="xxxxxxxxxxxx"

They are then overwritten by gradle and can be accessed in the code as

val publicKey = BuildConfig.MarvelPublicApiKey
val privateKey = BuildConfig.MarvelPrivateApiKey

πŸƒβ€β™‚οΈπŸƒβ€β™€οΈFor now thats pretty much it for you to be able to start running the app locally!

The app uses many new cool features from Android. I, may be with the help of other contributors, try to document more about them in the readme Soon, I will also write a blog on the complete journey of start to finish (hopefully one day) πŸ˜…πŸ™ˆ of the project.

For now this is the list of dependencies the app uses:

πŸ’³ Libraries used

  • Support Libraries
  • Constraint Layout
  • Android Navigation
  • Kotlin oroutines
  • Retrofit
  • Okhttp logger
  • Moshi
  • Joda time
  • Architecture Components, ViewModel and LiveData
  • Glide
  • Room
  • WorkManager
  • Android Paging
  • Junit
  • Android X Junit Extension
  • Espresso
  • MultiDex

πŸ‘·β€β™€οΈ Contributing πŸ‘·β€β™‚οΈ

I am learning Android/ Kotlin myself, therefore would love to have some feedback, advise and help. If you wish to contribute, have an idea, think about some new use cases on how to use the awesome api provided from marvel, or may be make the code better by following SOLID principles or some know other good desing patterns, feel free to just open an issue, create a pull request. This app is still very much in its beginning phase, a lot of things are open to be added

LICENSE

   Copyright 2020 Marvelicious Contributors

   Licensed under the Apache License, Version 2.0 (the "License");
   you may not use this file except in compliance with the License.
   You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.

About

Android application to browse the Marvel catalogue

License:Apache License 2.0


Languages

Language:Kotlin 100.0%