BREAKING:

Be a lazy but a productive android developer – Part 2 – Genymotion

In previous article, we have explored about dependency injection and RoboGuice library. Today I would want to talk about a tool which is found a great for the testing and development. I have been developing android since 1.5 🙂 and I have seen days and nights of Android and its emulator speed but yes I […]

Read More

Be a lazy but a productive android developer – Part 1- RoboGuice

I am sure you might be wondering and thinking about the title of the post :), but yes the title is perfectly suits best to developers, as far as I know we android developers are lazy in writing code like findViewById(), click listeners, etc. so how can we optimize throughput time for writing business logic […]

Read More

Issue: Using setJavaScriptEnabled can introduce XSS vulnerabilities

Issue: “Using setJavaScriptEnabled can introduce XSS vulnerabilities into you application review carefully”. Android Lint returns you the above warning whenever you enable JavaScript by calling setJavaScriptEnabled(true) method on the WebSettings for a WebView. Because WebView consumes web content that can include HTML and JavaScript, which may cause security issues if you haven’t used it properly. […]

Read More

Contextual Action bar (CAB) in Android

Before getting into the action bar and Contextual Action bar concept and coding for it, let me take you through the concept of 2 ways to show contextual actions: 1. Floating Context Menu 2. Contextual Action Mode

Read More

Introduction to Android Studio

Feeling good to be back at blog :). Actually I have been managing GDG Ahmedabad, delivering android talks and managing workshops locally and outside my regions. Last month, I was quite busy in organizing “DevFest” event for the GDG Ahmedabad and then for the preparation of my 2 talks for the GDG Kathmandu DevFest. I […]

Read More

Android – Volley library example

I am not sure whether you have heard “Volley” word yet but it’s the library on which one expert talk was delivered during Google I/O 2013 by Ficus Kirkpatrick. What is Volley library exactly for? Volley is a library that makes networking for Android apps easier and most importantly, faster. It manages the processing and […]

Read More

Android – Import projects from Git

There are many cases when we have requirement and need to clone Git repository, at that time we have to clone repository by using Git Client, FYI I have installed Git GUI client on my windows machine. By cloning this way, we have to import those project into eclipse manually. Now, What if there is […]

Read More