The open source OpenXR runtime
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

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

+6 -5
+1
doc/changes/misc_features/mr.676.md
··· 4 4 - mr.808 5 5 - mr.820 6 6 - mr.817 7 + - mr.918 7 8 --- 8 9 More improvements to the Android port.
+5 -5
src/xrt/targets/openxr_android/src/main/java/org/freedesktop/monado/openxr_runtime/AboutLibrariesNoticeFragmentProvider.kt
··· 15 15 16 16 class AboutLibrariesNoticeFragmentProvider @Inject constructor() : NoticeFragmentProvider { 17 17 override fun makeNoticeFragment(): Fragment = LibsBuilder() 18 - .withFields(R.string::class.java.fields) // We do this ourselves bigger 19 - .withAboutIconShown(false) // Let the fragment show our version 20 - .withAboutVersionShown(true) // Not sure why you'd do this without license info 21 - .withLicenseShown(true) 22 - .supportFragment() 18 + .withFields(R.string::class.java.fields) 19 + .withAboutIconShown(false) // We do this ourselves bigger 20 + .withAboutVersionShown(true) // Let the fragment show our version 21 + .withLicenseShown(true) // Not sure why you'd do this without license info 22 + .supportFragment() 23 23 24 24 }