-
Notifications
You must be signed in to change notification settings - Fork 2
Release/1.1.0 #111
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
Merged
Merged
Release/1.1.0 #111
Changes from all commits
Commits
Show all changes
29 commits
Select commit
Hold shift + click to select a range
bd06612
feat: dto ๋ฐ์ดํฐ ํด๋์ค ์ถ๊ฐ
jeong724 01405f4
feat: repository ์์ฑ
jeong724 d591b9c
feat: ์ด์ ์ผ๊ธฐ์นด๋ ๋ชฉ๋ก ์กฐํ API ํธ์ถ ์ฑ๊ณต
jeong724 973afac
feat: ์ผ๊ธฐ์นด๋ ์กฐํ API ์ ์ฉ
jeong724 4b4728c
feat: ์ผ๊ธฐ์นด๋ ์กฐํ API ํธ์ถ
jeong724 c6b2eaa
feat: ๋ฐํ
์ํธ ์ผ๊ธฐ์นด๋ ์ค์
jeong724 6e64438
feat: ๋ฐํ
์ํธ ์ผ๊ธฐ์นด๋ emotion์ ๋ฐ๋ผ ๋ฐฐ๊ฒฝ์ ์ค์
jeong724 3a4c5f6
feat: ๋ฐํ
์ํธ ์นด๋ ๋ ์ด์์ ์กฐ์
jeong724 3e5fd00
feat: ๋ฐํ
์ํธ ์นด๋ ๋ ์ด์์ ์ค์ + ํ์์๋ ํ์ผ remove
jeong724 e51011e
feat: ๋ฐํ
์ํธ ์นด๋ ๋ ์ด์์ ์ค์ + ํ์์๋ ํ์ผ remove
jeong724 70cf321
Merge branch 'master' of https://github.com/Team-ToYou/ToYou-Android โฆ
jeong724 6dadf3e
[fix] ์๋ฆผ UI ์ ๋ชฉ ๊ธ์จ ํฌ๊ธฐ ๋ณ๊ฒฝ
tristanjung1006 5aa0f6b
[release] v1.1.0
tristanjung1006 51e1095
[feature] ๋ฐํ
์ํธ ์์ผ ์น๊ตฌ ์ผ๊ธฐ์นด๋ ํ์
tristanjung1006 9e94217
Merge pull request #109 from Team-ToYou/feat/#106
tristanjung1006 b76d17b
Merge pull request #110 from Team-ToYou/fix/#1.1.0
tristanjung1006 650dc8b
[fix] ์๋ฆผ UI QA ๋ฐ์
tristanjung1006 3e9acdb
[fix] ์๋ฆผ UI ๊ตฌ๋ถ์ QA ๋ฐ์
tristanjung1006 80d4cbd
[fix] ์๋ฆผ UI ๊ตฌ๋ถ์ QA ๋ฐ์
tristanjung1006 bb99e0a
[setting] signingConfigs ์ค์
tristanjung1006 1bbd5d6
[setting] test
tristanjung1006 320fc95
[setting] test
tristanjung1006 34f136b
Update android_cd.yml
tristanjung1006 ffc9998
Update android_cd.yml
tristanjung1006 d2a2dde
Update android_cd.yml
tristanjung1006 691bc05
Update android_cd.yml
tristanjung1006 0b29db9
Update android_cd.yml
tristanjung1006 dcb4b7a
Merge branch 'master' into release/1.1.0
tristanjung1006 086c080
Update android_cd.yml
tristanjung1006 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file was deleted.
Oops, something went wrong.
28 changes: 0 additions & 28 deletions
28
app/src/main/java/com/toyou/toyouandroid/data/UserDatabase.kt
This file was deleted.
Oops, something went wrong.
11 changes: 0 additions & 11 deletions
11
app/src/main/java/com/toyou/toyouandroid/data/UserEntity.kt
This file was deleted.
Oops, something went wrong.
29 changes: 29 additions & 0 deletions
29
app/src/main/java/com/toyou/toyouandroid/data/home/dto/response/YesterdayCardResponse.kt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,29 @@ | ||
| package com.toyou.toyouandroid.data.home.dto.response | ||
|
|
||
| import com.google.gson.annotations.SerializedName | ||
|
|
||
| data class YesterdayCardResponse( | ||
| @SerializedName("cards") val yesterday: List<YesterdayCard> | ||
| ) | ||
|
|
||
| data class YesterdayCard( | ||
| @SerializedName("cardId") val cardId: Long, | ||
| @SerializedName("cardContent") val cardContent: YesterdayCardContent | ||
| ) | ||
|
|
||
| data class YesterdayCardContent( | ||
| @SerializedName("date") val date: String, | ||
| @SerializedName("receiver") val receiver: String, | ||
| @SerializedName("emotion") val emotion: String, | ||
| @SerializedName("exposure") val exposure: Boolean, | ||
| @SerializedName("questionList") val questionList: List<YesterdayCardQuestion> | ||
| ) | ||
|
|
||
| data class YesterdayCardQuestion( | ||
| @SerializedName("questionId") val id: Long, | ||
| @SerializedName("content") val content: String, | ||
| @SerializedName("questionType") val type: String, | ||
| @SerializedName("questioner") val questioner: String, | ||
| @SerializedName("answer") val answer: String, | ||
| @SerializedName("answerOption") val options: List<String>? | ||
| ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 4 additions & 0 deletions
4
app/src/main/java/com/toyou/toyouandroid/domain/home/repository/HomeRepository.kt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,10 +1,14 @@ | ||
| package com.toyou.toyouandroid.domain.home.repository | ||
|
|
||
| import com.toyou.toyouandroid.data.home.dto.response.YesterdayCardResponse | ||
| import com.toyou.toyouandroid.data.home.service.HomeService | ||
| import com.toyou.toyouandroid.network.AuthNetworkModule | ||
| import com.toyou.toyouandroid.network.BaseResponse | ||
|
|
||
| class HomeRepository { | ||
| private val client = AuthNetworkModule.getClient().create(HomeService::class.java) | ||
|
|
||
| suspend fun getCardDetail(id : Long)=client.getCardDetail(id) | ||
|
|
||
| suspend fun getYesterdayCard() = client.getCardYesterday() | ||
| } |
6 changes: 6 additions & 0 deletions
6
app/src/main/java/com/toyou/toyouandroid/model/YesterdayType.kt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| package com.toyou.toyouandroid.model; | ||
|
|
||
| const val Ytype1 = "LONG_ANSWER" | ||
| const val Ytype2 = "SHORT_ANSWER" | ||
| const val Ytype3 = "OPTIONAL" | ||
| const val Ytype4 = 3 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.