react-native-android-open-settings
react-native-android-open-settings copied to clipboard
This library it's still having maintainence?
Hi! I wan't to use this library, but i don't know if it's still having mainainence? Is it? Thanks in advance!
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... :/
Depending on what you want to do, you might be okay with Linking.openSettings instead, so no need for another dependency ;)
@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 :)
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 :)
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
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