RBoy
(www.rboyapps.com - Making SmartThings Easy!)
June 2, 2016, 3:43pm
9
Yeah I’m seeing that in the latest Android ST app too, it’s working fine on iOS. Looks like ST broke their app again, they had fixed it earlier. See this
When passing parameters via the href command when there is more than one section, it’s broken in Android.
This is difficult to explain but the end result is if you have a loop for input parameters and you want to pass the parameters to the href page it doesn’t work on Android. It works perfectly on iOS.
Try this simple test example
definition(
name: "Test HREF App",
namespace: "smartthings",
author: "SmartThings",
description: "Test HREF Pages",
category: "SmartThings Labs",
iconUrl: "https://s3.amazonaws.com/smartapp-icons/Convenience/App-LightUpMyWorld.png",
iconX2Url: "https://s3.amazonaws.com/smartapp-icons/Convenience/App-LightUpMyWorld@2x.png"
)
preferences {
page(name: "main")
page(name: "testPage")
}
def main() {
dynamicPage(name: "main…