Emre Davarcı

Android Developer

Articles About

Create awesome warnings using Noty

In mobile apps, we would like to show little warnings/dialogs/notification when an important thing happens. This important thing can be a download complete notification, a message alert or an update required warning. In this way we inform the user and they feel more confortable. For this purpose here is Noty, an open source library for creating animated custom warnings/dialogs.

CONTINUE READING



5 tips for speeding up your Gradle builds

Gradle is a very useful tool for Android developers. Unfortunatelly, it needs a little bit speed boost. Every Android developer knows that feel when we have to add a new library to the Gradle file. Adding another library means we will wait for Gradle to sync our project, again, and waiting for this is really annoying sometimes. But we can speed it up with some little tricks.

CONTINUE READING



Easily generate JSON model from JSON string using GsonFormat

In this post, I will explain a very useful tool, GsonFormat, for Android Studio, which can convert a JSON string to a Java class.

CONTINUE READING



Implementing publisher/subscriber pattern using EventBus

Publisher/subscriber pattern is widely used in Android applications. It is mostly used in Activity-Fragment communication, Services and AsyncTasks. In this pattern, a subscriber waits a message from publisher when something happens. This message can be anything.

CONTINUE READING