Arunkumar
Arunkumar
Currently detecting and setting default browser is hacky. Need to discover a better solution to handle such cases.
Having both unnecessarily increases app size and method count. Needs reimplementing `IntentPickerSheetView` too.
Currently some apps can send ACTION_VIEW intents targeting the `MainActivity` instead of `BrowserInterceptActivity`. This can happen when apps try to do `getLaunchIntentForPackage()` instead of manually targeting the specific component. Need...
When compiling large modules we noticed `KotlinKapt` would fail with `Too many open files` on MacOS. We increased the shell limit manually from default 256 to 65536. Verified by running...
When I try to disable strict deps the build fails with following exception. ```java SEVERE: Compilation failure: compile phase failed: exception: java.io.UncheckedIOException: java.io.FileNotFoundException: /private/var//9f2930d169b651fc4026a3d396084f70/external/remotejdk11_macos (Is a directory) at io.bazel.kotlin.builder.utils.jars.JarOwner$Companion.readJarOwnerFromManifest(JarOwner.kt:24) at...
Currently images are not generated for hilt components due to Hilt's aggregating task ignoring SPI plugins on the classpath. A possible fix is presented [here ](https://github.com/google/dagger/issues/3464#issuecomment-1182532596), so we could add...
Splitting the graphs by component is nice and keeps graphs readable, but on small projects rendering a single graph would still bring value. Should consider providing option to render single...
Currently the gradle plugin is not Android aware and adds processor to app level instead of variant level. Should consider making it such that it is variant aware and only...