Gabor Varadi
Gabor Varadi
I tried putting the app in background to see what happens, and the first screen gets reloaded. But that's not the general expected behavior. I wonder if Square already has...
When you use system back, app closes even on the second screen
``` 05-04 09:02:22.172 3786-3786/com.example.helloworkflow E/AndroidRuntime: FATAL EXCEPTION: main Process: com.example.helloworkflow, PID: 3786 java.lang.SecurityException: Permission Denial: opening provider com.android.providers.calendar.CalendarProvider2 from ProcessRecord{3c9a906 3786:com.example.helloworkflow/u0a64} (pid=3786, uid=10064) requires android.permission.READ_CALENDAR or android.permission.WRITE_CALENDAR at android.os.Parcel.readException(Parcel.java:1599) at...
Targeting S+ (version 31 and above) requires that one of FLAG_IMMUTABLE or FLAG_MUTABLE be specified when creating a PendingIntent. Strongly consider using FLAG_IMMUTABLE, only use FLAG_MUTABLE if some functionality depends...
[Barista](https://github.com/SchibstedSpain/Barista) has existed since `29 Dec 2016` and therefore might have solved some issues that aren't evident via direct usage of Espresso. It should be investigated whether we can use...
AutoValue itself handles generics properly: Generated("com.google.auto.value.processor.AutoValueProcessor") abstract class $AutoValue_Action extends Action { But `auto-parcel` fails: final class AutoValue_Action extends $AutoValue_Action { In 1.0.3, I get raw type public AutoValue_Action (...
It seems that ViewModel has no support for SavedStateHandle, nor is onSaveInstanceState/savedInstanceState handled in any way in any code within this repository. What is the recommended approach that makes it...
``` E/ContextImpl: Tried to access visual service WindowManager from a non-visual Context: WindowManager should be accessed from Activity or other visual Context. Use an Activity or a Context created with...
With the "advent" of `OnBackPressedDispatcher`, we already had to do this: ``` kotlin class MainActivity : AppCompatActivity(), SimpleStateChanger.NavigationHandler { private val backPressedCallback = object: OnBackPressedCallback(true) { override fun handleOnBackPressed() {...