jiti-meet/react/features/base/sounds/functions.ios.js

13 lines
339 B
JavaScript
Raw Normal View History

import { getSdkBundlePath } from '../../app';
/**
* Returns the location of the sounds. On iOS it's the location of the SDK
* bundle on the phone. Each sound file must be added to the SDK's XCode project
* in order to be bundled correctly.
*
* @returns {string}
*/
export function getSoundsPath() {
return getSdkBundlePath();
}