Skip to content

Commit c89a35b

Browse files
committed
Feat: application 클래스 생성
1 parent 7a683d6 commit c89a35b

2 files changed

Lines changed: 12 additions & 0 deletions

File tree

app/src/main/AndroidManifest.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
xmlns:tools="http://schemas.android.com/tools">
44

55
<application
6+
android:name=".BitnagilApplication"
67
android:allowBackup="true"
78
android:dataExtractionRules="@xml/data_extraction_rules"
89
android:fullBackupContent="@xml/backup_rules"
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
package com.threegap.bitnagil
2+
3+
import android.app.Application
4+
import dagger.hilt.android.HiltAndroidApp
5+
6+
@HiltAndroidApp
7+
class BitnagilApplication : Application() {
8+
override fun onCreate() {
9+
super.onCreate()
10+
}
11+
}

0 commit comments

Comments
 (0)