t/oxr-android: Clean up about libraries usage and fix mangled comments.

This commit is contained in:
Ryan Pavlik 2021-05-19 09:04:34 -05:00
parent 61feb03d0e
commit 7b5102dc28
2 changed files with 6 additions and 5 deletions

View file

@ -4,5 +4,6 @@
- mr.808
- mr.820
- mr.817
- mr.918
---
More improvements to the Android port.

View file

@ -15,10 +15,10 @@ import javax.inject.Inject
class AboutLibrariesNoticeFragmentProvider @Inject constructor() : NoticeFragmentProvider {
override fun makeNoticeFragment(): Fragment = LibsBuilder()
.withFields(R.string::class.java.fields) // We do this ourselves bigger
.withAboutIconShown(false) // Let the fragment show our version
.withAboutVersionShown(true) // Not sure why you'd do this without license info
.withLicenseShown(true)
.supportFragment()
.withFields(R.string::class.java.fields)
.withAboutIconShown(false) // We do this ourselves bigger
.withAboutVersionShown(true) // Let the fragment show our version
.withLicenseShown(true) // Not sure why you'd do this without license info
.supportFragment()
}