Skip to main content
27
results
Andrew Fletcher
Docker containers list To view a list of Docker containers that are currently running, you can use the docker ps command. Open your terminal or command prompt and run the following command: docker psThis command will display a list of running containers, showing information like the container ID, image name, status, ports, and more. If you want to see all containers, including those that are not currently running, you can use the following command: docker ps -aThe -a option shows all containers,...
Andrew Fletcher
Recently a client handed me code that runs an app through iOS and Android....
Andrew Fletcher
Working in an AWS ec2 environment, my goal is to access the server via...
Andrew Fletcher
Only a month ago, running an app through the Android Studio emulator was running...
Andrew Fletcher
Build the PHP base image with apache-buster using the Dockerfile.base Since JN...
Andrew Fletcher
Warning from Google Play Store when uploading an App You must complete the advertising ID declaration before you can release an app that targets Android 13 (API 33). We'll use this declaration to provide safeguards in Play Console to accommodate changes to advertising ID in Android 13. Apps targeting Android 13 or above and using advertising ID must include the com.google.android.gms.permission.AD_ID permission in the manifest.Work through the Advertising question.  I know the app doesn't...
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...
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 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
As a web developer, you will most likely need to run local copies of a bunch of...
Andrew Fletcher
Running Docker Dangerous word... I'm assuming that Docker is installed....