Posting Data remotely throw Wifi to wampserver

Hi , everybady Ihope everything is Ok
I created an ionic application a,d after generating .apk , I want to test it from device .So I connected both Pc and Telefone through wifi and I autorized apache access remotely , I changed the httpd.conf in this way :slight_smile:

Options FollowSymLinks AllowOverride All # Require all denied Allow from All Allow from 192.168.1

and httpd-vhost.conf like

Virtual Hosts

<VirtualHost *:80>
ServerName localhost
ServerAlias localhost
DocumentRoot β€œ{INSTALL_DIR}/www" <Directory "{INSTALL_DIR}/www/”>
Options +Indexes +Includes +FollowSymLinks +MultiViews
AllowOverride All
Require all granted
Allow from All
Allow from 162.168.1
Require ip 192.168.1

also I changed the file Alias/phpmyadmin.conf in this way

<Directory β€œc:/wamp64/apps/phpmyadmin4.7.4/”>
Options +Indexes +FollowSymLinks +MultiViews

AllowOverride all

Require all granted
</ifDefine>
<ifDefine !APACHE24>
	Order Deny,Allow
Deny from all
Allow from localhost ::1 127.0.0.1
Allow from 192.168.1
</ifDefine>

To import big file you can increase values

php_admin_value upload_max_filesize 128M
php_admin_value post_max_size 128M
php_admin_value max_execution_time 360
php_admin_value max_input_time 360

all those change in orger to autorize remote access to apache.

when I try to access the application throw the chrome navigator it works fine, but with .apk file not thing is working , I can’t do login to my application and no error message is given.

can you please help , and what is possible to do in order to show logs files