Martin Zeitler
Martin Zeitler
`HdrViewFinder` is a render-script example; that's probably not worth updating.
This appears to be rather for the CameraX [issue tracker](https://issuetracker.google.com/issues?q=componentid:618491), than `camera-samples`.The first one issue I've randomly clicked turned up this [`ComposeUiFragment.kt`](https://cs.android.com/androidx/platform/frameworks/support/+/androidx-main:camera/integration-tests/viewtestapp/src/main/java/androidx/camera/integration/view/ComposeUiFragment.kt)
`class androidx.window.WindowManager` might have been removed to avoid confusion with `interface android.view.WindowManager`. The suggested fix would be to obtain the aspect ratio with the `WindowMetricsCalculator`: // Get screen metrics used...
https://developer.android.com/reference/android/bluetooth/BluetoothAdapter.html > get a BluetoothAdapter representing the local Bluetooth adapter, when running on JELLY_BEAN_MR1 and below, call the static getDefaultAdapter() method; when running on JELLY_BEAN_MR2 and higher, call getAdapter().
update the code to some about like that, in order to handle the depreciated API: ``` if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR2) { mBluetoothAdapter = ((BluetoothManager) getSystemService(Context.BLUETOOTH_SERVICE)).getAdapter(); } else { /** the...
`R.string.sets_format` is the one formatted text in the header, eg. `Sets: 1/6`. While the lack of the attribute `formatted="false"` prevented the build, because it rejected the (otherwise) positional format `%d/%d`....
I've fixed the reference to class `BR`, which closes #27 & probably #28. Also fixed most Gradle & Lint warnings.
@jeromegamez Thank you, works for me while it is being configurable. I've just noticed, because I currently write a similar library for Push Kit. The `click_action` & `channel_id` probably should...
A `Fragment` would indeed be nice to have, eg. in order to include it in a navigation graph - or inside a `DialogFragment`. But this would rather require changes to...
I've updated that with Sonatype & MavenCentral.