[Solved] How can I send POST data from android to php without using INTERNET permission? [closed]


No, there is no approach to do this, you need the internet permission as this allows android to use internet protocols (like TCP, Transmission Control Protocol which is one of the core protocols and is needed to send POST data -via a HTTP request-) So without the INTERNET permission there can be no data transference using internet protocols between android and the server (I’m assuming your are talking about the php being on a server).

solved How can I send POST data from android to php without using INTERNET permission? [closed]