您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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