Skip to main content
37
results
Andrew Fletcher
The error you're encountering indicates an issue with the ffi gem during the CocoaPods update. The error message suggests trying to run the gem pristine command to fix it. Using terminal - run the following command: gem pristine ffi --version 1.16.3This command will attempt to restore the ffi gem to its pristine state, resolving any issues with its extensions. After running this command, try running pod update again pod updateIf you encounter any permission issues, you might need to use...
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
Creating a foreach loop such as  var maxDigits: Int = 5 private var...
Andrew Fletcher
The challenge I was facing, I had written a script to scan barcodes and use...
Andrew Fletcher
This article works through the steps to update dependencies in package.json file to the latest version. Use npm-check-updates or npm outdated to suggest the latest versions. npm-check-updates is a utility that automatically adjusts a package.json with the latest version of all dependencies npm install -g npm-check-updates ncu -u npm installHowever, a less intrusive (avoids a global install) way of doing this if you have a modern version of npm is: npx npm-check-updates -u npm...
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
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 app with live reload ionic cap run {platform} -l --externalReplace {platform} with Android or iOS depending on your environment as follows Android android iOS ios To open in Android ionic cap run android -l --externalYou'll be prompted to select a emulator (depending what you have loaded) ? Which device would you like to target? Pixel 3 API 31 (emulator) (Pixel_3_API_31) Pixel 5 API 27 (emulator)...
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
It appears that the plugin or file path is not working how it used to be on...
Andrew Fletcher
In Xcode and executing a run command, the response error was: { "name":...