During the development of a recent mobile app, I was retrieving data using a rest api. The web app was working fine and displaying the data. When I deployed to the Android device, I was receiving no data and the following error when calling the api: Error Code: 0Message: Http Failure response for [rest api…
Category: Uncategorized
Adding the Version Number in your app
One of the things I like to do with my apps is to add the version number somewhere within the app. Most of the time I place it in the footer of the sidemenu or in the About page of the app. This of course is great for support purposes when the user has a…
Example Angular 8 with NgRx and Redux DevTools
This was a fun little example and can be used as a template to get started with other projects using Angular 8, NgRx, and Ionic 4. Here’s what is used: Angular 8 NgRx Store 8.3.0 NgRx Store DevTools 8.3.0 For fun, Ionic 4.7.1 To build and run this example, clone the GitHub repo here: https://github.com/jarodms/ionic4-angular8-ngrx-example…
Ionic 4 -Using a Custom Icon in a Tab
I was working on a project that needed a custom icon in the TabBar using Ionic 4 and a single custom icon. I had done this before for Ionic 3 with Fontawesome Icons. It took some trial and error, along with looking at GitHub issues, but I think I finally have it figured out. And…