Skip to content

Commit

Permalink
[Chore/#51] Manifest 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
ss99x2002 committed Jul 11, 2023
1 parent 4503259 commit 7d88386
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
6 changes: 6 additions & 0 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,12 @@
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<service android:name=".util.fcm.MyFirebaseMessagingService"
android:exported="false">
<intent-filter>
<action android:name="com.google.firebase.MESSAGING_EVENT"/>
</intent-filter>
</service>
<activity
android:name=".presentation.invite.InviteCodeActivity"
android:exported="false"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ class MyFirebaseMessagingService : FirebaseMessagingService() {

override fun onNewToken(token: String) {
super.onNewToken(token)
Log.e("hyeon","fcm token : $token")
}

override fun onMessageReceived(message: RemoteMessage) {
Expand Down

0 comments on commit 7d88386

Please sign in to comment.