Add local dependency

This commit is contained in:
ろむねこ 2023-12-10 17:23:27 +09:00
parent d1373eab9e
commit 6373bd1f47
No known key found for this signature in database
GPG Key ID: FA1F39A1BA37D168
2 changed files with 8 additions and 0 deletions

View File

@ -42,4 +42,9 @@ dependencies {
implementation libs.com.google.dagger.hilt.android implementation libs.com.google.dagger.hilt.android
annotationProcessor libs.com.google.dagger.hilt.compiler annotationProcessor libs.com.google.dagger.hilt.compiler
//
// data
implementation project(':data:repository')
} }

View File

@ -9,6 +9,8 @@ import android.view.View;
import android.view.ViewGroup; import android.view.ViewGroup;
import android.widget.Button; import android.widget.Button;
import javax.inject.Inject;
/** /**
* A simple {@link Fragment} subclass. * A simple {@link Fragment} subclass.
* Use the {@link DebugMenuFragment#newInstance} factory method to * Use the {@link DebugMenuFragment#newInstance} factory method to
@ -16,6 +18,7 @@ import android.widget.Button;
*/ */
public class DebugMenuFragment extends Fragment { public class DebugMenuFragment extends Fragment {
@Inject
// TODO: Rename parameter arguments, choose names that match // TODO: Rename parameter arguments, choose names that match