[Fluter] Firebase 환경 구성(iOS/Android)
시리즈
참고 문헌
iOS 편
1. Firebase 프로젝트 제작
2. iOS 어플리케이션 추가
3. GoogleService-Info.plist
4. Flutter Fire 플러그인 추가
dependencies:
firebase_core: ^0.5.2
dependencies:
cloud_firestore: ^0.14.3
안드로이드 편
1. Android 어플리케이션 추가
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="sample">
2.google-services.json 추가
android/app
├── build.gradle
├── google-services.json //追加
└── src
3. Firebase SDK 추가
dependencies {
classpath 'com.google.gms:google-services:4.3.4' //追加
}
apply plugin: 'com.google.gms.google-services' //追加
android {
defaultConfig {
...
minSdkVersion 15
targetSdkVersion 28
multiDexEnabled true
}
...
}
dependencies {
implementation 'com.android.support:multidex:1.0.3'
}
Reference
이 문제에 관하여([Fluter] Firebase 환경 구성(iOS/Android)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://zenn.dev/endo/articles/661589cec015c979c1c1텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)