[Firebase + Android] Google 계정으로 Firebase 이용하기 & Firebase에 Android Project 추가하기(JAVA)
https://console.firebase.google.com/u/0/?hl=ko
→ 로그인 후 실행화면
3. Google 애널리스틱스 사용 설정 후, 계속을 누른다.
4. 애널리스틱 위치를 자신이 살고있는 국가로 변경 후, 나머지 약관에 동의 후 프로젝트 만들기 Click.
5. 앱을 추가하여 시작하기(빨간색 밑줄)에서 IOS, Andorid, 웹, Unity 중에서 선택한다.
(나는 android를 선택했다.)
6. Firebase를 이용할 Android app의 패키지이름과 닉네임을 설정해준 후, 앱 등록 Click.
7. google-services.json을 다운로드 후, 설명과 같이 파일을 옮겨준다.
(올바르지 못한 위치에 옮기면 Error 발생!!)
8. build.gradle(Project)로 들어가서 code를 수정해준다.
(code는 밑에 참고 -> Firebase --- Add!!!! 주석부분 추가)
buildscript {
repositories {
// Firebase --- Add!!!
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.0.0'
// Firebase --- Add!!!
classpath 'com.google.gms:google-services:4.3.3'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
// Firebase --- Add!!!
google() // Google's Maven repository
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
9. build.gradle(app) 모듈로 들어가서 code를 수정해준다.
(code는 밑에 참고 -> Firebase --- Add!!!! 주석부분 추가)
(8번과 비슷^~^)
apply plugin: 'com.android.application'
// Firebase --- Add!!!
apply plugin: 'com.google.gms.google-services'
android {
compileSdkVersion 30
buildToolsVersion "30.0.0"
defaultConfig {
applicationId "com.android.~~~~~~~~~"
minSdkVersion 19
targetSdkVersion 30
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
implementation 'com.google.android.gms:play-services-location:17.0.0'
implementation 'com.google.android.gms:play-services-maps:17.0.0'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
// Firebase --- Add!!!
implementation 'com.google.firebase:firebase-analytics:17.2.2'
}
10. App을 실행 후 설치 확인이 되면 콘솔로 이동 Click
ⓐ다음번 게시물은 firebase를 이용해 cloud storage 이용하는 방법
[Github] How to upload a project to Github(Windows) (0) | 2020.09.22 |
---|---|
[Machine Learning] Multiclass / Multilabel classification (0) | 2020.09.10 |
[Virtual Environments] pip / pyenv / virtualenv / anaconda (0) | 2020.08.29 |
[Pip / conda] pip 와 conda (0) | 2020.08.09 |
[Python] Anaconda 가상환경 생성/삭제하기 (0) | 2020.08.09 |