- Sort Posts
- 4 replies
- Last post
Re: internet connection
March 3, 2011 - 7:46am #3
Re: internet connection
March 3, 2011 - 7:11am #2
The first time you run a QCAR application it needs internet access to check for device configuration settings. This is how we add support for new devices without having to push a new version of the SDK out. After that first time the app runs you should be able to run it offline.
You can capture the back button press yourself and do whatever you would like with it:
if (Input.GetKeyDown(KeyCode.Escape)) { // For example, load a different scene Application.LoadLevel(0); }
- Kim
Most likely, this is our current strategy for handling the Android fragmentation problem. Otherwise you would have to rebuild your application when new devices come out.
- Kim