Fix info links
Fix links from AboutDialog to actually link to their intended locations.
This commit is contained in:
parent
28692829ba
commit
5d35dc8aa2
2 changed files with 2 additions and 14 deletions
12
LICENSES.md
12
LICENSES.md
|
@ -1,12 +0,0 @@
|
|||
# Licenses
|
||||
|
||||
Auxio uses a number of third-party libraries, which are listed below with their licenses:
|
||||
|
||||
| Library Name | Author(s) | Purpose | License |
|
||||
|--------------|-----------|---------|---------|
|
||||
| [ExoPlayer](https://github.com/google/ExoPlayer) | [Google](https://github.com/google) | Music Playback | Apache-2.0 |
|
||||
| [Coil](https://github.com/coil-kt/coil) | [coil-kt](https://github.com/coil-kt) | Image Loading | Apache-2.0 |
|
||||
| [Indicator Fast Scroll](https://github.com/reddit/IndicatorFastScroll) | [Reddit](https://github.com/reddit) | Fast Scrolling | MIT |
|
||||
| [Material Dialogs](https://github.com/afollestad/material-dialogs) | [Aiden Follestad](https://github.com/afollestad) | Accent Dialog | Apache-2.0 |
|
||||
| [ktlint](https://github.com/pinterest/ktlint) | [Pinterest](https://github.com/pinterest) | Code Formatting | MIT |
|
||||
| [LeakCanary](https://github.com/square/leakcanary) | [Square](https://github.com/square) | Memory leak detection | Apache-2.0 |
|
|
@ -104,8 +104,8 @@ class AboutDialog : BottomSheetDialogFragment() {
|
|||
|
||||
companion object {
|
||||
private const val LINK_CODEBASE = "https://github.com/oxygencobalt/Auxio"
|
||||
private const val LINK_FAQ = "$LINK_CODEBASE/blob/master/FAQ.md"
|
||||
private const val LINK_LICENSES = "$LINK_CODEBASE/blob/master/LICENSES.md"
|
||||
private const val LINK_FAQ = "$LINK_CODEBASE/blob/master/info/FAQ.md"
|
||||
private const val LINK_LICENSES = "$LINK_CODEBASE/blob/master/info/LICENSES.md"
|
||||
|
||||
val LINKS = arrayOf(LINK_CODEBASE, LINK_FAQ, LINK_LICENSES)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue