Hello, I've been trying to fix this problem for 2 days but I am always blocked..
I am developing a hybrid app for Android/iOS. I use Sencha Touch 2.2b and compile the project on PhoneGap build.
I installed a local weinre server on my PC which is in the same LAN of my iPad.
Here's my parameters :
weinre server's ip :
with port 8081 because wampp occupied the 8080.
in the config.xml, (I use phonegap 2.5.0)
<preference name="load-url-timeout" value="60000" />
The project contains 2 pages html :
main : an empty page who load index.html (I tried this in order to minimize page loading-time, learnt from another post)
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html class="ui-mobile-rendering">
<head>
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<script>
window.location='./index.html';
</script>
<body>
</body>
</html>
and in "index.html" I've included phonegap.js as well as
Everything seems correct, but
when I launch my app, the target list is empty...
I made several tests who may help figure out the problem :
- the iPad and PC are both connected to the same LAN by wifi
- I checked the PC's firewall, added my iPad ip on the list of authorisation
- From Safari on iPad, I can connect to
- The demo website works fine on my iPad : the target list contains my iPad's IP.
- If I test my own website from PC's Chrome, weinre detects my PC.
Only when I compile my website and install it on iPad, weinre detects nothing.
I don't have a Mac and my hybrid app has some mysterious bugs that I can't fix without console logs.. weinre is a super tool but I'm sad that I can't set it work..
All help is welcome, thanks in advance. ^_^