diff --git a/app/src/main/assets/dash.json b/app/src/main/assets/dash.json index cf083cb6e..27d84fe14 100755 --- a/app/src/main/assets/dash.json +++ b/app/src/main/assets/dash.json @@ -4,34 +4,34 @@ "title": "FAQs", "subtitle": "Have questions? Find out the answers.", "icon": "ic_faq", - "url": "https://gitlab.com/AuroraOSS/AuroraStore" + "url": "https://gitlab.com/AuroraOSS/AuroraStore/-/wikis/Frequently%20Asked%20Questions" }, { "id": "1", "title": "Source code", "icon": "ic_code", "subtitle": "Find out what's inside.", - "url": "https://gitlab.com/AuroraOSS/AuroraStore/-/blob/master" + "url": "https://gitlab.com/AuroraOSS/AuroraStore/" }, { "id": "2", "title": "License", "subtitle": "Yes we do have one ;)", "icon": "ic_license", - "url": "https://gitlab.com/AuroraOSS/AuroraStore/-/raw/master/LICENSE" + "url": "https://gitlab.com/AuroraOSS/AuroraStore/-/blob/master/LICENSE" }, { "id": "3", "title": "Privacy policy", "subtitle": "Find out if we have your nudes :p", "icon": "ic_privacy", - "url": "https://gitlab.com/AuroraOSS/AuroraStore/-/raw/master/POLICY.md" + "url": "https://gitlab.com/AuroraOSS/AuroraStore/-/blob/master/POLICY.md" }, { "id": "4", "title": "Disclaimer", "subtitle": "Hold your own beer!", "icon": "ic_disclaimer", - "url": "https://gitlab.com/AuroraOSS/AuroraStore/-/raw/master/DISCLAIMER.md" + "url": "https://gitlab.com/AuroraOSS/AuroraStore/-/blob/master/DISCLAIMER.md" } -] \ No newline at end of file +] diff --git a/app/src/main/java/com/aurora/store/view/ui/account/AccountActivity.kt b/app/src/main/java/com/aurora/store/view/ui/account/AccountActivity.kt index 75da5b60e..ff8efbd6d 100644 --- a/app/src/main/java/com/aurora/store/view/ui/account/AccountActivity.kt +++ b/app/src/main/java/com/aurora/store/view/ui/account/AccountActivity.kt @@ -49,9 +49,9 @@ class AccountActivity : BaseActivity() { private lateinit var authData: AuthData private lateinit var accountProvider: AccountProvider - private val URL_TOS = "https://www.google.com/mobile/android/market-tos.html" - private val URL_LICENSE = "https://gitlab.com/AuroraOSS/AuroraStore/raw/master/LICENSE" - private val URL_DISCLAIMER = "https://gitlab.com/AuroraOSS/AuroraStore/raw/master/DISCLAIMER.md" + private val URL_TOS = "https://play.google.com/about/play-terms/" + private val URL_LICENSE = "https://gitlab.com/AuroraOSS/AuroraStore/blob/master/LICENSE" + private val URL_DISCLAIMER = "https://gitlab.com/AuroraOSS/AuroraStore/blob/master/DISCLAIMER.md" override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState)