Skip to main content
33
results
Andrew Fletcher
Lando is a local development environment tool, and it might not directly support the installation of system-wide packages like libGL. However, you can make sure that the required dependencies are included in your application's environment by modifying its configuration.   Here's a general approach to include libGL in your Lando configuration   Create a .lando.yml Configuration File If you don't have a .lando.yml file in your project, create one at the root of your project. If you...
Andrew Fletcher
Lando is a development environment tool that makes it easier to set up and...
Andrew Fletcher
Create a Lando setup running Drupal 10. The command you provided appears to be a...
Andrew Fletcher
Loading the code in a platform - in this article, I'll be focusing on Android...
Andrew Fletcher
Recently a client handed me code that runs an app through iOS and Android....
Andrew Fletcher
This is a relatively quick process, beginning with dropping the database tables lando drush sql-drop -yImport a MySQL database lando db-import {filename} such as lando db-import riverdev.2022-10-03-1664769553.sql.gzRebuild cache lando drush crFinally, export your config lando drush cex  If you know your MySQL filename, you can always chain these commands: lando drush sql-drop -y && lando db-import riverdev.2022-10-03-1664769553.sql.gz && lando drush cr &&...
Andrew Fletcher
Import a database lando db-import doj.sqlEnter the MySQL database lando mysql...
Andrew Fletcher
This article works through the steps to update dependencies in package.json...
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 (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
Initialise your Capacitor config​ To initialise Capacitor use the CLI...
Andrew Fletcher
Run the NPX commands to update the app npm run build && npx cap syncRun...
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...