-
Hi, I am trying to migrate to `Clean Architecture`.
I have application which is made in standard way, I tried to decouple, but still a lot of stuff happens in `Activities` and `Fragments`.
Example…
CROSP updated
8 years ago
-
So we've actually tried to use this with our android project, in a common android application you would have many activities and fragments. It seems you need to add an inject method for each of those …
-
Hey!
Thank you for maintaining this app and adding nice and useful features!
I wanted to ask if you are planning to create a Desktop App (preferably for Linux) as well or some way to run this app …
-
Dagger compiler doesn't complain, but compiling the generated class will fail with an error like:
```
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.1:compile (defaul…
-
### Description
I have an issue with route registration in MAUI `Shell`.
First of all, it is possible to define routes on different places, having a different effect. **This different result is su…
-
I am using this awesome Gradle [plugin](https://github.com/gmazzo/gradle-android-test-aggregation-plugin) to perform aggregation of code coverage on KMM modules that is using KSP due to usage of Roo…
-
Currently it's only possible for factory parameters to be injected as Providers. In certain DI frameworks (e.g., spring), Provider#get can be slow (lots of reflection) or even dangerous (dependency gr…
-
The following proto file will not build using wire:
```
syntax="proto3";
message Simple {
int32 com = 1;
}
```
Fine if I wasn't so lazy and called my field centre_of_mass ;-)
Gen…
-
Given the following code
```
class LoginActivityTest {
@Rule
public MockitoRule mockitoRule = MockitoJUnit.rule();
@Mock
SomeClass someClass;
@Mock
SomeOtherClass…
-
Would it be possible to have this instantiated and the auth token set later? Currently it is difficult to use with a dependency injection framework and its also just not ideal to make a network call …