Kamal Faraj
Kamal Faraj
This is really annoying because it does not respect the lifecycle of an Android app. Consider the following example using Firebase Analytics: ``` class LauncherApplication : Application() { override fun...
Maybe it could be done in `AndroidTestEnvironment.installAndCreateApplication` just before the `application` is created. https://github.com/robolectric/robolectric/blob/master/robolectric/src/main/java/org/robolectric/android/internal/AndroidTestEnvironment.java
@hoisie thanks for the feedback, is there a way to manually create a content provider before the application is created? With the same example, using `Before` is too late because...
Would it be possible for Robolectric to change the behavior and generate a warning rather than an error? It would have several benefits: - Tests will continue to run in...
@utzcoz Thanks for your feedback. It should be good now.
@hoisie Thanks for the upcoming support of Android V, is there any chance to merge this PR for the future? I agree with the recommandation of decoupling the target SDK...
Thanks for the hard work to support Android 16! What do you want to do with this PR now? Another approach would be to ensure that the default SDK version...
I updated my PR to fix this issue. https://github.com/material-components/material-components-android/pull/2121
I submitted a PR to print a warning and use the max SDK version if it is lower than the target SDK version, instead of failing tests. Please note that...