:rocket: Added getCurrentIcon and isAvailable methods on ios
import { getCurrentIcon, isAvailable } from 'react-native-change-icon';
// Gets the application's current icon name
getCurrentIcon: () => Promise<string | null>
// Determines if the platform has the capabilities to use `changeIcon`
isAvailable: () => Promise<boolean>
@luoxuhai we are trying to keep the functionality similar on both iOS and Android.
It would be much appreciated if you can create similar functions for Android as well.
:rocket: Added getCurrentIcon and isAvailable methods on ios