guyromb / cordova-open-native-settings

Plugin to open native screens of iOS/android settings (maintained, end-2020)
http://gsrweb.net
MIT License
113 stars 105 forks source link

add application_details option for iOS #1

Closed nick-adriaenssens closed 8 years ago

guyromb commented 8 years ago

Thanks @NickAdriaenssens I also updated the readme file.

nick-adriaenssens commented 8 years ago

@guyromb Thanks for the quick response!

ngt14 commented 8 years ago

Hello , redirection of Bluetooth native settings doesn't work on ios , it open general settings . How can i resolved it ?

guyromb commented 8 years ago

which settings constant did you use, which ios version? I will inspect

ngt14 commented 8 years ago

if (window.cordova && window.cordova.plugins.settings) { console.log('openNativeSettingsTest is active'); window.cordova.plugins.settings.open("bluetooth", function() { console.log('opened settings'); }, function () { console.log('failed to open settings'); } ); } else { console.log('openNativeSettingsTest is not active!'); }

it work well on android . My ios version : 9.3.3

ngt14 commented 8 years ago

have you got news of my bluetooth problem?

# SOLVED : This is because the Bluetooth menu has been moved around in recent iOS versions. It's now a top-level setting, not under General.

Please change on NativeSettings.m : result = [self do_open:@"prefs:root=General&path=Bluetooth"];

By line : result = [self do_open:@"prefs:root=Bluetooth"];

guyromb commented 8 years ago

Updated. thanks.