developer resources
Codebales holds an ever growing number of solutions to problems that we have experienced in our day to day code writing
492
results
Andrew Fletcher
•
Each time a release is prepared for Google Play, the steps I work through are as follows.
Preparation to run a build
Check the Gradle build settings
Directed to the build.gradle file using the following file path
~/android/app/The area of code in the build-gradle file to focus:
android {
signingConfigs {
debug {
storeFile file('{file-path}/private_key.pepk')
storePassword '{password}'
keyAlias '{alias}'
keyPassword '{password}'
...
Andrew Fletcher
•
Something I haven't had to do in a while is to change the name of a Git branch...
Andrew Fletcher
•
Post a NetSkope update, composer would fail when running any command that...
Andrew Fletcher
•
By default the maximum file upload size is set to 2MB. It is not a...
Andrew Fletcher
•
Attempting to run a preview, and I'm seeing the following error in Android...
Andrew Fletcher
•
Twig error
Twig\Error\SyntaxError: Unknown "filter" tag. in Twig\Parser->subparse() (line 6 of themes/custom/{theme}/templates/views/views-view-field--products--field_product_type.html.twig).Line 6 of the views-view-field--products--field_product_type.html.twig file is
{% filter upper|escape('html') %}The actual Twig file code
{% filter upper|escape('html') %}
{{ view.field.field_product_type.original_value -}}
{% endfilter %}In Drupal 10, this is producing the error noted above -...
Andrew Fletcher
•
Post upgrading from Drupal 9.5.10 to Drupal 10.1.3, I was seeing the following...
Andrew Fletcher
•
I need to generate a patch and then apply automatically to my Drupal...
Andrew Fletcher
•
In the terminal type, the following command:
sudo apt updateAfter typing the...
Andrew Fletcher
•
To get Flysystem S3 ready for Drupal 10, I needed to apply the latest patch to...
Andrew Fletcher
•
To PATCH a user is to update an existing user... actually the current user logged in.
An introduction to PATCH command can be viewed on the Node PATCH command screen. Secondly, review the user API, as it outlines the structure for each of the fields that can be included. Finally, if you haven't already reviewed the introduction into setting up RESTful hal+json refer to the set-up documentation. Also see the Query - user screen. To be able to...
Andrew Fletcher
•
Updating to Drupal 10
Begin by upgrading Drupal 9 to the latest version....
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...