Skip to content

Commit

Permalink
[CHORE] #14 : Hilt Application setup
Browse files Browse the repository at this point in the history
  • Loading branch information
jeongjaino committed Oct 5, 2023
1 parent 66e9386 commit 604c77f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
xmlns:tools="http://schemas.android.com/tools">

<application
android:name=".WappApplication"
android:allowBackup="true"
android:dataExtractionRules="@xml/data_extraction_rules"
android:fullBackupContent="@xml/backup_rules"
Expand Down
7 changes: 7 additions & 0 deletions app/src/main/java/com/wap/wapp/WappApplication.kt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package com.wap.wapp

import android.app.Application
import dagger.hilt.android.HiltAndroidApp

@HiltAndroidApp
class WappApplication: Application()

0 comments on commit 604c77f

Please sign in to comment.