react-native-android-open-settings icon indicating copy to clipboard operation
react-native-android-open-settings copied to clipboard

This library it's still having maintainence?

Open MatiSera opened this issue 4 years ago • 6 comments

Hi! I wan't to use this library, but i don't know if it's still having mainainence? Is it? Thanks in advance!

MatiSera avatar Dec 11 '20 20:12 MatiSera

I am wondering the same thing. With the last commit from almost two years ago and 6 open PRs without any comments, my best guess is: no... :/

miallo avatar Dec 18 '20 11:12 miallo

Depending on what you want to do, you might be okay with Linking.openSettings instead, so no need for another dependency ;)

miallo avatar Dec 18 '20 13:12 miallo

@miallo the problem is that Linking.openSettings() goes to the app settings. I needed to go to the OS settings. but using SystemSetting library I was able to do it :)

MatiSera avatar Dec 18 '20 13:12 MatiSera

Hey @MatiSera can you help me how did you open settings page using SystemSetting library?

@miallo the problem is that Linking.openSettings() goes to the app settings. I needed to go to the OS settings. but using SystemSetting library I was able to do it :)

harsh-kukreja avatar Dec 02 '21 11:12 harsh-kukreja

Hey @MatiSera can you help me how did you open settings page using SystemSetting library?

@miallo the problem is that Linking.openSettings() goes to the app settings. I needed to go to the OS settings. but using SystemSetting library I was able to do it :)

I didn't go directly to the os settings. The app needed to switch wifi, so I navigate to that location. 🤷 Also was one year ago, and I'm in another company. I didn't remember haha

MatiSera avatar Dec 03 '21 02:12 MatiSera

Today you don't need this library anymore. You can just use

import { Linking } from 'react-native';
Linking.sendIntent('android.settings.INTERNAL_STORAGE_SETTINGS');

See a list of Settings Intent strings here https://developer.android.com/reference/android/provider/Settings#constants

thomasttvo avatar Feb 24 '22 03:02 thomasttvo