Updated on 2026-08-14
This commit is contained in:
parent
2a8498e464
commit
1d2b869b46
11 changed files with 77 additions and 8 deletions
15
app/src/main/java/com/tangem/DI/AppComponent.java
Normal file
15
app/src/main/java/com/tangem/DI/AppComponent.java
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
package com.tangem.DI;
|
||||
|
||||
import com.tangem.AppController;
|
||||
|
||||
import javax.inject.Singleton;
|
||||
|
||||
import dagger.Component;
|
||||
|
||||
@Singleton
|
||||
@Component(modules = {AppModule.class})
|
||||
public interface AppComponent {
|
||||
|
||||
void inject(AppController appController);
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue