Select Page
Versioning an Android app [How & Why]

Versioning an Android app [How & Why]

Versioning is the creation and management of multiple releases of a product, all of which have the same general function but are improved, upgraded or customised. To define the version information for your Android app, set values for the version settings in the Gradle...
Gradle the Build System for Android

Gradle the Build System for Android

Gradle is the build system that takes the best features from other build systems (Ant & Maven) and combines them into one. It is a plugin based system. It builds APK by using all the source files, then applies the appropriate tool (java class into dex file), and...
Basic terminology of the Android platform

Basic terminology of the Android platform

While diving into development we must know the basic things briefly, then only we can build things better. We need to setting strong foundation, then we can easily build blocks on top of it. Activity : An Activity is an application component that provides a screen...
How to display an alert dialog in Android?

How to display an alert dialog in Android?

Android Alert Dialog is one of the most important and basic component in Android applications. A Dialog is a small window that prompts the user to a decision or enters additional information. Components Title : Title of the alert dialog (Optional) Message : This...
Pick image from gallery or camera

Pick image from gallery or camera

An image is a representation of visual information such as drawings, pictures, graphs, logos, or individual video frames. Nowadays image sharing is an everyday routine. To share images with others, from an android app, user has two choices: Capture image from camera...