Skip to main content
25
results
Andrew Fletcher
In Vim, following is an outline of the vi(m) functions you can utilise whilst in command mode - yes they are case sensitive action outcome a change to insert mode (after cursor) A change to insert mode (at end of line) dd delete one line G go to end of the file 1G go to top of the file i change to insert mode (before cursor) J merge next line with this one p paste deleted or yanked text after cursor P paste deleted or yanked text before cursor r replace one...
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 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 existThis is a problem with plugins using old Android support dependencies instead of the AndroidX equivalent.  As it's a dependency issue, to resolve add jetifier.  I know yet another package... npm install jetifier npx jetify npx cap sync  Tools Ionic CLI : 6.20.1 (/usr/local/lib/node_modules/@ionic/cli) Ionic Framework : @ionic/angular 6.2.0 ...
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...
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 error Unable to determine application id: com.android.tools.idea.run.ApkProvisionException: ERROR: APK path is not specified for module "android"   Tools Tool Version Android Studio Chipmunk | 2021.2.1 OS OSX - Big Sur 11.6.7 Ionic CLI 6.20.1 Node 18.0.0 Cordova cli: 11.0.0   Approaches to resolving this issue Rebuild project First, rebuild the project Build > Rebuild projectTry...
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":...
Andrew Fletcher
In Xcode attempting to build or run an app, I receiving a framework...
Andrew Fletcher
Working through an app project I inherited using Ionic, Angular and ngx-leaflet...