Skip to content

Commit

Permalink
Merge pull request #257 from PermanentOrg/feature/add-uri-scheme
Browse files Browse the repository at this point in the history
Add uri scheme to open app from the permanent site
  • Loading branch information
flaviuvsp authored Mar 5, 2024
2 parents 2cb803a + b2a0b6a commit 679c894
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,16 @@
<activity
android:name=".ui.login.LoginActivity"
android:configChanges="orientation|keyboardHidden"
android:exported="false"
android:exported="true"
android:launchMode="singleTask"
android:screenOrientation="portrait" />
android:screenOrientation="portrait">
<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="permanent" android:host="open.my.app" />
</intent-filter>
</activity>
<activity
android:name=".ui.onboarding.OnboardingActivity"
android:configChanges="orientation|keyboardHidden"
Expand Down

0 comments on commit 679c894

Please sign in to comment.