Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

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