본문 바로가기
Develop/Android

[gradle] googlePlayServicesVersion 설정 방법

by 3-stack 2021. 11. 27.

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

 

# 사용 라이브러리 검색

 

 

 

댓글