developer resources
Codebales holds an ever growing number of solutions to problems that we have experienced in our day to day code writing
Selected filter
42
results
Andrew Fletcher
•
Android Studio build errors
Build failed error: cannot find symbol if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.R)or
cannot find symbol Build.VERSION.SDK_INT >= Build.VERSION_CODES.S &&
To resolve - upgrade the compileSdkVersion and targetSdkVersion to 31 in your grade file. Note, this setting could be in one of the following files
android/app/build.gradle
android/variables.gradle
Also note - Build.VERSION_CODES.R only exists in API 30.
The...
Andrew Fletcher
•
Approaches to resolving “Module not specified” Error in Android Studio
When...
Andrew Fletcher
•
Working in Android Studio when attempting to run a project I had the following...
Andrew Fletcher
•
Currently, I have a situation where I have two repositories. The first is...
Andrew Fletcher
•
Working from the bases that .DS_Store has not been added to your git repository,...
Andrew Fletcher
•
Adding git tag to your actions.
The regular process that I work to is
git add -A
git commit -m "some comment"
git pushWith git tag, whilst there are many options for how you can apply git tag, this initial step I'll keep simple. As follows:
git add -A
git commit -m "some comment"
git tag some note
git pushI'm looking to trigger a GitHub pipeline action. The trigger in this instance is dev-*
So if the tag has something with dev-, then the pipeline trigger occurs. By way of...
Andrew Fletcher
•
If you edit a Drupal contrib module, the next time the module is updated those...
Andrew Fletcher
•
Changing git push from passphrase? There are several ways to tackle this...
Andrew Fletcher
•
I had been running a few Centos 6 servers just past their EOL (30th November...
Andrew Fletcher
•
I need to set the default php-version of a subscription to php7.3. The...
Andrew Fletcher
•
(104)Connection reset by peer: mod_fcgid: error reading data from FastCGI server
Set up:
Plesk Obsidian 18.0.28
Centos 7
Like any error that pops up, the real check is how do you react?
Keep and calm and investigate - even if colleagues are stressed out;
Grab a stress ball and work on it hard; or
Join and stressed out party and lose perspective.
I haven't seen this one before. A quick search through Google and I discovered a solution on Virtualmin. However, they write about...
Andrew Fletcher
•
To add ejabberd and run MYSQL to the server I needed to update the server...