Open Mahmud0808 opened 1 week ago
Description: Implement a feature that automatically directs users to the NFC settings page when the device supports NFC.
Visual Representation:
Proposed Implementation:
private fun openNfcSettings() { val intent = if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.Q) { Intent(Settings.Panel.ACTION_NFC) } else { Intent(Settings.ACTION_WIRELESS_SETTINGS) } startActivity(intent) }
Benefits:
This is a great feature request, we should prioritize.
@aniruddha-adhikary I will start on this if its not fixed already
@Zamiul-rashid please go ahead
Description: Implement a feature that automatically directs users to the NFC settings page when the device supports NFC.
Visual Representation:
Proposed Implementation:
Benefits: