Have you tried to refresh or restart it? You might want to recheck setting the HTTP Proxy to manual and recheck that your local dev machine and your device are on the same wifi network. Also, make sure your IP is right and the proxy is running.
NOTE that if you use SSL for your data requests:
-Go to Proxy -> Proxy Settings -> SSL -> Check “Enable SSL” and add the host and port for your requests
-You may also want to disable Desktop and web proxies from the Proxy dropdown so you can better isolate your app traffic
You might want to turn off cellular data to ensure all traffic is run through Wi-Fi/Charles Proxy
Then launch Charles and switch to the “sequence” tab in the top window to see each call and status as they are made in real-time, including response size and duration. Click on a request to view details in the bottom pane including: Overview, Request, Response & Summary.
Make sure you explore the options for the different data types. For example, if your response is an image, you can see the actual image and dimensions. If your app consumes JSON, you have a choice of a JSON Tree Navigator, or you can “copy response” by right-clicking the request in the top “Sequence” tab. Paste the results into something like http://www.uize.com/examples/json-prettifier.html for easy-to-read output.
DURING LAUNCH, CHECK THESE:
1.Is your app making a reasonable amount of data requests to balance startup time and pre-fetching, to speed up “next pages”?
2.Is any request fetching more data than necessary?
3.Are the response times high due to server configuration or a poorly performing backend
CHECK THESE DURING APP USAGE:
1.Is there a common navigation path that is slow and could benefit from pre-fetching at launch?
2.Is data actually coming from the cache rather than initiating a new data request?
3.Is any tracking data being sent (e.g. Omniture, Google Analytics, or other third-party services), and if so is it sent properly ?
Are there any requests being made erroneously or repeatedly due to a coding error?
4.If you serve video, is the proper encoding/format selected? (Charles can throttle speeds to mimic wireless phone connections.)
Are images appropriately sized for the device?