satween
satween
Example code ``` @Contract interface AppContract class AppContractConfiguration : ContractConfiguration() @ProvidedBy(AppContractConfiguration::class) enum class Dependency @Inject constructor() ```
Example code : ``` @Contract interface AppContract class AppContractConfiguration : ContractConfiguration() interface SomeValidInterface class Outer { @ProvidedAs(SomeValidInterface::class) @ProvidedBy(AppContractConfiguration::class) inner class Dependency @Inject constructor() : SomeValidInterface } ```
### What does this PR do? In this PR I just want to merge everything made for SDK v3 into `feature/v3` branch and use it as a base for further...
### What does this PR do? * Adds new method to the `TimeProvider` allowing to get the amount of time (in milliseconds) since process start. The api for that was...