You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

functions.ios.js 349B

123456789101112
  1. import { getSdkBundlePath } from '../../app/functions';
  2. /**
  3. * Returns the location of the sounds. On iOS it's the location of the SDK
  4. * bundle on the phone. Each sound file must be added to the SDK's XCode project
  5. * in order to be bundled correctly.
  6. *
  7. * @returns {string}
  8. */
  9. export function getSoundsPath() {
  10. return getSdkBundlePath();
  11. }