Faucogney Anthony
Faucogney Anthony
**https://github.com/datatheorem/TrustKit-Android** I get a `com.datatheorem.android.trustkit.config.ConfigurationException: TrustKit was initialized with a different network policy than the one configured in the App's manifest.` exception !
I use the lib in a project where list items need to handle - swipe right - click - long-click The behavior is almost ok, but I still have an...
I have tried to run a simple test-case with Mockk https://mockk.io/, but it doesn't work. ```` class PitMockkDepUseCaseTest { @Test fun test() { mockkConstructor(PitProvider::class) every { anyConstructed().provideNumber() } returns 4...
Enable to verify a static mock is not called anymore with the routine confirmVerified `mockkStatic(Session::class)` `every { Session.getToken() } returns "tokenSso"` `...` `confirmVerified(Session::class)`
- add androidx.annotation dependency to every modules - add nullability annotations to Toothpick api that is used by KTP I know this make a dependency of Android to Toothpick, but...
Fix https://github.com/stephanenicolas/toothpick/issues/416
Hi, I'm trying to combine KTP with LeakCanary to secure that there is no leak in project, even with KTP. Based on the sample, I just add LeakCanary dep, and...
LeakCanary detects leaks which belong to official Android/Jetpack lifecycles. With KTP, we may define our own instances management system with a scope-tree. When we open and close scopes, a lifecycle...
Could you maybe rephrase the definition, or the target of the feature, because I do not understand well how it does work and for what purpose it is ! the...
Hello, I'm trying to handle the new extension function provided by TP3. ``` // Close Scope when the Activity/Fragment is destroyed KTP.openScopes(this) .closeOnDestroy(this) .inject(this) // Close Scope when the ViewModel...