com.vikingsen.inject.fragment.FragmentInject Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fragment-inject-annotations Show documentation
Show all versions of fragment-inject-annotations Show documentation
Injection for Androidx Fragments
The newest version!
package com.vikingsen.inject.fragment;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
import static java.lang.annotation.ElementType.CONSTRUCTOR;
import static java.lang.annotation.RetentionPolicy.CLASS;
@Retention(CLASS)
@Target(CONSTRUCTOR)
public @interface FragmentInject {
}