-
Notifications
You must be signed in to change notification settings - Fork 3
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
Add view that lists all used libraries and their licenses #381
Add view that lists all used libraries and their licenses #381
Conversation
app/src/main/java/com/yacgroup/yacguide/AboutLibrariesActivity.kt
Outdated
Show resolved
Hide resolved
app/src/main/java/com/yacgroup/yacguide/AboutLibrariesActivity.kt
Outdated
Show resolved
Hide resolved
app/src/main/java/com/yacgroup/yacguide/AboutLibrariesActivity.kt
Outdated
Show resolved
Hide resolved
@@ -43,6 +43,11 @@ class AboutActivity : BaseNavigationActivity() { | |||
_createEntry(getString(R.string.privacy_policy), callback = { _showPrivacyPolicy() }) | |||
_createEntry(getString(R.string.source_code_and_support), getString(R.string.github_url)) | |||
_createEntry(getString(R.string.license), getString(R.string.license_url)) | |||
_createEntry( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Might it make sense to migrate this view to RecyclerView using BaseViewItemAdapter
, too? If yes, you may create a ticket for that.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I will have a look. Thanks for the hint.
Fixes #155
For some reason, the license for the Apache Commons CSV library is empty. It is under clarification in issue mikepenz/AboutLibraries#827. Since the information are generated automatically during each build, it should not be a blocker to merge this issue.