Capacitor plugin to access the attributes of Developer Options (Android only)
npm install @clappia/capacitor-system-settings
npx cap syncgetDeveloperOptions() => Promise<{ developerOptionsEnabled: boolean; }>Returns a map { developerOptionsEnabled: boolean } indicating whether the developer options are enabled. In future, this will return more attributes related to the system settings.
Returns: Promise<{ developerOptionsEnabled: boolean; }>
getNumberFormatInfo() => Promise<NumberFormatInfo>Returns number format information including decimal and grouping separators.
Returns: Promise<NumberFormatInfo>
| Prop | Type |
|---|---|
decimalSeparator |
string |
groupingSeparator |
string |