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

[FEAT/#59] 네이버 길찾기 기능 및 함수 구현 #94

Merged
merged 4 commits into from
Jan 21, 2025

Conversation

Roel4990
Copy link
Member

Related issue 🛠

Work Description ✏️

  • 네이버 길찾기 기능 및 함수 구현

Screenshot 📸

default.mp4
default.mp4

To Reviewers 📢

@Roel4990 Roel4990 added 🧡세홍🧡 🧡세홍🧡 FEAT✨ 새로운 기능 구현 labels Jan 20, 2025
@Roel4990 Roel4990 self-assigned this Jan 20, 2025
@Roel4990 Roel4990 requested a review from a team as a code owner January 20, 2025 20:28
@Roel4990 Roel4990 linked an issue Jan 20, 2025 that may be closed by this pull request
1 task
Copy link
Member

@chattymin chattymin left a comment

Choose a reason for hiding this comment

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

👍

Copy link
Collaborator

@Hyobeen-Park Hyobeen-Park left a comment

Choose a reason for hiding this comment

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

우왕 수고하셨습니다!!

}
context.startActivity(marketIntent)
} else {
context.startActivity(intent)
Copy link
Collaborator

Choose a reason for hiding this comment

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

Suggested change
context.startActivity(intent)
Intent(Intent.ACTION_VIEW, Uri.parse(url)).apply {
addCategory(Intent.CATEGORY_BROWSABLE)
context.startActivity(this)
}

P3: 위에서 intent를 저장하지 않고 이렇게도 사용 가능합니다!

Copy link
Member Author

Choose a reason for hiding this comment

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

수정했습니다!

Comment on lines 275 to 278
val marketIntent = Intent(Intent.ACTION_VIEW).apply {
data = Uri.parse("market://details?id=com.nhn.android.nmap")
}
context.startActivity(marketIntent)
Copy link
Collaborator

Choose a reason for hiding this comment

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

P3: 여기도 꼭 필요한 것이 아니라면 변수에 저장하기 보다는 객체를 바로 사용해주는 것이 어떨까요?

Copy link
Member Author

Choose a reason for hiding this comment

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

수정했습니다! 감사합니다!

@Roel4990 Roel4990 requested a review from Hyobeen-Park January 21, 2025 08:01
Copy link
Collaborator

@Hyobeen-Park Hyobeen-Park left a comment

Choose a reason for hiding this comment

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

어푸푸~~!

} catch (e: PackageManager.NameNotFoundException) {
false
}
if (!isInstalled) {
Copy link
Collaborator

Choose a reason for hiding this comment

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

Suggested change
if (!isInstalled) {
if (isInstalled) {

P4: 이렇게 ! 안붙은거 먼저 해주면 너무 좋을 것 같아요..!!

Copy link
Member Author

Choose a reason for hiding this comment

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

수정했습니다!

Copy link
Collaborator

@angryPodo angryPodo left a comment

Choose a reason for hiding this comment

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

고생하셨습니다~!

@Roel4990 Roel4990 merged commit c10c843 into develop Jan 21, 2025
1 check passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
FEAT✨ 새로운 기능 구현 🧡세홍🧡 🧡세홍🧡
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[FEAT] 장소 상세 페이지 네이버 지도 길찾기 구현
4 participants