This blog is written to keep libraries versions,app version and gradle dependencies at single point So lets start coding… 1.App Versioning To keep the proper incremental build and proper version naming conventions we can keep the app version with following code in build.gradle file in app module def versionMajor = 1 def versionMinor = 0 def versionPatch = 0 def versionBuild = 1 // bump for dogfood builds, public betas, etc android { defaultConfig { applicationId “com.burhan.rashid.daggermvprx” versionCode versionMajor * …
Social Profiles