-
Notifications
You must be signed in to change notification settings - Fork 143
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Resolve DaggerDeps #3
Comments
just clean and rebuild your project |
@hafsalrahman let say you create component interface MyComponent, then you will have generated like DaggerMyComponent . . . CMIIW |
Why didn't generated DaggerDeps? I followed yours steps and code , just didn't work. |
File->Other Settings->Default Settings->Build,Execution,Deployment->Compiler->Annotation Processors->Enable Annotation Processing->Apply->Ok |
import com.plaps.androidcleancode.deps.Deps;
import com.plaps.androidcleancode.networking.NetworkModule;
import java.io.File;
/**
Created by ennur on 6/28/16.
*/
public class BaseApp extends AppCompatActivity{
Deps deps;
@OverRide
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
File cacheFile = new File(getCacheDir(), "responses");
}
How to resolve DaggerDeps ?
The text was updated successfully, but these errors were encountered: