architecture-samples icon indicating copy to clipboard operation
architecture-samples copied to clipboard

A collection of samples to discuss and showcase different architectural tools and patterns for Android apps.

Results 154 architecture-samples issues
Sort by recently updated
recently updated
newest added

branch : todo-mvvm-live-kotlin I have failed to build the project, probably it has failed to generate appropriate classes for data binding. I am quite curious about this line as well...

Current `usecases` branch is based on `views`

How can we use `DataBindingIdlingResource` and also use `launchFragmentInHiltContainer`? `launchFragmentInHiltContainer` is not returning anything. However, I've modified it like this: ``` inline fun launchFragmentInHiltContainer( fragmentArgs: Bundle? = null, @StyleRes themeResId:...

Hi, I have a question regarding the SingleLiveEvent class, internally It uses an atomic boolean, but it is accessed always in the main thread. It is really required an atomic...