Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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. }