Faucogney Anthony

Results 39 comments of Faucogney Anthony

@sillych I change the lib to https://github.com/daimajia/AndroidSwipeLayout. Doc is not uptodate, but it does well support recyclerview. I get no issues with it.

After debugging, I added the following dependencies to make it running : ```` testImplementation "io.mockk:mockk-agent-api:1.10.0" testImplementation "io.mockk:mockk-agent-jvm:1.10.0" testImplementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version" ```` But I think this should be easy as it is...

@Claire, I think your mockito rule is useless ;), even if it doesn't change the behavior/issue. Le jeu. 1 août 2019 à 14:24, ClaireGizard a écrit : > Hi @dlemures...

Hi, this usecase is a bit strange to me, could you please explain the real usecase ? What do you need to achieve ?Why not to just inject Iface in...

Your usecase is fine to me, but the following is not clear to me: > parentScope.installModules(module { bind(IAdsManager::class.java).toProviderInstance { scope.getInstance(IAdsManager::class.java) }.providesSingleton() }) To Inject the IAdsManager, in your app, you...

I think this is not the design concept of ktp that block you in finding solutions. My point was more about general concept. I think there are 2 possible solutions...

Here are the decompiled koltin to java code When only `@field:MockK` ``` @MockK @NotNull public ISmoothie smoothie; ``` When only `@MockK` ``` @MockK public static void smoothie$annotations() { } ```...

Yes, but he is under project pressure, so he has only time to manage critical bug for now.... From a general matter, which should adapter to the other ! Di...

@dlemures no, I mean one function is missing to close the ViewModel scope, when the viewmodel is cleared. Inside the viewmodel, like this for now: ``` abstract class KtpBaseViewModel(app: Application)...

@dlemures I just fix the question, with extra info ! Maybe this will be 2 issue at the end.