Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ISSUE-45] 약속 잡기 STEP 1-2 구현 #72

Merged
merged 18 commits into from
Jul 1, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
2622ebe
feat - Timber 태그 추가
jihee-dev Jun 25, 2022
9fbf00f
feat - 약속 잡기 테마 선택 화면 구현
jihee-dev Jun 25, 2022
3438b07
feat - 약속 잡기 테마 선택 -> 약속명 입력 화면 전환
jihee-dev Jun 25, 2022
b6d1ef0
design - 약속 테마 선택 여부에 따라 다른 체크 아이콘이 보여지도록 수정
jihee-dev Jun 25, 2022
bdae312
feat - 텍스트 필드 컴포넌트 추가
jihee-dev Jun 27, 2022
8a9bf92
refactor - 플랜즈 버튼 컴포넌트 네이밍 변경
jihee-dev Jun 27, 2022
34dbf0e
fix - 플랜즈 버튼의 속성 값이 이중으로 적용되는 문제 수정
jihee-dev Jun 27, 2022
5e047a8
fix - EOF 추가
jihee-dev Jun 27, 2022
e86bd0e
feat - 약속 잡기 약속명 및 약속 장소 화면 구현
jihee-dev Jun 27, 2022
5f6eb04
feat - 약속 잡기 약속명 및 약속 장소 화면 네비게이션 구현
jihee-dev Jun 27, 2022
dddbc73
Merge remote-tracking branch 'origin/develop' into feature/issue-045-…
jihee-dev Jun 27, 2022
39f7016
fix - merge conflict
jihee-dev Jun 27, 2022
6b27bfa
fix - navHost에 innerPadding 적용
jihee-dev Jun 29, 2022
769f04d
refactor - string 리소스 순서 변경 및 추가
jihee-dev Jun 29, 2022
afa7185
Merge remote-tracking branch 'origin/develop' into feature/issue-045-…
jihee-dev Jul 1, 2022
6375951
chore - 제거된 필드 적용
jihee-dev Jul 1, 2022
97f5fdb
fix - EOF 개행 추가
jihee-dev Jul 1, 2022
9a7231e
refactor - 목록 컨텐츠별 간격을 Spacer에서 spacedBy로 변경
jihee-dev Jul 1, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<uses-permission android:name="android.permission.INTERNET"/>

<application
android:name=".App"
android:name=".PlanzApplication"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
Expand Down
14 changes: 0 additions & 14 deletions app/src/main/java/com/yapp/growth/App.kt

This file was deleted.

18 changes: 18 additions & 0 deletions app/src/main/java/com/yapp/growth/PlanzApplication.kt
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
package com.yapp.growth

import android.app.Application
import dagger.hilt.android.HiltAndroidApp
import timber.log.Timber

@HiltAndroidApp
class PlanzApplication : Application() {
override fun onCreate() {
super.onCreate()

Timber.plant(object : Timber.DebugTree() {
override fun log(priority: Int, tag: String?, message: String, t: Throwable?) {
super.log(priority, "Debug[$tag]", message, t)
}
})
Comment on lines +13 to +17
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

오옹 이렇게 상속받으면 더 좋은 점이 있나용 ?.?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

팀버가 로그 찍을 때 위치에 따라서 태그를 알아서 달아주는데, 요 태그에 Debug 문구를 앞에 추가해 주게 됩니당
그러면 태그가 다르게 붙은 여러 곳에서 로그를 찍을 때 내가 찍은 로그만 모아서 검색할 수 있게 돼서 로그 확인할 때 편해용!

}
}