API calls made in Ionic 4 app not working on Android device
问题 I am able to run my ionic app on my laptop by using the ionic lab command. The app makes calls to the IMDB api, & displays data retrieved from it. Now, I am trying to run the app on an android device. by using the following command: ionic cordova run android --device . The app appears on my phone, but when I search for IMDB data, no results are appearing. Below is the service I am using to make calls to the API: export class MovieService { url = 'http://www.omdbapi.com/'; apiKey = 'myKey';