Aeneas McBurney
Posts: 0
Joined: Mon Jun 16, 2014 7:49 am

Published app acting differently from web and test based version

Hi,

I have just published a test app for android and downloaded onto my phone. When trying to find location with the installed app the alert "Searching for GPS" continues to flash on phone and will not find it. This does not happen if I open the same app in web browser or in test.

Also with the web browser version a panel opens once you are logged in and this does not trigger with the published app version. This may be because geolocation is not working though I'm not really sure.

Thanks,
Aeneas

Yurii Orishchuk
Posts: 0
Joined: Fri Feb 14, 2014 8:20 am

Published app acting differently from web and test based version

Hi Aeneas.

Please try to set your location service as shown on the following screen shot:

http://prntscr.com/3w7oli/direct

Regards.

Aeneas McBurney
Posts: 0
Joined: Mon Jun 16, 2014 7:49 am

Published app acting differently from web and test based version

That's fixed the location services issue but the panel is still not displaying on open in the app as it does in the test version.

Any ideas on this?

Yurii Orishchuk
Posts: 0
Joined: Fri Feb 14, 2014 8:20 am

Published app acting differently from web and test based version

Aeneas,

It's hard to say what is wrong with your code.

Please give us your app public link and describe details steps to reproduce your problem with panel.

Thanks.

Lucas Cranach
Posts: 0
Joined: Fri Jun 13, 2014 2:16 am

Published app acting differently from web and test based version

Hi the app is at swapmyfx.app.appery.io. the issue is after you logon with facebook you are taken to the next screen which opens a panel on load event. This panel is not showing on published Android app.

Thanks

Yurii Orishchuk
Posts: 0
Joined: Fri Feb 14, 2014 8:20 am

Published app acting differently from web and test based version

Hi Aeneas,

Please use "Page show" event instead of "Page load" to open panel.

Regards.

Aeneas McBurney
Posts: 0
Joined: Mon Jun 16, 2014 7:49 am

Published app acting differently from web and test based version

I have added this event to page show but now every time I select an item from a drop down list on the page the panel menu shows. This shouldn't happen.

Aeneas McBurney
Posts: 0
Joined: Mon Jun 16, 2014 7:49 am

Published app acting differently from web and test based version

Also every time I navigate back to the page the even fires and I only want the panel to show on first open of app

Yurii Orishchuk
Posts: 0
Joined: Fri Feb 14, 2014 8:20 am

Published app acting differently from web and test based version

Hi Aeneas,

Ok, in this case delete this event handler.

And add "page load" event handler with following code:

pre

var onDelay = function(){

Code: Select all

 //Note you need replace "panel_35" with your panel component name. 
 Apperyio("panel_35").panel("open") 

};
window.setTimeout(onDelay, 1000);

/pre

Regards.

Aeneas McBurney
Posts: 0
Joined: Mon Jun 16, 2014 7:49 am

Published app acting differently from web and test based version

Hi, I have just tested this solution on the android app and its working better however every time I navigate back to this page from another page the panel shows again. Is there a way to only show this panel when the app is first started and this page is shown? Its the first one after facebook logon so wanted to display the menu but not the next time its navigated back to.

Return to “Issues”