# cordova-plugin-opensettings **Repository Path**: mirrors_Marus/cordova-plugin-opensettings ## Basic Information - **Project Name**: cordova-plugin-opensettings - **Description**: Opens settings screen on iOS 8 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-09 - **Last Updated**: 2026-02-28 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README OpenSettings ====== OpenSettings opens your apps settings in settings.app (makes it more easy for users to turn on Location Services). ## Installation ``` cordova plugin add https://github.com/erikhuisman/cordova-plugin-opensettings.git ``` ## Usage ``` OpenSettings.settings(); // Use cordova device plugin to check for iOs 8 // cordova plugin add org.cordova.plugin.device if(device.platform === 'iOS' && device.version > 8) { OpenSettings.settings(); } // open bt settings OpenSettings.bluetooth(); ```