mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-05-13 06:12:31 +00:00
13 lines
339 B
JavaScript
13 lines
339 B
JavaScript
|
|
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();
|
||
|
|
}
|