일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- Tutorial
- 개인사업자
- as후기
- 이더리움
- javascript
- Eclipse
- cartalyst
- auth
- 인민공원
- Java
- win32
- 소액임금체불
- php
- 전자소송
- reactnative
- 당사자표시정정신청서
- Laravel
- Sentinel
- 보정명령
- vue
- 코로나
- elasticSearch
- 체당금
- 사업자계좌
- Bootstrap
- Python
- 코로나19
- blockchain
- 홈택스
- Blade
- Today
- Total
목록reactnative (2)
그냥 사는 이야기
React Native로 만든 앱이 애플 앱스토어에서 2번째 심사거절을 당했습니다. 전 버전에서 사소한 수정을 해서 마이너 업데이트판을 올렸는데 거절 당했습니다. 이런건 경험이 중요할 것 같아서 기록으로 남겨봅니다. Performance - Accurate Metadata Guideline 2.3.10 - Performance - Accurate Metadata We noticed that your submission includes irrelevant third-party platform information. Specifically, your What's New text includes Android references. Referencing third-party platforms in your ap..
목표 특정 상황에서 간단한 (비프음처럼) 사운드 파일을 재생하고 싶음 1차시도 react-native-sound-player 를 살펴보니 단순하고 쉬워서 어려움이 없을 줄 알았다. yarn add react-native-sound-player import SoundPlayer from 'react-native-sound-player' try { // play the file tone.mp3 SoundPlayer.playSoundFile('tone', 'mp3') // or play from url SoundPlayer.playUrl('') } catch (e) { console.log(`cannot play the sound file`, e) } 프로젝트 내 mp3 파일을 재생하려면 {project_ro..