Fixed
Status Update
Comments
ap...@google.com <ap...@google.com> #2
Fixed in aosp/2133650.
ap...@google.com <ap...@google.com> #3
Project: platform/frameworks/support
Branch: androidx-main
commit 47782e507ed18b73c1453949544bb7075edfe6dd
Author: Alan Viverette <alanv@google.com>
Date: Tue Jun 21 16:27:55 2022
Clean up lint issues in arch core
Does not fix nullability for methods inheriting from JUnit TestWatcher,
which is not annotated.
Relnote: Updated nullability
Fixes: 236472329
Fixes: 236472101
Fixes: 236472102
Fixes: 236471987
Fixes: 236472078
Fixes: 236472176
Fixes: 236471905
Fixes: 236472103
Test: arch core test suite
Change-Id: I34b6b636572f1bce61d38af563b4a989aa108f82
M arch/core/core-testing/api/restricted_current.txt
M arch/core/core-runtime/api/restricted_current.txt
M arch/core/core-runtime/src/main/java/androidx/arch/core/executor/ArchTaskExecutor.java
M arch/core/core-common/src/main/java/androidx/arch/core/internal/SafeIterableMap.java
M arch/core/core-testing/src/main/java/androidx/arch/core/executor/testing/CountingTaskExecutorRule.java
M arch/core/core-testing/api/public_plus_experimental_current.txt
M arch/core/core-testing/src/main/java/androidx/arch/core/executor/JunitTaskExecutorRule.java
M arch/core/core-common/api/restricted_current.txt
M arch/core/core-testing/src/main/java/androidx/arch/core/executor/testing/InstantTaskExecutorRule.java
M arch/core/core-testing/src/main/java/androidx/arch/core/executor/TaskExecutorWithFakeMainThread.java
M arch/core/core-testing/api/current.txt
M arch/core/core-common/src/main/java/androidx/arch/core/internal/FastSafeIterableMap.java
M arch/core/core-runtime/src/main/java/androidx/arch/core/executor/DefaultTaskExecutor.java
https://android-review.googlesource.com/2133650
Branch: androidx-main
commit 47782e507ed18b73c1453949544bb7075edfe6dd
Author: Alan Viverette <alanv@google.com>
Date: Tue Jun 21 16:27:55 2022
Clean up lint issues in arch core
Does not fix nullability for methods inheriting from JUnit TestWatcher,
which is not annotated.
Relnote: Updated nullability
Fixes: 236472329
Fixes: 236472101
Fixes: 236472102
Fixes: 236471987
Fixes: 236472078
Fixes: 236472176
Fixes: 236471905
Fixes: 236472103
Test: arch core test suite
Change-Id: I34b6b636572f1bce61d38af563b4a989aa108f82
M arch/core/core-testing/api/restricted_current.txt
M arch/core/core-runtime/api/restricted_current.txt
M arch/core/core-runtime/src/main/java/androidx/arch/core/executor/ArchTaskExecutor.java
M arch/core/core-common/src/main/java/androidx/arch/core/internal/SafeIterableMap.java
M arch/core/core-testing/src/main/java/androidx/arch/core/executor/testing/CountingTaskExecutorRule.java
M arch/core/core-testing/api/public_plus_experimental_current.txt
M arch/core/core-testing/src/main/java/androidx/arch/core/executor/JunitTaskExecutorRule.java
M arch/core/core-common/api/restricted_current.txt
M arch/core/core-testing/src/main/java/androidx/arch/core/executor/testing/InstantTaskExecutorRule.java
M arch/core/core-testing/src/main/java/androidx/arch/core/executor/TaskExecutorWithFakeMainThread.java
M arch/core/core-testing/api/current.txt
M arch/core/core-common/src/main/java/androidx/arch/core/internal/FastSafeIterableMap.java
M arch/core/core-runtime/src/main/java/androidx/arch/core/executor/DefaultTaskExecutor.java
ap...@google.com <ap...@google.com> #4
The following release(s) address this bug.It is possible this bug has only been partially addressed:
androidx.arch.core:core-common:2.2.0-alpha01
androidx.arch.core:core-runtime:2.2.0-alpha01
androidx.arch.core:core-testing:2.2.0-alpha01
ap...@google.com <ap...@google.com> #5
Pkbk pyare bk janu I am miss you babu bk janu I am miss you babu bk janu 🌻🌺 you are not 🚭 I love you janu 🌿🌻 you are free I love u so much mam for you janu 🌻🏵️ you are not 🚫🚭🚫 you are
ap...@google.com <ap...@google.com> #6
Lawde
se...@google.com <se...@google.com> #7
Will be released in 2.10.0-alpha01
na...@google.com <na...@google.com> #8
The following release(s) address this bug.It is possible this bug has only been partially addressed:
androidx.work:work-multiprocess:2.10.0-alpha01
androidx.work:work-runtime:2.10.0-alpha01
Description
Version used: 2.8.1
Devices/Android versions reproduced on: Android 10, 13
Our app uses both JobScheduler (in older part) and WorkManager (in newer code)
We noticed that jobs and workers never start on Android 11 and 13 devices connected to a private network (no internet access).
Older devices (Android 8) work fine.
It seems to be related to JobInfo.setRequiredNetworkType creating a NetworkRequest with NET_CAPABILITY_INTERNET and NET_CAPABILITY_VALIDATED.
On the JobScheduler side we fixed the problem by specifying the required network with a proper NetworkRequest instead of a networkType.
Unfortunately this is not possible with the WorkManager.
I believe that private networks are quite common in enterprise environment. The WorkManager is currently not suitable for this use case.
More generally it would be nice to be able define the required network more precisely.
In our case, the workaround we can think of are :
- Modify the URL used to validate the network (via OEM config), so that the devices believe they have internet access. It work but it's ugly and only possible for some devices.
- Migrate the code from WorkManager to JobScheduler. Interestingly enough we were previously considering the opposite.