1.0.2 • Published 4 years ago

react-native-tone-android v1.0.2

Weekly downloads
3
License
MIT
Repository
github
Last release
4 years ago

react-native-tone-android

Android only library. Simply plays a one time Tone with specific frequency and duration.

Getting started

$ yarn add react-native-tone-android

Usage

import Tone from "react-native-tone-android";

function somefunction() {
  const frequency = 4000; //Hz
  const duration = 50; // ms

  Tone.play(frequency, duration);
}