package com.example.tools.dagger.scopes; import javax.inject.Scope; import java.lang.annotation.Documented; import java.lang.annotation.Retention; import static java.lang.annotation.RetentionPolicy.RUNTIME; @Scope @Documented @Retention(RUNTIME) public @interface ActivityScope { }