2020-06-04 14:09:13 +00:00
|
|
|
import { getSdkBundlePath } from '../../app/functions';
|
2018-04-05 19:12:24 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 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();
|
|
|
|
}
|