Skip to content

Update android.md #17

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 16, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions platform/android/android.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,10 +90,10 @@ Do not forget about OS temporary files (`.DS_Store` in Mac OS, `Thumbs.db` in Wi

* Use latest stable [Retrofit](http://square.github.io/retrofit/) to access RESTful web services
* [OkHttp](http://square.github.io/okhttp/) for more flexible networking (for example, when the API is not RESTful)
* [GSON](https://github.com/google/gson) for JSON serialization and parsing
* [GSON](https://github.com/google/gson) or [Moshi](https://github.com/square/moshi) for JSON serialization and parsing
* [Glide](https://github.com/bumptech/glide) or [Picasso](https://github.com/square/picasso) for image downloading, caching and displaying
* [Crashlytics](https://try.crashlytics.com) for crash logs
* [Dagger 2](http://google.github.io/dagger) for Dependency Injection
* [Dagger 2](http://google.github.io/dagger) or [Koin](https://github.com/InsertKoinIO/koin) for Dependency Injection
* [RxJava](https://github.com/ReactiveX/RxJava) for asynchronous programming
* Java [classes generator](http://www.jsonschema2pojo.org) by JSON scheme or JSON example. Compatible with Gson and Jackson
* Java code coverage library by EclEmma - [JaCoCo](http://www.eclemma.org/jacoco/)
Expand Down