googlePlayServiceVersion, firebaseMessagingVersion 버전 뭘로 하지!?
# 아래와 같이 구글API 버전을 설정할 때 어떻게 정하는게 좋을까?
buildscript {
ext {
buildToolsVersion = "29.0.3"
minSdkVersion = 24
compileSdkVersion = 30
targetSdkVersion = 30
ndkVersion = "20.1.5948944"
// react-native-push-notification
googlePlayServicesVersion = "17.6.0" // default: "+"
firebaseMessagingVersion = "21.1.0" // default: "21.1.0"
}
...
}
# 라이브러리를 설치한다.
yarn add react-native-push-notification
# Android 디렉토리로 이동
cd android
# 라이브러리 의존성 확인
gradlew app:dependencies
# 사용 라이브러리 검색
- 위의 예시인 경우 아래와 같은 텍스트 검색하여 사용하는 버전 확인 가능
- com.google.android.gms:play-services-basement
- com.google.firebase:firebase-messaging
'Develop > Android' 카테고리의 다른 글
Andoird 메모리 사용을 분석해보자!!! (0) | 2024.01.17 |
---|---|
Targeting S+ (version 31 and above) requires that an explicit value for android:exported be defined when intent filters are present (0) | 2022.04.09 |
안드로이드 앱 꺼짐 현상 앱크래시😥 (0) | 2021.10.18 |
[android] MediaPlayer?? ExoPlayer?? (0) | 2021.10.05 |
[android] 실행중인 앱을 강제 종료시키고 싶을 때 (0) | 2021.09.29 |
댓글