Skip to content

Commit

Permalink
[Feat/#443] Notification deep link를 통해 띄워질 activity에 launchMode 지정
Browse files Browse the repository at this point in the history
  • Loading branch information
yxnsx committed Nov 26, 2023
1 parent 22a91aa commit c0923af
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -87,19 +87,23 @@
<activity
android:name=".feature.attendance.AttendanceActivity"
android:exported="false"
android:theme="@style/Theme.SOPT" />
android:theme="@style/Theme.SOPT"
android:launchMode="singleTask" />
<activity
android:name=".stamp.SoptampActivity"
android:exported="false"
android:theme="@style/Theme.SOPT" />
android:theme="@style/Theme.SOPT"
android:launchMode="singleTask" />
<activity
android:name=".feature.home.HomeActivity"
android:exported="false"
android:theme="@style/Theme.SOPT" />
android:theme="@style/Theme.SOPT"
android:launchMode="singleTask" />
<activity
android:name=".feature.mypage.mypage.MyPageActivity"
android:exported="false"
android:theme="@style/Theme.SOPT" />
android:theme="@style/Theme.SOPT"
android:launchMode="singleTask" />
<activity
android:name=".feature.mypage.signOut.SignOutActivity"
android:exported="false"
Expand Down Expand Up @@ -129,10 +133,12 @@
</activity>
<activity
android:name=".feature.notification.NotificationHistoryActivity"
android:exported="false" />
android:exported="false"
android:launchMode="singleTask" />
<activity
android:name=".feature.notification.NotificationDetailActivity"
android:exported="false" />
android:exported="false"
android:launchMode="singleTask" />

<activity
android:name=".feature.notification.SchemeActivity"
Expand Down

0 comments on commit c0923af

Please sign in to comment.