1.3.0 • Published 5 years ago

react-native-check-notification-enable v1.3.0

Weekly downloads
484
License
-
Repository
github
Last release
5 years ago

react-native-check-notification-enable

Check if notifications are enabled for a React Native app running on Android.

VersionReact Native SupportAndroid SupportiOS Support
1.2.00.609NONE
1.1.00.47-0.548.1NONE
1.0.40.468.1NONE

Complies with react-native-version-support-table

Installation

First you need to install react-native-check-notification-enable:

npm install react-native-check-notification-enable --save

If your React Native version is 0.60 or higher, that's all you need to do. If not, you'll need to perform the steps described below.

Android

Automatic installation

Run the following command:

react-native link react-native-check-notification-enable

Manual installation

  • In android/settings.gradle
...
include ':react-native-check-notification-enable', ':app'
project(':react-native-check-notification-enable').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-check-notification-enable/android')
  • In android/app/build.gradle
...
dependencies {
    ...
    compile project(':react-native-check-notification-enable')
}
  • register module (in MainActivity.java)

On newer versions of React Native (0.18+):

import com.skyward.NotificationManager.NotificationManager; // <--- import

public class MainActivity extends ReactActivity {
  ......

  /**
   * A list of packages used by the app. If the app uses additional views
   * or modules besides the default ones, add more packages here.
   */
    @Override
    protected List<ReactPackage> getPackages() {
      return Arrays.<ReactPackage>asList(
        new NotificationManager() // <------ add here
        new MainReactPackage());
    }
}

iOS

Automatic installation

Run the following command:

react-native link react-native-check-notification-enable

Example

Load module

var NotificationManager = require('react-native-check-notification-enable');
// for es6
import NotificationManager from 'react-native-check-notification-enable'

Check notification is enable or not

// use as a promise...
NotificationManager.areNotificationsEnabled().then((e)=>{
  console.log(e); //true or false
}).catch((e)=>{
  console.log(e);
})

// ...or an async function
const enabled = await NotificationManager.areNotificationsEnabled();

Get all global notification settings

NotificationManager.retrieveGlobalNotificationSettings().then((settings)=>{
  console.log(settings);
  // {
  //   isEnabled: boolean;
  //   isBadgeEnabled: boolean;
  //   isSoundEnabled: boolean;
  //   shownInNotificationCenter: boolean;
  //   shownInLockScreen: boolean;
  //   shownAsHeadsupDisplay: boolean;
  // }
}).catch((e)=>{
  console.log(e);
})

Get notification Channel

NotificationManager.retrieveNotificationChannels().then((ChannelArray)=>{
  console.log(ChannelArray); //[]
}).catch((e)=>{
  console.log(e);
})
1.3.0

5 years ago

1.2.1

5 years ago

1.2.0

5 years ago

1.1.0

5 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago

0.1.0

6 years ago