Hello,
I'm trying to launch wifi settings from my app and I'm following the documentation. I have all the correct settings added to config.xml. Here is the code
console.log("Launching wifi setting");
let ac = new tizen.ApplicationControl('http://tizen.org/appcontrol/operation/setting/wifi');
tizen.application.launchAppControl(ac, null, function() {
console.log('launch application control succeed');
}, function(e) {
console.log('launch application control failed. reason: ' + e.message);
}, null);
but the error callback gets called and throws "No matched application found." What is interesting is that nfc and general settings work just fine, but not wifi. Where is the problem?
-J