Skip to main content
18
results
Andrew Fletcher
Recently a client handed me code that runs an app through iOS and Android.  No details about whether native or otherwise.  Once I had the opportunity to crawl through the code, definitely not native.  Typescript, Angular, Cordova... etc. Glancing at the modification dates, the last time something had been tweaked on the app as June 2021.  Which immediately raises a flag that there are potentially a lot of issues with the code.  At this stage my concern wasn't with how...
Andrew Fletcher
Goal: Restrict content access through username and password entry on an Nginx...
Andrew Fletcher
Only a month ago, running an app through the Android Studio emulator was running...
Andrew Fletcher
Warning from Google Play Store when uploading an App You must complete the...
Andrew Fletcher
Uploading a new version of an Android app to Google Play and I'm seeing this...
Andrew Fletcher
Whilst uploading a new version of our Android app, I had the following error display The Android App Bundle was not signed.The short answer is in the build type release debuggable isn't set to false.   How to solve In the build.gradle file (path: android > app) { buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } debug { debuggable false ...
Andrew Fletcher
If you have a situation where either you have forgotten a Keystore password or...
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
Goal: Restrict content access through username and password entry. 1: Apache...
Andrew Fletcher
Approaches to resolving “Module not specified” Error in Android Studio When attempting to run or debug the application on Android Studio you can come across the error “Module not specified” in the Android Studio.  This article will outline approaches I took to get a resolution to this issue.   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   Method 1 - Synchronise the project Let's...
Andrew Fletcher
Working in Android Studio when attempting to run a project I had the following...
Andrew Fletcher
How to apply a gradient tint over a background image? Set the background...
Andrew Fletcher
Working on formatting the date in Xcode, and you come across the situation where...
Andrew Fletcher
Adding a floating decimal point for n number of places is quite easy to achieve....