If your app’s minSdkVersion is set to 21 or higher, then multidex is enabled by default and you don’t have to do anything to enable, you can skip this tutorial. No, if your minSdkVersion is set to 20 or lower, then you must use the multidex support library and read this article to know how […]
Build Level Variables And Methods Using Gradle
This topic written about build environment of an android studio application. It will discuss on how to write variables and methods at build configuration level. Such variables and functions, they will be independent of build variants and able to provide information about build variant to the application. During our development of an android application we […]
How To Update Gradle Plugin In Android Studio
This article will explain how to update Gradle plugin to latest version. You can check the latest version through this weblink where Gradle Team announces their latest releases https://gradle.org/releases/ Note: Gradle and Gradle Plugin are different. Android Plugin can run/update independent of Android Studio. Normally IDE will automatically ask you to update Gradle when you […]
How To Auto Increment Build Number Using Gradle
What Is A Build Number? A build number uniquely identifies unreleased or released application and we can find out build number in version name. Most commonly used Version Name format is MAJOR.MINOR.REVISION.BUILDNUMBER. The change in the respective places signifies type of the release, i.e, major, minor or revision. Where build number is total number of build […]