티스토리 뷰
1. 구글 firebase 콘솔 페이지에 접속합니다.
https://console.firebase.google.com
2. 프로젝트 추가를 선택합니다.
3. 프로젝트 이름을 입력합니다.
4. 다음을 선택합니다.
5. 프로젝트 화면에서 안드로이드 앱을 선택합니다.
6.
7. change project
8. build.gradle (Project : Boywin1992)
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
classpath "com.android.tools.build:gradle:7.0.4"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.30"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
// google fire base
classpath 'com.google.gms:google-services:4.3.10'
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
9. build.gradle (Module : Boywin1992.app)
plugins {
id 'com.android.application'
id 'kotlin-android'
}
android {
compileSdk 31
defaultConfig {
applicationId "com.tistory.boywin1992"
minSdk 26
targetSdk 31
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = '1.8'
}
}
// google fire base
apply plugin: 'com.android.application'
apply plugin: 'com.google.gms.google-services'
dependencies {
implementation 'androidx.core:core-ktx:1.7.0'
implementation 'androidx.appcompat:appcompat:1.4.1'
implementation 'com.google.android.material:material:1.5.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.3'
testImplementation 'junit:junit:'
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
// google fire base
implementation platform('com.google.firebase:firebase-bom:29.2.1')
implementation 'com.google.firebase:firebase-analytics-ktx'
}
10. sync now
11. AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.tistory.boywin1992">
<uses-permission android:name="android.permission.INTERNET" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:requestLegacyExternalStorage="true"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/Theme.boywin1992"
android:usesCleartextTraffic="true">
<activity
android:name=".MainActivity"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<service
android:name=".MyFirebaseMessagingService"
android:enabled="true"
android:exported="false">
<intent-filter>
<action android:name="com.google.firebase.MESSAGING_EVENT" />
</intent-filter>
</service>
</application>
</manifest>
12.
13.
14.
15.
'android' 카테고리의 다른 글
[안드로이드] 스크롤뷰 스크롤바 없애는 방법 (0) | 2022.05.20 |
---|---|
안드로이드 화면 방향이 전화되어도 새로 로딩되지 않도록 하는 방법 (0) | 2022.05.20 |
프로젝트 생성 체크리스트 [안드로이드] (0) | 2022.05.20 |
webview cookie synchronization (0) | 2022.05.19 |
[안드로이드 / 코틀린] 카카오 내비게이션 연동하는 방법 (0) | 2022.05.19 |
- Total
- Today
- Yesterday
- permissions
- 외부 브라우저
- javaClass
- 웹뷰
- new project
- check permissions
- kotlin
- defaultInputmode
- 코틀린
- custom web view
- create project
- 안드로이드
- web view settings
- Inputmode
- android studio
- create new project
- 로그캣
- web chrome view
- andorid
- 영문 키보드
- 화면 방향 고정
- StringWriter
- logtag
- Android
- screenorientation
- web view
- 화면 고정
- simpleName
- 클래스 이름
- logcat
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |