본문 바로가기

반응형

Notification

(4)
[React Native] MAC/IOS 알람 구현하기 3(Push notification)-firebase 2020/12/10 - [React Native] - [React Native] MAC/IOS 알람 구현하기 1(Push notification)-firebase [React Native] MAC/IOS 알람 구현하기 1(Push notification)-firebase 1. 프로젝트 생성 npx react-native init [파일명] 예를 들어 npx react-native init hyukpush 2. 모듈 다운 # Using npm npm install --save @react-native-firebase/app # Using Yarn yarn add @react-native-fi.. coding-hyeok.tistory.com 2020/12/10 - [React Native] - [React ..
[React Native] MAC/IOS 알람 구현하기 2(Push notification)-firebase 2020/12/10 - [React Native] - [React Native] MAC/IOS 알람 구현하기 1(Push notification)-firebase [React Native] MAC/IOS 알람 구현하기 1(Push notification)-firebase 1. 프로젝트 생성 npx react-native init [파일명] 예를 들어 npx react-native init hyukpush 2. 모듈 다운 # Using npm npm install --save @react-native-firebase/app # Using Yarn yarn add @react-native-fi.. coding-hyeok.tistory.com 1. Install the messaging module npm i..
[React Native] Android 알람 구현하기 2(Push notification)-firebase 2020/12/10 - [React Native] - [React Native] Android 알람 구현하기 1(Push notification)-firebase [React Native] Android 알람 구현하기 1(Push notification)-firebase 현재 진행중인 앱 프로젝트에서 메세지가 오거나 매칭이 완료되면 알람이 오는 기능을 구현하고 싶었다. 그래서 한번 배워보았다. firebase를 사용하였따 1. 프로젝트 생성 npx react-native init [파일 coding-hyeok.tistory.com 1. Install the messaging module npm install --save @react-native-firebase/messaging 2. install the..
[React Native] MAC/IOS 알람 구현하기 1(Push notification)-firebase App Push 기법은 네가지가 있다. 1. Expo Push Notification 2. FCM(Firebase Cloud Notification) + APNS(Apple Push Notification Service) 3. FCM only 4. AWS Amplicy 이다. 나는 2번을 사용할 것이다. Push가 언제 작동해야 하나? 3가지 경우가 있따. Foreground 상태 : 앱이 현재 실행되고 있을 떼 Background 상태 : 앱이 실행되어 있지만 화면에서 벗어나 있을 때 Quit 상태 : 앱이 꺼져 있을 때 1. 프로젝트 생성 npx react-native init [파일명] 예를 들어 npx react-native init hyukpush 2. 모듈 다운 # Using npm npm i..

반응형