Open
Conversation
탭 레이아웃 저장한 곡, 음악파일, 저장 앨범 프래그먼트 추가 및 연결 기능 구현
yangjiae12
approved these changes
Dec 2, 2025
| binding.mainPlayerCl.setOnClickListener { | ||
| val intent = Intent(this, SongActivity::class.java) | ||
| } | ||
| checkJwt() |
Member
There was a problem hiding this comment.
현재 사용자가 하단 미니플레이어를 누르면 토큰 검사를 하게 되어 있는데 앱이 켜질 때 토큰을 검사하도록 SplashActivity에 토큰을 검사하도록 코드를 추가하고 자동 로그인까지 구현해 보셔도 좋을 것 같습니다!
Comment on lines
+48
to
+51
| private fun getJwt(): Int { | ||
| val spf = activity?.getSharedPreferences("auth", AppCompatActivity.MODE_PRIVATE) | ||
| return spf!!.getInt("jwt", 0) | ||
| } |
Member
There was a problem hiding this comment.
코드를 보니 onStart()에서 initViews()를 호출해서 로그인 상태를 체크하려고 하신 건 아주 잘하셨습니다! 그런데 JWT 토큰을 가져오는 부분에서 자료형 실수가 있어서 로그인이 풀린 것처럼 보이는 것 같습니다
JWT 토큰은 긴 영어 문자열이기 때문에 Int가 아니라 String으로 다뤄야 하기 때문에 getString으로 바꾸신다면 정상적으로 동작할 것 같습니다!
yangjiae12
reviewed
Dec 2, 2025
| import retrofit2.Retrofit | ||
| import retrofit2.converter.gson.GsonConverterFactory | ||
|
|
||
| const val BASE_URL="http://43.200.73.115:8080/" |
Member
There was a problem hiding this comment.
작성하신 BASE_URL을 보니 IP 주소를 상수에 그대로 적으셨는데, 프로젝트를 할 때는 보통 저렇게 하지 않습니다. Git 같은 곳에 올릴 때 서버가 노출되면 보안상 좋지 않기 때문에 보통은 local.properties라는 파일에 숨겨두고, build.gradle을 통해 불러오는 방식을 씁니다! 나중에 한번 찾아보시면 좋을 것 같아요~
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
📌 PR 제목
9주차 미션 수행했습니다!
세 가지 궁금증이 있습니다...!
마지막 스터디에 스스로 공부해보고 고쳐갈 것 같습니다!(9주차 스터디를 못가서요... 죄송합니다!!)
✅ 변경 사항
📷 영상 및 스크린샷
umc9.mp4