Skip to main content
36
results
Andrew Fletcher
In our projects, team members frequently generate new Git branches linked to the same Jira number, resulting in cluttered and disorganised structures that can pose challenges for both current and future developers. For instance: Jira: ABC-123 Ticket work: Reformat headers Over time, these branches accumulate and become disorganised, resulting in names like: ABC-123-reformat-headers ABC-123-format-headers ABC-123-format-header This can lead to a cluttered and inefficient workflow. It's preferable...
Andrew Fletcher
If the Android app icon is not changing from the default icon (in my situation...
Andrew Fletcher
I'm receiving an issue with a previous release on Google...
Andrew Fletcher
The "keystore password was incorrect" error in keytool indicates that the...
Andrew Fletcher
How to generate a new private key and submit it to Google Play for signing your...
Andrew Fletcher
git reset, git revert, and git cherry-pick are three Git commands used for different purposes related to managing your version control history. Here's a brief overview of each command: git reset git revert git cherry-pick  Snapshot git revert is to roll back to a previous version of the repo you're working on git reset simply wipe all changes made since the last commit.  You don't want to commit the changes you have locally, however, you want to reinstate the conditions as they...
Andrew Fletcher
Loading the code in a platform - in this article, I'll be focusing on Android...
Andrew Fletcher
The error > Task :app:packageDebug FAILED Execution failed for task...
Andrew Fletcher
git clone git@bitbucket.org:{username}/{repo}.git And I was unceremoniously...
Andrew Fletcher
Each time a release is prepared for Google Play, the steps I work through are as...
Andrew Fletcher
Something I haven't had to do in a while is to change the name of a Git branch both local and remote.   Steps to renaming a branch Rename your local branch: If you are on the branch you want to rename: git branch -m new-nameWhereas, if you're on a different branch: git branch -m old-name new-nameDelete the old-name remote branch and push the new-name local branch: git push origin :old-name new-nameReset the upstream branch for the new-name local branch:Switch to the branch and then: git...
Andrew Fletcher
Attempting to run a preview, and I'm seeing the following error in Android...
Andrew Fletcher
Resources Type Version Android Studio Android Studio Giraffe | 2022.3.1...
Andrew Fletcher
Updating the Android app and while testing I'm seeing the following error in the...
Andrew Fletcher
Git filename error when running the git add command.  The error I'm...