Skip to content
This repository was archived by the owner on Dec 16, 2023. It is now read-only.

Commit 8a6aed1

Browse files
committed
Update privacy policy url and contact email
1 parent a44e3a6 commit 8a6aed1

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

app/src/main/java/com/marknkamau/justjava/ui/about/AboutActivity.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,14 +36,14 @@ class AboutActivity : AppCompatActivity(), View.OnClickListener {
3636
imgLinkedin -> openUrl("https://linkedin.com/in/marknjunge")
3737
imgGithub -> openUrl("https://github.com/MarkNjunge")
3838
imgWebsite -> openUrl("https://marknjunge.com")
39-
tvPrivacyPolicy -> openUrl("https://marknjunge.com/projects/justjava/privacy-policy")
39+
tvPrivacyPolicy -> openUrl("https://markn.dev/justjava/privacy")
4040
}
4141
}
4242

4343
private fun openUrl(url: String) = startActivity(Intent(Intent.ACTION_VIEW, Uri.parse(url)))
4444

4545
private fun sendEmail() {
46-
val addresses = arrayOf("mark.kamau@outlook.com") //Has to be String array or it will ignore
46+
val addresses = arrayOf("contact@markn.dev") //Has to be String array or it will ignore
4747
val intent = Intent(Intent.ACTION_SENDTO)
4848
intent.data = Uri.parse("mailto:") // only email apps should handle this
4949
intent.putExtra(Intent.EXTRA_EMAIL, addresses)

0 commit comments

Comments
 (0)