I have an RSS reader which works on watchOS 2. However, it does not work now on watchOS 3. Nothing is loaded and empty screen is shown.
I have set "App Transport Security Settings/Allow Arbitrary Loads" to yes
in info.plist
and watchOS 3 still have issue. Attempting to load an file in http fails to load. Nothing happened in this code.
parser = XMLParser(contentsOf:URL(string:url)!)
parser.delegate = self
parser.parse()
I have also tried setting the info.plist in watchApp and I got this warning message:
[![Info.plist][1]][1]
What do I need to do to access network in watchOS 3?