I have a PHP backend with URLs that return data to my front end with Angular. It works normally because they are in the same domain. In the case of an android app that is outside the domain, will I have problems?
I have a PHP backend with URLs that return data to my front end with Angular. It works normally because they are in the same domain. In the case of an android app that is outside the domain, will I have problems?
You will, but not because of Android, but because of your server that needs to be configured to accept connections from other domains. This is then a more relative question to PHP than to Android.
Android will only need to be allowed to make a remote connection on AndroidManifest.xml
.