Skip to main content
36
results
Andrew Fletcher
Post creating a new branch in the repo, next step was to run the checkout command locally.  On my local environment I ran the following command git checkout {branch-name}However, the response was error: pathspec '{branch-name}' did not match any file(s) known to git  Solution The issue while the new branch is known in the repo, it's not known in my local environment.  To make the new branch known you need to run the fetch command git fetch --allResponse remote: Enumerating...
Andrew Fletcher
Issues with sign in key... When attempting to upload a APK package, I'm getting...
Andrew Fletcher
Only a month ago, running an app through the Android Studio emulator was running...
Andrew Fletcher
I'm in an environment where the default branch is staging and I'm attempting to...
Andrew Fletcher
How do you remove a file from git? Use the command (rm) to remove files from...
Andrew Fletcher
Moving a Git repo due to a change of agencies   Steps to change the repo: 1. Create a temporary directory Create a temporary directory obviously where your other sites are located locally.  For me, this is in the Sites directory. mkdir temp-dir  2. Clone Begin by cloning the current repo in the directory generated above username@25.123.212.231:/opt/git/proj.git  3. Directory Go into the temp-dir directory and view see a list of the different branches: git branch -aA...
Andrew Fletcher
Warning from Google Play Store when uploading an App You must complete the...
Andrew Fletcher
Uploading a new version of an Android app to Google Play and I'm seeing this...
Andrew Fletcher
Whilst uploading a new version of our Android app, I had the following error...
Andrew Fletcher
If you have a situation where either you have forgotten a Keystore password or...
Andrew Fletcher
What I'm seeing in Android Studio when attempting to run the emulator? Launching 'app' on Pixel 5 API 33. Install successfully finished in 153 ms. $ adb shell am start -n "{project}.app.MainActivity" -a android.intent.action.MAIN -c android.intent.category.LAUNCHER Timed out waiting for process (com.{project}.app) to appear on Pixel_5_API_33 [emulator-5554].As an error, this gives no intel.  So go to logcat tab and change the 3rd dropdown to error what do you see? For me, I get...
Andrew Fletcher
Android Studio error Installation did not succeed. The application could not be...
Andrew Fletcher
Android Studio error error: package android.support.v4.content does not...
Andrew Fletcher
Android Studio build errors Build failed error: cannot find symbol if...
Andrew Fletcher
Approaches to resolving “Module not specified” Error in Android Studio When...