···15151616class AboutLibrariesNoticeFragmentProvider @Inject constructor() : NoticeFragmentProvider {
1717 override fun makeNoticeFragment(): Fragment = LibsBuilder()
1818- .withFields(R.string::class.java.fields) // We do this ourselves bigger
1919- .withAboutIconShown(false) // Let the fragment show our version
2020- .withAboutVersionShown(true) // Not sure why you'd do this without license info
2121- .withLicenseShown(true)
2222- .supportFragment()
1818+ .withFields(R.string::class.java.fields)
1919+ .withAboutIconShown(false) // We do this ourselves bigger
2020+ .withAboutVersionShown(true) // Let the fragment show our version
2121+ .withLicenseShown(true) // Not sure why you'd do this without license info
2222+ .supportFragment()
23232424}