Fixed
Status Update
Comments
mg...@google.com <mg...@google.com>
mg...@google.com <mg...@google.com>
ap...@google.com <ap...@google.com> #2
Project: platform/frameworks/support
Branch: androidx-main
Author: Hao Dong <
Link:
Update documentation and annotations
Expand for full commit details
Update documentation and annotations
1. Update BiometricPrompt documentation with strength info
2. Add @Deprecated annotation for IdentityCredential to keep
consistent with framework.
3. Use rule instead of MockitoAnnotations
Fixes: 140252778
Fixes: 217942278
Fixes: 251211046
Fixes: 239955609
Relnote: "Add @Deprecated annotation for IdentityCredential to keep
consistent with framework."
Test: ./gradlew biometric:biometric:assemble
Test: ./gradlew biometric:biometric:updateApi
Change-Id: I6ac906032150503829af6a4aca028037be7934af
Files:
- M
biometric/biometric/api/current.txt
- M
biometric/biometric/api/restricted_current.txt
- M
biometric/biometric/lint-baseline.xml
- M
biometric/biometric/src/androidTest/java/androidx/biometric/DeviceUtilsTest.java
- M
biometric/biometric/src/main/java/androidx/biometric/BiometricPrompt.java
- M
biometric/biometric/src/main/java/androidx/biometric/CryptoObjectUtils.java
- M
biometric/biometric/src/test/java/androidx/biometric/AuthenticationCallbackProviderTest.java
- M
biometric/biometric/src/test/java/androidx/biometric/BiometricManagerTest.java
- M
biometric/biometric/src/test/java/androidx/biometric/CancellationSignalProviderTest.java
- M
biometric/biometric/src/test/java/androidx/biometric/CryptoObjectUtilsTest.java
- M
biometric/biometric/src/test/java/androidx/biometric/KeyguardUtilsTest.java
- M
biometric/biometric/src/test/java/androidx/biometric/PackageUtilsTest.java
- M
credentials/credentials/src/main/java/androidx/credentials/provider/utils/CryptoObjectUtils.kt
Hash: 65b837ca1bbe66dafeab43b78bca416d6abc04fc
Date: Tue Nov 12 18:27:57 2024
ap...@google.com <ap...@google.com> #3
The following release(s) address this bug.It is possible this bug has only been partially addressed:
androidx.credentials:credentials:1.5.0-rc01
na...@google.com <na...@google.com> #4
The following release(s) address this bug.It is possible this bug has only been partially addressed:
androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-alpha09
androidx.lifecycle:lifecycle-viewmodel-savedstate-android:2.9.0-alpha09
androidx.lifecycle:lifecycle-viewmodel-savedstate-desktop:2.9.0-alpha09
androidx.lifecycle:lifecycle-viewmodel-savedstate-iosarm64:2.9.0-alpha09
androidx.lifecycle:lifecycle-viewmodel-savedstate-iossimulatorarm64:2.9.0-alpha09
androidx.lifecycle:lifecycle-viewmodel-savedstate-iosx64:2.9.0-alpha09
androidx.lifecycle:lifecycle-viewmodel-savedstate-linuxarm64:2.9.0-alpha09
androidx.lifecycle:lifecycle-viewmodel-savedstate-linuxx64:2.9.0-alpha09
androidx.lifecycle:lifecycle-viewmodel-savedstate-macosarm64:2.9.0-alpha09
androidx.lifecycle:lifecycle-viewmodel-savedstate-macosx64:2.9.0-alpha09
Description
Component used: Lifecycle ViewModel SavedState
Version used: 2.9.0-alpha08
With the introduction of
CreationExtras
andviewModelFactory
,AbstractSavedStateViewModelFactory
is no longer needed and should be deprecated or at least marked as discouraged since it forces the creation of aSavedStateHandle
for every ViewModel even if the ViewModel does not require one, causing pressure on the saved instance state size and additional book keeping.