npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

react-native-schedule-exact-alarm-permission

v0.1.5

Published

Request schedule-exact-alarm permission in android

Downloads

4,962

Readme

NPM Version Static Badge Static Badge

For the latest documentation, please refer to this documentation.

Installation

Install the package using npm:

npm install react-native-schedule-exact-alarm-permission --save

or Yarn

yarn add react-native-schedule-exact-alarm-permission

Autolinking

Since version 0.60 React Native does linking of modules automatically.

Description

This package allows checking the status of the schedule exact alarm permission and requesting it if it's not already enabled. As of Android 14, users are required to grant schedule exact alarm permission before its usage, while in Android 13, this permission is automatically granted. read more.

Dependencies

This package assumes that the SCHEDULE_EXACT_ALARM permission is included in the AndroidManifest.xml file. If it's not present, please ensure to add the permission to android/app/src/main/AndroidManifest.xml. Otherwise, the package will not function correctly.

<manifest xmlns:android="http://schemas.android.com/apk/res/android">

    <!-- This permission is required, add it if missing. -->
    <uses-permission android:name="android.permission.SCHEDULE_EXACT_ALARM" />

</manifest>

Example App

The repository react-native-schedule-exact-alarm-permission hosts an example app for the Android platform.

Usage

useSEA

useSEA() is a react custom hook that returns a boolean indicating whether the schedule exact alarm permission is granted. This hook also automatically updates its returned value whenever the application returns to the active state. If the API level is below 34 (Android 14), this hook will always return true.

import { useSEA } from 'react-native-schedule-exact-alarm-permission';

export default function App() {
  const SEAstatus = useSEA();

  return (
    <View>
      <Text>status: {`${SEAstatus}`}</Text>
    </View>
  );
}

checkPermission

Similar to the useSEA() hook, checkPermission() provides the status of the schedule exact alarm permission. However, the key distinction lies in checkPermission being a standard asynchronous function, enabling its use outside of a React component.

import { checkPermission } from 'react-native-schedule-exact-alarm-permission';

const permissionStatus = await checkPermission();

getPermission

getPermission() function directs users to the Alarms & Reminders screen in system settings, allowing them to grant the permission. When used alongside useSEA(), the status value updates accordingly based on the user's actions once they return to the app. This function remains inactive if the permission is already granted or if the user's API level is below 34 (Android 14).

import {
  getPermission,
  useSEA,
} from 'react-native-schedule-exact-alarm-permission';

export default function App() {
  const SEAstatus = useSEA();

  return (
    <View style={styles.container}>
      <Text>Result: {`${SEAstatus}`}</Text>
      <Button
        title="Get SEA permission"
        onPress={() => {
          getPermission();
        }}
      />
    </View>
  );
}

Contributing

See the contributing guide to learn how to contribute to the repository and the development workflow.

License

MIT