Status Update
Comments
cc...@google.com <cc...@google.com>
cc...@google.com <cc...@google.com> #2
We'd accept a pull request for this if you'd like
cc...@google.com <cc...@google.com> #4
Branch: androidx-master-dev
commit 205ca48fd552f665e52647b3bbee63839c7bd897
Author: Nicklas Ansman Giertz <nicklas@ansman.se>
Date: Thu Nov 12 21:57:48 2020
Migrate ShareCompat factory methods to constructors
The `from` methods for creating IntentBuilders and IntentReaders has
been deprecated and the constructor has been made public.
In addition to this there are now two ways of creating each class, one
from an Activity and one from the raw components.
Fixes: 173043501
Test: ShareCompatTest
Relnote: "ShareCompat now uses constructors for creation and the old
factory methods have been deprecated. You can now create both builders
and readers from a Context and an Activity is no longer required."
Change-Id: I315b68aff01ca931d38b934786e6d9b2174f720b
M core/core/api/current.txt
M core/core/api/public_plus_experimental_current.txt
M core/core/api/restricted_current.txt
M core/core/src/androidTest/java/androidx/core/app/ShareCompatTest.java
M core/core/src/main/java/androidx/core/app/ShareCompat.java
ch...@google.com <ch...@google.com> #5
Thanks for fixing this! New constructors (which replace the now deprecated static from()
methods) for IntentReader
and IntentBuilder
will be available in the next build of Core.
du...@google.com <du...@google.com> #6
I had a go on this on my end and couldn't figure out how to get connectedCheck to recognize that there are test classes defined in src/main
- it's probably best try the split method, but we have some setup before hand so its not as clean in terms of being able to copy the classes back directly when minifyEnabled gets support on library modules.
du...@google.com <du...@google.com> #7
(This is on collections).
cc...@google.com <cc...@google.com> #8
I was expecting more along the lines of 5% not 20%-30%. Do other benchmarks improve in a similar way?
I don't know, I only looked at the one to get it up and running - you can cherry pick the linked CL to try it out on other benchmarks.
I always use the command-line and a custom script to interpret the results so not being able to run them from Studio would not affect me
Depending on which benchmarks we want to modify, it may hit others who are accustomed to running from Studio. If we want to commit this, keeping it scoped to runtime only may make sense.
couldn't figure out how to get connectedCheck to recognize
I don't think I did anything special, though I did play around with sourcesets a lot. Are you able to run this CL locally? It may have been only working for me due to some cached gradle/studio state.
cm...@google.com <cm...@google.com> #9
Just checking I follow your logic in #3 - the challenge is that you want all the test entry points to be roots for R8 to keep - which currently is not supported for app tests (and is potentially a bit odd for 'normal' app users as having the production shrunk build depending on tests might be suprising) and that moving them to the main sourceset breaks studio being able to run them.
So possibilities look like androidx only
- Create an app with the tests with different build types for shrunk/not shrunk
- For studio support split the @Test bodies in to a class in src/main and add keep rules for that class, or manually curate keep rules. agp/studio
- Fix studio running tests that are in main in an app
- Support tracing @Tests in androidTest when shrinking the app in AGP
- Add special support to AGP for shrinking library tests
- Shrinker support in library is
- Add test only module support for shrinking and library targets.
cc...@google.com <cc...@google.com> #10
Yes, (not sure what you mean by androidx only, since some of them are general solutions) though I'd add another possibility is the AGP support for macrobenchmarks source directory within existing modules, as we discussed a while back.
Also, the more general bug for R8 + Microbenchmark is here:
cc...@google.com <cc...@google.com>
cc...@google.com <cc...@google.com> #11
This is now possible with AGP changes, I was able to get simple tests running with minification on in a standalone project.
Once the required version of AGP lands in AndroidX, I'll add an example for local experimentation with R8 in microbenchmarks, and we can consider options for how we want to use this in CI.
These are the rules I used to test the integration in a standalone project:
# basic protection against junit/androidx.test reflection, shouldn't affect library/test code
-keepclasseswithmembers class androidx.test.** { *; }
-keepclasseswithmembers class org.junit.** { *; }
-dontwarn com.google.errorprone.annotations.MustBeClosed
## keep test classes
-keepclasseswithmembers @org.junit.runner.RunWith class * { *; }
## needed for org.junit.Test annotation to be discoverable by reflection
-keepattributes *Annotation*
ap...@google.com <ap...@google.com> #12
Branch: androidx-main
commit cecc57fb5899034f12f886a2784129098d059a8d
Author: Chris Craik <ccraik@google.com>
Date: Tue Mar 05 16:46:59 2024
Experimental R8 support in microbenchmarks
Off by default in the AndroidX repo, but can be experimentally used by
external. As this isn't run in presubmit/postsubmit, it may require
adding additional rules for any specific test.
```
(androidTest.enableMinification = false)
840,772 ns 389 allocs Trace LazyListScrollingBenchmark.scrollProgrammatically_newItemComposed[LazyColumn]
837,786 ns 389 allocs Trace LazyListScrollingBenchmark.scrollProgrammatically_newItemComposed[LazyRow]
(androidTest.enableMinification = true)
658,050 ns 390 allocs Trace LazyListScrollingBenchmark.scrollProgrammatically_newItemComposed[LazyColumn]
651,393 ns 390 allocs Trace LazyListScrollingBenchmark.scrollProgrammatically_newItemComposed[LazyRow]
```
(Mokey, locked clocks)
Test: LazyListScrollingBenchmark.scrollProgrammatically_newItemComposed
Fixes: 184378053
Relnote: """Experimental R8 support in microbench via embedded proguard
rules. Note that this support is experimental, and requires AGP 8.3
for minification of library module tests. Use the following to enable
in your benchmark module's `build.gradle`:
```
android {
buildTypes.release.androidTest.enableMinification = true
}
```
"""
Change-Id: I738a3294c5ded7b336ed0f49d0615eb9231cce51
M benchmark/benchmark-junit4/build.gradle
A benchmark/benchmark-junit4/proguard-rules.pro
M compose/benchmark-utils/build.gradle
A compose/benchmark-utils/proguard-rules.pro
M compose/foundation/foundation/benchmark/build.gradle
cc...@google.com <cc...@google.com> #13
With the above CL, this can be enabled locally with the following in your build.gradle:
android {
buildTypes.release.androidTest.enableMinification = true
}
No further proguard customization needed in most cases.
pr...@google.com <pr...@google.com> #14
The following release(s) address this bug.It is possible this bug has only been partially addressed:
androidx.benchmark:benchmark-junit4:1.3.0-alpha02
androidx.compose.foundation:foundation:1.7.0-alpha05
androidx.compose.foundation:foundation-android:1.7.0-alpha05
androidx.compose.foundation:foundation-desktop:1.7.0-alpha05
Description
Ideally we can track improvements for minified code (post r8 transforms) as compose sometimes make optimizations depending on these, e.g., changes to enable aot to inline.
It's currently impossible to apply:
to a benchmark module, even if has been converted to an app module because it fails with either:
1.
2.