Skip to content

Commit

Permalink
[feature/customtab-issue-fix] Custom Tab issue fix (#343)
Browse files Browse the repository at this point in the history
* Add property for AuthCodeHandlerActivity

* delete unused code

* lint apply
  • Loading branch information
l2hyunwoo authored Sep 16, 2023
1 parent bf55f2b commit fd9c092
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
xmlns:tools="http://schemas.android.com/tools">

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission
android:name="android.permission.QUERY_ALL_PACKAGES"
tools:ignore="QueryAllPackagesPermission" />

<application
android:name=".App"
Expand Down Expand Up @@ -84,7 +87,20 @@
android:theme="@style/Theme.SOPT" />
<activity
android:name=".auth.AuthCodeHandlerActivity"
android:exported="true" />
android:exported="true"
android:launchMode="singleTask">
<intent-filter>
<action android:name="android.intent.action.VIEW" />

<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />

<data android:scheme="app" />
<data android:host="org.sopt.makers.android" />
<data android:pathPattern="/oauth2redirect" />
</intent-filter>
</activity>

<service
android:name=".config.messaging.SoptFirebaseMessagingService"
android:exported="false">
Expand Down

0 comments on commit fd9c092

Please sign in to comment.