Skip to main content
32
results
Andrew Fletcher
Loading the code in a platform - in this article, I'll be focusing on Android and iOS.  Ionic app shell prompts for iOS and Android devices.   Here's a breakdown of the commands: npm run build This command is used to build your web app. It's typically associated with web development frameworks like Angular, React, or Vue. It compiles your web app source code into production-ready files. npx cap sync This command is part of Capacitor. It synchronizes the web app's built files with the...
Andrew Fletcher
Recently a client handed me code that runs an app through iOS and Android....
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
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...