Ви не можете вибрати більше 25 тем
Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
123456789101112 |
- import { getSdkBundlePath } from '../../app';
-
- /**
- * Returns the location of the sounds. On iOS it's the location of the SDK
- * bundle on the phone. Each sound file must be added to the SDK's XCode project
- * in order to be bundled correctly.
- *
- * @returns {string}
- */
- export function getSoundsPath() {
- return getSdkBundlePath();
- }
|