Git commands one more time

This is actually based and mostly copied from great article of Eli Schleifer, read all here: https://blog.trunk.io/minimum-viable-git-for-trunk-based-development-81a5da7a77a7 Branch Management git checkout -t -b {branch-name} Make a branch, set the upstream to the current branch, and switch to it. You can also do this via the `git branch` command, but it takes multiple commands. Since I always want to… Czytaj dalej Git commands one more time

How to add commit hash as a build version

Oftentimes you will need to know which exactly build of the application user needs. For your regular users version name should be enough, but when it comes to your testers, you will probably give them multiple version between releases to test. This is why you may want to add build version also to your application… Czytaj dalej How to add commit hash as a build version

How to implement in-app update to your app

Sometimes you may want to force or encourage your users to update your app – maybe you fixed some annoying bug, or you added this amazing feature that is gonna to change lives. Fortunately some time ago Google added this nice option to add in-app update feature to our apps. However this seems not to… Czytaj dalej How to implement in-app update to your app

Awesome Kotlin Extensions for your project

Kotlin extensions are one of my favourite kotlin features! It gives you freedom of creating new functions for some old or big classes, which you don’t really want to override. Recently I found some great article with bunch of very useful kotlin extensions which can be used in our Android projects. Let’s take a look… Czytaj dalej Awesome Kotlin Extensions for your project