This commit is contained in:
ろむねこ 2023-12-10 17:12:46 +09:00
parent 7d5a2316b0
commit 65c1996c47
No known key found for this signature in database
GPG Key ID: FA1F39A1BA37D168
3 changed files with 18 additions and 1 deletions

View File

@ -32,4 +32,8 @@ dependencies {
testImplementation libs.junit
androidTestImplementation libs.androidx.test.ext.junit
androidTestImplementation libs.androidx.test.espresso.core
// Hilt (DI)
implementation libs.com.google.dagger.hilt.android
annotationProcessor libs.com.google.dagger.hilt.compiler
}

View File

@ -0,0 +1,7 @@
package one.nem.lacerta.data.repository;
public class TestData {
public String getTestData(){
return "TestData";
}
}

View File

@ -7,9 +7,15 @@
tools:context=".DebugMenuFragment">
<!-- TODO: Update blank fragment layout -->
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_height="wrap_content"
android:text="DebugMenu" />
<Button
android:id="@+id/button"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>