Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

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