Targets -> NVP -> General -> Bundle Identifier를 확인하면 된다.
sdk를 추가해야하는데, 문서를 보면 라이브러리를 선택할때
FirebaseAnalytics 를 해야한다고 쓰여져 있으므로 반드시 체크후 addPackage를 눌러준다
Package Dependencies 선택후 + 버튼을 눌러서https://github.com/firebase/firebase-ios-sdk 로 검색한다!
이를 추가하기전에 pod로 실행하고 있다면 /ios위치에서 pod install 명령어를 실행한뒤 추가해야 모듈을 인식할 수 있다.
아이폰을 연결한 후 빌드를 실행
대시보드에 들어가면 연결이 되어있다!!!
To allow the Android app to securely connect to your Firebase project, a configuration file must be downloaded and added to your project.
buildscript {
dependencies {
// ... other dependencies
classpath 'com.google.gms:google-services:4.3.10'
// Add me --- /\
}
}
apply plugin: 'com.android.application'
apply plugin: 'com.google.gms.google-services' // <- Add this line
Podfile에 다음 pod를 추가후
cd ios
pod install