Error on iOS open sprinkler application.
the Opensprinkler app has this in its info.plist file
Thanks. The app has
<key>NSLocationAlwaysUsageDescription</key>
<array>
<string>Your current location will be used to configure OpenSprinkler.</string>
</array>
this array should just be a single string and we’re not type checking properly.
the NSLocationAlwaysUsageDescription should be a single string
it should look like this
<key>NSLocationAlwaysUsageDescription</key>
<string>Your current location will be used to configure OpenSprinkler.</string>