Вы не можете выбрать более 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();
- }
|