-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #80 from ttoklip/develop
메인업데이트
- Loading branch information
Showing
189 changed files
with
4,695 additions
and
2,918 deletions.
There are no files selected for viewing
This file contains 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 |
---|---|---|
|
@@ -12,6 +12,7 @@ build | |
captures | ||
.externalNativeBuild | ||
.cxx | ||
google-services.json | ||
local.properties | ||
.idea | ||
constant.xml |
This file contains 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,17 @@ | ||
![in1.png](https://raw.githubusercontent.com/ttoklip/BackEnd/main/introduce/in1.png) | ||
|
||
![in2.png](https://raw.githubusercontent.com/ttoklip/BackEnd/main/introduce/in2.png) | ||
|
||
![in3.png](https://raw.githubusercontent.com/ttoklip/BackEnd/main/introduce/in3.png) | ||
|
||
![in4.png](https://raw.githubusercontent.com/ttoklip/BackEnd/main/introduce/in4.png) | ||
|
||
|
||
## 아키텍쳐 | ||
<img width="755" alt="hangunhee39_ttoklip_architecure" src="https://github.com/ttoklip/Android/assets/77563098/c3640f5d-ea24-46bd-807b-023127e81ea0"> | ||
|
||
|
||
## 맴버 | ||
| [한건희](https://github.com/hangunhee39) | [김규진](https://github.com/kyujin0911) | [박승연](https://github.com/40food) | [심영수](https://github.com/posite) | | ||
|:------------------------------------------------------------------:|:------------------------------------------------------------------:|:------------------------------------------------------------------:|:---------------------------------------------------------------:| | ||
| 24.01. ~ | 24.01. ~ | 24.01. ~ | 24.01. ~ 24.02. | |
This file contains 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 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 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,15 @@ | ||
package com.umc.ttoklip.data.api | ||
|
||
import com.umc.ttoklip.data.model.CommonResponse | ||
import com.umc.ttoklip.data.model.ResponseBody | ||
import com.umc.ttoklip.data.model.fcm.FCMTokenRequest | ||
import retrofit2.Response | ||
import retrofit2.http.Body | ||
import retrofit2.http.PATCH | ||
|
||
interface FCMApi { | ||
@PATCH("/api/v1/notification/fcm_token") | ||
suspend fun patchFCMToken( | ||
@Body request : FCMTokenRequest | ||
): Response<ResponseBody<CommonResponse>> | ||
} |
This file contains 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 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 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
11 changes: 0 additions & 11 deletions
11
app/src/main/java/com/umc/ttoklip/data/api/MyAccountRestrictApi.kt
This file was deleted.
Oops, something went wrong.
This file contains 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 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 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,13 @@ | ||
package com.umc.ttoklip.data.api | ||
|
||
import com.umc.ttoklip.data.model.naver.GeocodingResponse | ||
import retrofit2.Response | ||
import retrofit2.http.GET | ||
import retrofit2.http.Query | ||
|
||
interface NaverApi { | ||
@GET("map-geocode/v2/geocode") | ||
suspend fun fetchGeocoding( | ||
@Query("query") query: String | ||
): Response<GeocodingResponse> | ||
} |
This file contains 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,24 @@ | ||
package com.umc.ttoklip.data.api | ||
|
||
import com.umc.ttoklip.data.model.ResponseBody | ||
import com.umc.ttoklip.data.model.mypage.MyHoneyTipsResponse | ||
import com.umc.ttoklip.data.model.stranger.OtherUserInfoResponse | ||
import retrofit2.Response | ||
import retrofit2.http.GET | ||
import retrofit2.http.Path | ||
import retrofit2.http.Query | ||
|
||
interface OtherApi { | ||
|
||
@GET("/api/v1/stranger") | ||
suspend fun getStrangeInfo( | ||
@Query("nickname") nickname : String, | ||
): Response<ResponseBody<OtherUserInfoResponse>> | ||
|
||
@GET("/api/v1/stranger/honeytip/{userId}") | ||
suspend fun getStrangerTip( | ||
@Path("userId") userId : Int, | ||
@Query("page") page : Int, | ||
): Response<ResponseBody<MyHoneyTipsResponse>> | ||
|
||
} |
This file contains 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.