Status Update
Comments
je...@google.com <je...@google.com> #2
Chris, can you find someone in LON ?
cm...@google.com <cm...@google.com> #3
Just updating the constant is in proposed change ag/27627420
We should also update tests to use 35 as soon as we have a staged build of it. Hakan, please can you guide Wojciech in landing that?
ko...@google.com <ko...@google.com>
sp...@google.com <sp...@google.com>
cm...@google.com <cm...@google.com> #4
hm...@google.com <hm...@google.com>
ja...@geokeyaccess.com <ja...@geokeyaccess.com> #5
1. Dependency 'androidx.core:core:1.15.0-alpha01' requires libraries and applications that
depend on it to compile against version 35 or later of the
Android APIs.
:app is currently compiled against android-34.
Also, the maximum recommended compile SDK version for Android Gradle
plugin 8.1.2 is 34.
Recommended action: Update this project's version of the Android Gradle
plugin to one that supports 35, then update this project to use
compileSdk of at least 35.
Note that updating a library or application's compileSdk (which
allows newer APIs to be used) can be done separately from updating
targetSdk (which opts the app in to new runtime behavior) and
minSdk (which determines which devices the app can be installed
on).
au...@google.com <au...@google.com> #6
Any updates here?
au...@google.com <au...@google.com> #7
AndroidX is starting to ship libraries that depend on compileSdk 35. This means we'll have more and more users that need AGP that supports compileSdk 35. Right now there is no AGP that supports compileSdk 35 without warninings.
al...@google.com <al...@google.com> #8
Heads up that Compose team will be asking for this, as well.
cm...@google.com <cm...@google.com> #9
There are no warnings for API 35 in AGP 8.5.0 (this is not correct, see below)
The only known issue is in lint (internal
an...@google.com <an...@google.com> #10
Thank you for your patience while our engineering team worked to resolve this issue. A fix for this issue is now available in:
- Android Studio Ladybug | 2024.2.1 Canary 4
- Android Gradle Plugin 8.7.0-alpha04
We encourage you to try the latest update.
If you notice further issues or have questions, please file a new bug report.
Thank you for taking the time to submit feedback — we really appreciate it!
wf...@google.com <wf...@google.com> #11
I think the warnings are showing in 8.5.0, as the change was done in 8.6.0. To be discussed.
an...@google.com <an...@google.com> #12
Further fixes for this issue are now available in:
- Android Studio Ladybug | 2024.2.1 Canary 7
- Android Gradle Plugin 8.7.0-alpha07
We encourage you to try the latest update.
If you notice further issues or have questions, please file a new bug report.
ro...@gmail.com <ro...@gmail.com>
cm...@google.com <cm...@google.com> #13
Sorry looking back at this I got the version wrong in
an...@google.com <an...@google.com> #14
Further fixes for this issue are now available in:
- Android Studio Ladybug | 2024.2.1 Canary 8
- Android Gradle Plugin 8.7.0-alpha08
We encourage you to try the latest update.
If you notice further issues or have questions, please file a new bug report.
wa...@gmail.com <wa...@gmail.com> #15
val networkRequestBuilder = NetworkRequest.Builder() // Add or remove capabilities based on your requirements. // For example, this code specifies that the job won't run // unless there's a connection to the internet (not just a local // network), and the connection doesn't charge per-byte. .addCapability(NET_CAPABILITY_INTERNET) .addCapability(NET_CAPABILITY_NOT_METERED) .build()
val jobInfo = JobInfo.Builder(jobId, ComponentName(mContext, CustomTransferService::class.java)) // ... .setUserInitiated(true) .setRequiredNetwork(networkRequestBuilder) // Provide your estimate of the network traffic here .setEstimatedNetworkBytes(1024 * 1024 * 1024) // ... .build()
ro...@gmail.com <ro...@gmail.com> #16
an...@google.com <an...@google.com> #17
The fixes for this issue are now also available in:
- Android Studio Meerkat Feature Drop | 2024.3.2 Canary 2
- Android Gradle Plugin 8.10.0-alpha02
We encourage you to try the latest update.
If you notice further issues or have questions, please file a new bug report.
sa...@gmail.com <sa...@gmail.com> #18
G
Description
DESCRIBE THE ISSUE IN DETAIL:
Android is about to ship API 35, AGP should support.
STEPS TO REPRODUCE:
Expected
No warnings
Actual